Git
Threads by month
- ----- 2026 -----
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- 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
- 9 participants
- 39111 discussions
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_2RC1-2955-gc6493e3
by Michal Čihař 03 Jun '11
by Michal Čihař 03 Jun '11
03 Jun '11
The branch, master has been updated
via c6493e39d36885d419d9cb8b930ccc8aedbf548d (commit)
via 8f54092c2d69420ab2ea543ea930777a69785bdd (commit)
from 0841fce11adc5e4029eea41c256f403a7bd56f98 (commit)
- Log -----------------------------------------------------------------
commit c6493e39d36885d419d9cb8b930ccc8aedbf548d
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Jun 3 15:42:18 2011 +0200
Remove not used code
commit 8f54092c2d69420ab2ea543ea930777a69785bdd
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Jun 3 15:41:59 2011 +0200
Remove forgotten references to $charset
-----------------------------------------------------------------------
Summary of changes:
export.php | 4 ++--
import.php | 2 +-
libraries/display_export.lib.php | 2 +-
libraries/display_import.lib.php | 2 +-
libraries/header_printview.inc.php | 2 +-
pmd_general.php | 2 +-
pmd_help.php | 6 +-----
7 files changed, 8 insertions(+), 12 deletions(-)
diff --git a/export.php b/export.php
index 1a60151..9471ba0 100644
--- a/export.php
+++ b/export.php
@@ -218,7 +218,7 @@ $output_kanji_conversion = function_exists('PMA_kanji_str_conv') && $type != 'xl
// Do we need to convert charset?
$output_charset_conversion = $asfile && $GLOBALS['PMA_recoding_engine'] != PMA_CHARSET_NONE
- && isset($charset_of_file) && $charset_of_file != $charset
+ && isset($charset_of_file) && $charset_of_file != 'utf-8'
&& $type != 'xls';
// Use on the fly compression?
@@ -273,7 +273,7 @@ if ($asfile) {
$filename = PMA_expandUserString($filename_template);
// convert filename to iso-8859-1, it is safer
- $filename = PMA_convert_string($charset, 'iso-8859-1', $filename);
+ $filename = PMA_convert_string('utf-8', 'iso-8859-1', $filename);
// Grab basic dump extension and mime type
// Check if the user already added extension; get the substring where the extension would be if it was included
diff --git a/import.php b/import.php
index 0b029e5..8837af2 100644
--- a/import.php
+++ b/import.php
@@ -343,7 +343,7 @@ if ($import_file != 'none' && !$error) {
// Convert the file's charset if necessary
if ($GLOBALS['PMA_recoding_engine'] != PMA_CHARSET_NONE && isset($charset_of_file)) {
- if ($charset_of_file != $charset) {
+ if ($charset_of_file != 'utf-8') {
$charset_conversion = TRUE;
}
} elseif (isset($charset_of_file) && $charset_of_file != 'utf8') {
diff --git a/libraries/display_export.lib.php b/libraries/display_export.lib.php
index 2460042..9f10d77 100644
--- a/libraries/display_export.lib.php
+++ b/libraries/display_export.lib.php
@@ -285,7 +285,7 @@ if(isset($_GET['sql_query'])) {
echo '<option value="' . $temp_charset . '"';
if(isset($_GET['charset_of_file']) && ($_GET['charset_of_file'] != $temp_charset)) {
echo '';
- } elseif ((empty($cfg['Export']['charset']) && $temp_charset == $charset)
+ } elseif ((empty($cfg['Export']['charset']) && $temp_charset == 'utf-8')
|| $temp_charset == $cfg['Export']['charset']) {
echo ' selected="selected"';
}
diff --git a/libraries/display_import.lib.php b/libraries/display_import.lib.php
index 3a9c2ea..756de10 100644
--- a/libraries/display_import.lib.php
+++ b/libraries/display_import.lib.php
@@ -190,7 +190,7 @@ if ($_SESSION[$SESSION_KEY]["handler"]!="noplugin") {
echo '<select id="charset_of_file" name="charset_of_file" size="1">';
foreach ($cfg['AvailableCharsets'] as $temp_charset) {
echo '<option value="' . htmlentities($temp_charset) . '"';
- if ((empty($cfg['Import']['charset']) && $temp_charset == $charset)
+ if ((empty($cfg['Import']['charset']) && $temp_charset == 'utf-8')
|| $temp_charset == $cfg['Import']['charset']) {
echo ' selected="selected"';
}
diff --git a/libraries/header_printview.inc.php b/libraries/header_printview.inc.php
index 4a30f2b..a96fb74 100644
--- a/libraries/header_printview.inc.php
+++ b/libraries/header_printview.inc.php
@@ -43,7 +43,7 @@ if ($text_dir == 'ltr') {
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $available_languages[$lang][1]; ?>" lang="<?php echo $available_languages[$lang][1]; ?>" dir="<?php echo $text_dir; ?>">
<head>
-<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset; ?>" />
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<title><?php echo __('SQL result'); ?> - phpMyAdmin <?php echo PMA_VERSION ?></title>
diff --git a/pmd_general.php b/pmd_general.php
index 6da6b2e..1307571 100644
--- a/pmd_general.php
+++ b/pmd_general.php
@@ -22,7 +22,7 @@ $hidden = "hidden";
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][1]; ?>" lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][1]; ?>" dir="<?php echo $GLOBALS['text_dir']; ?>">
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset ?>" />
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" href="pmd/images/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="pmd/images/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="pmd/styles/<?php echo $GLOBALS['PMD']['STYLE'] ?>/style1.css" />
diff --git a/pmd_help.php b/pmd_help.php
index 2f5e006..f653b14 100644
--- a/pmd_help.php
+++ b/pmd_help.php
@@ -12,11 +12,7 @@ require_once 'pmd_common.php';
?>
<html>
<head>
-<?php if(0){ ?>
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
-<link rel="stylesheet" type="text/css" href="./libraries/pmd/styles/default/style1.css">
-<?php } ?>
-<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset ?>" />
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./libraries/pmd/styles/<?php echo $GLOBALS['PMD']['STYLE'] ?>/style1.css">
<title>Designer</title>
</head>
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_2RC1-2953-g0841fce
by Michal Čihař 03 Jun '11
by Michal Čihař 03 Jun '11
03 Jun '11
The branch, master has been updated
via 0841fce11adc5e4029eea41c256f403a7bd56f98 (commit)
from 3a87a1b4476fd04124b5d4bcc47408b9e6f6a394 (commit)
- Log -----------------------------------------------------------------
commit 0841fce11adc5e4029eea41c256f403a7bd56f98
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Jun 3 15:38:02 2011 +0200
Another use of $charset
-----------------------------------------------------------------------
Summary of changes:
main.php | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/main.php b/main.php
index c4c2b2a..c508bd0 100644
--- a/main.php
+++ b/main.php
@@ -168,8 +168,8 @@ if ($server > 0 && $GLOBALS['cfg']['ShowServerInfo']) {
echo ' <li id="li_select_mysql_charset">';
echo ' ' . __('MySQL charset') . ': '
. ' <span xml:lang="en" dir="ltr">'
- . ' ' . $mysql_charsets_descriptions[$mysql_charset_map[strtolower($charset)]] . "\n"
- . ' (' . $mysql_charset_map[strtolower($charset)] . ')' . "\n"
+ . ' ' . $mysql_charsets_descriptions[$mysql_charset_map['utf-8']] . "\n"
+ . ' (' . $mysql_charset_map['utf-8'] . ')' . "\n"
. ' </span>' . "\n"
. ' </li>' . "\n";
echo ' </ul>';
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_2RC1-4-g15ef125
by Michal Čihař 03 Jun '11
by Michal Čihař 03 Jun '11
03 Jun '11
The branch, QA_3_4 has been updated
via 15ef12542eaf64f63d25846c522477c695c7647f (commit)
via b8c45c434a6fecef3c5f065df8e649d86c546123 (commit)
from 3f214f9e7d0177f15d97fb6cf8f6ddeeef69e901 (commit)
- Log -----------------------------------------------------------------
commit 15ef12542eaf64f63d25846c522477c695c7647f
Merge: 3f214f9e7d0177f15d97fb6cf8f6ddeeef69e901 b8c45c434a6fecef3c5f065df8e649d86c546123
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Jun 3 15:14:31 2011 +0200
Merge branch 'MAINT_3_4_2' into QA_3_4
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 2 +-
po/ar.po | 2 +-
po/az.po | 2 +-
po/be.po | 2 +-
po/be(a)latin.po | 2 +-
po/bg.po | 2 +-
po/bn.po | 2 +-
po/bs.po | 2 +-
po/ca.po | 2 +-
po/cs.po | 2 +-
po/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 | 2 +-
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 | 13 +++++++++----
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 | 4 ++--
63 files changed, 72 insertions(+), 67 deletions(-)
diff --git a/po/af.po b/po/af.po
index 09ae816..e28bb58 100644
--- a/po/af.po
+++ b/po/af.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
diff --git a/po/ar.po b/po/ar.po
index b68dfd6..e9bd465 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-21 13:56+0200\n"
diff --git a/po/az.po b/po/az.po
index 4e27c17..a0aa29e 100644
--- a/po/az.po
+++ b/po/az.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
diff --git a/po/be.po b/po/be.po
index f4643bb..827547e 100644
--- a/po/be.po
+++ b/po/be.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 90b0b6c..71269b4 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
diff --git a/po/bg.po b/po/bg.po
index 3a4a626..5506756 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-22 12:51+0200\n"
diff --git a/po/bn.po b/po/bn.po
index 61a29d1..6851ce7 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
diff --git a/po/bs.po b/po/bs.po
index a57e04b..d0b2bf2 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
diff --git a/po/ca.po b/po/ca.po
index 81e1ccc..f9a08e7 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
diff --git a/po/cs.po b/po/cs.po
index 667f2c4..e3dd226 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -4,7 +4,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
diff --git a/po/cy.po b/po/cy.po
index feabb4f..c68480b 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -4,7 +4,7 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-06-07 20:23+0200\n"
diff --git a/po/da.po b/po/da.po
index 5f805fa..6e44fde 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-07 01:17+0200\n"
diff --git a/po/de.po b/po/de.po
index 5064229..9b505d2 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-23 04:28+0200\n"
diff --git a/po/el.po b/po/el.po
index d55d96d..3610fcc 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-05 11:15+0200\n"
diff --git a/po/en_GB.po b/po/en_GB.po
index e28622c..a5d899e 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-02-10 16:24+0200\n"
diff --git a/po/es.po b/po/es.po
index a18f7bd..914754c 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-02 11:10+0200\n"
diff --git a/po/et.po b/po/et.po
index adac59e..14c8e96 100644
--- a/po/et.po
+++ b/po/et.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
diff --git a/po/eu.po b/po/eu.po
index 3a61fc6..33546e3 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
diff --git a/po/fa.po b/po/fa.po
index fd8ba5c..7ddf128 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
diff --git a/po/fi.po b/po/fi.po
index 9fcc488..a52bb00 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
diff --git a/po/fr.po b/po/fr.po
index 653f984..4825272 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-02-10 19:23+0200\n"
diff --git a/po/gl.po b/po/gl.po
index 6b104b4..dcc97ab 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
diff --git a/po/he.po b/po/he.po
index f842cef..b7f8de9 100644
--- a/po/he.po
+++ b/po/he.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-02 20:17+0200\n"
diff --git a/po/hi.po b/po/hi.po
index 7ca8a1a..6e86b9a 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-24 00:23+0200\n"
diff --git a/po/hr.po b/po/hr.po
index 2b0575a..ba20f43 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
diff --git a/po/hu.po b/po/hu.po
index 78ed360..b55a68a 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-05-05 12:49+0200\n"
diff --git a/po/id.po b/po/id.po
index 32c8a74..ed58c6f 100644
--- a/po/id.po
+++ b/po/id.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-16 22:04+0200\n"
diff --git a/po/it.po b/po/it.po
index 96d7317..2af36a1 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-05 14:27+0200\n"
diff --git a/po/ja.po b/po/ja.po
index 773ea18..11ac138 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-05-05 11:38+0200\n"
diff --git a/po/ka.po b/po/ka.po
index 5dd025e..a7a99dd 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
diff --git a/po/ko.po b/po/ko.po
index eb3a115..a430a0a 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-06-16 18:18+0200\n"
diff --git a/po/lt.po b/po/lt.po
index 367b741..1771e49 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-05 15:52+0200\n"
diff --git a/po/lv.po b/po/lv.po
index 4c8fa6d..2c0b05a 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
diff --git a/po/mk.po b/po/mk.po
index 94ae16c..388d6ca 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
diff --git a/po/ml.po b/po/ml.po
index 720b194..8193aeb 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -3,7 +3,7 @@
# This file is distributed under the same license as the phpMyAdmin package.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
diff --git a/po/mn.po b/po/mn.po
index f764803..b7a3776 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
diff --git a/po/ms.po b/po/ms.po
index 4855d8d..35218d8 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
diff --git a/po/nb.po b/po/nb.po
index d6ac9be..0ad295e 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-07 11:21+0200\n"
diff --git a/po/nl.po b/po/nl.po
index 5f608f0..ed47655 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-16 20:18+0200\n"
diff --git a/po/pl.po b/po/pl.po
index 20f5289..ac39790 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-02-24 16:21+0200\n"
diff --git a/po/pt.po b/po/pt.po
index f85e312..15949fc 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-26 03:23+0200\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index ef38447..6635ca2 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-14 17:44+0200\n"
diff --git a/po/ro.po b/po/ro.po
index 1f6b9b8..dce5a04 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-07-22 02:28+0200\n"
diff --git a/po/ru.po b/po/ru.po
index 2a52927..94b8017 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-13 21:17+0200\n"
diff --git a/po/si.po b/po/si.po
index 3987dbd..39305aa 100644
--- a/po/si.po
+++ b/po/si.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-05-04 14:56+0200\n"
diff --git a/po/sk.po b/po/sk.po
index acd929c..9658b97 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-07-22 02:26+0200\n"
@@ -7117,6 +7117,8 @@ msgid ""
"Your preferences will be saved for current session only. Storing them "
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
+"Vaše nastavenia budú uložené len počas tohto prihlásenia. Pre trvalé "
+"nastavenie potrebujete nastaviť %smiesto uloženia phpMyAdmin konfigurácie%s."
#: libraries/user_preferences.lib.php:142
#, fuzzy
@@ -7577,11 +7579,11 @@ msgstr "Importovať súbory"
#: prefs_manage.php:245
msgid "Import from browser's storage"
-msgstr ""
+msgstr "Načítať z pamäte prehliadača"
#: prefs_manage.php:248
msgid "Settings will be imported from your browser's local storage."
-msgstr ""
+msgstr "Nastavenia budú načítané z lokálneho úložišťa vášho prehliadača."
#: prefs_manage.php:254
msgid "You have no saved settings!"
@@ -7602,10 +7604,12 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
+"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím "
+"%sNastavovacieho skriptu%s."
#: prefs_manage.php:302
msgid "Save to browser's storage"
-msgstr ""
+msgstr "Uložiť do úložiska prehliadača"
#: prefs_manage.php:306
msgid "Settings will be saved in your browser's local storage."
@@ -7618,6 +7622,7 @@ msgstr "Súčasné nastavenia budú prepísané!"
#: prefs_manage.php:323
msgid "You can reset all your settings and restore them to default values."
msgstr ""
+"Môžete vymazať všetky vaše nastavenia a vrátiť sa k východziím hodnotám."
#: querywindow.php:93
msgid "Import files"
diff --git a/po/sl.po b/po/sl.po
index 0b21869..fec32cf 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-24 22:38+0200\n"
diff --git a/po/sq.po b/po/sq.po
index 6ae5a04..0b3c6dd 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
diff --git a/po/sr.po b/po/sr.po
index a28ddee..e4683dd 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-06 18:43+0200\n"
diff --git a/po/sr(a)latin.po b/po/sr(a)latin.po
index 0de0bc9..db8630f 100644
--- a/po/sr(a)latin.po
+++ b/po/sr(a)latin.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
diff --git a/po/sv.po b/po/sv.po
index 898de4b..ca9e8a6 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-02-16 21:42+0200\n"
diff --git a/po/ta.po b/po/ta.po
index 51533ed..e93f1de 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -4,7 +4,7 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
diff --git a/po/te.po b/po/te.po
index 609a869..3f9cc3f 100644
--- a/po/te.po
+++ b/po/te.po
@@ -4,7 +4,7 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-07 17:06+0200\n"
diff --git a/po/th.po b/po/th.po
index c1a9124..b5e2065 100644
--- a/po/th.po
+++ b/po/th.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Ver e2065 100644 o 06+0200\n"