The branch, master has been updated via bba71641bd3e2a1d9788fa98c753bd71174934cf (commit) via ea56f74a45205c42b15be020d97640672cf2ba68 (commit) from 1801f84394f4a7a8add336632389db315fab85c4 (commit)
- Log ----------------------------------------------------------------- commit bba71641bd3e2a1d9788fa98c753bd71174934cf Author: Michal Čihař mcihar@novell.com Date: Wed May 5 11:20:26 2010 +0200
Regenerate po files again.
commit ea56f74a45205c42b15be020d97640672cf2ba68 Author: Michal Čihař mcihar@novell.com Date: Wed May 5 11:19:51 2010 +0200
Fix ' escaping.
-----------------------------------------------------------------------
Summary of changes: libraries/dbi/mysql.dbi.lib.php | 10 +++++----- po/af.po | 15 ++++++--------- po/ar.po | 24 ++++++++++++------------ po/az.po | 22 +++++++++++----------- po/be.po | 22 +++++++++++----------- po/be@latin.po | 24 ++++++++++++------------ po/bg.po | 22 +++++++++++----------- po/bn.po | 22 +++++++++++----------- po/bs.po | 22 +++++++++++----------- po/ca.po | 24 ++++++++++++------------ po/cs.po | 24 ++++++++++++------------ po/da.po | 24 ++++++++++++------------ po/de.po | 28 ++++++++++++++-------------- po/el.po | 24 ++++++++++++------------ po/en_GB.po | 24 ++++++++++++------------ po/es.po | 26 +++++++++++++------------- po/et.po | 22 +++++++++++----------- po/eu.po | 22 +++++++++++----------- po/fa.po | 15 ++++++--------- po/fi.po | 28 ++++++++++++++-------------- po/fr.po | 28 ++++++++++++++-------------- po/gl.po | 26 +++++++++++++------------- po/he.po | 22 +++++++++++----------- po/hi.po | 15 ++++++--------- po/hr.po | 24 ++++++++++++------------ po/hu.po | 28 ++++++++++++++-------------- po/id.po | 22 +++++++++++----------- po/it.po | 22 +++++++++++----------- po/ja.po | 24 ++++++++++++------------ po/ka.po | 24 ++++++++++++------------ po/ko.po | 22 +++++++++++----------- po/lt.po | 24 ++++++++++++------------ po/lv.po | 22 +++++++++++----------- po/mk.po | 22 +++++++++++----------- po/mn.po | 24 ++++++++++++------------ po/ms.po | 22 +++++++++++----------- po/nb.po | 20 ++++++++++---------- po/nl.po | 24 ++++++++++++------------ po/phpmyadmin.pot | 15 ++++++--------- po/pl.po | 26 +++++++++++++------------- po/pt.po | 22 +++++++++++----------- po/pt_BR.po | 24 ++++++++++++------------ po/ro.po | 22 +++++++++++----------- po/ru.po | 24 ++++++++++++------------ po/si.po | 22 +++++++++++----------- po/sk.po | 22 +++++++++++----------- po/sl.po | 24 ++++++++++++------------ po/sq.po | 22 +++++++++++----------- po/sr.po | 22 +++++++++++----------- po/sr@latin.po | 22 +++++++++++----------- po/sv.po | 24 ++++++++++++------------ po/ta.po | 15 ++++++--------- po/te.po | 15 ++++++--------- po/th.po | 22 +++++++++++----------- po/tr.po | 24 ++++++++++++------------ po/tt.po | 22 +++++++++++----------- po/uk.po | 24 ++++++++++++------------ po/ur.po | 15 ++++++--------- po/uz.po | 24 ++++++++++++------------ po/uz@latin.po | 24 ++++++++++++------------ po/zh_CN.po | 24 ++++++++++++------------ po/zh_TW.po | 22 +++++++++++----------- 62 files changed, 680 insertions(+), 701 deletions(-)
diff --git a/libraries/dbi/mysql.dbi.lib.php b/libraries/dbi/mysql.dbi.lib.php index b7af7f9..360f1db 100644 --- a/libraries/dbi/mysql.dbi.lib.php +++ b/libraries/dbi/mysql.dbi.lib.php @@ -52,7 +52,7 @@ function PMA_DBI_real_connect($server, $user, $password, $client_flags, $persist function PMA_DBI_connect($user, $password, $is_controluser = false, $server = null, $auxiliary_connection = false) { global $cfg, $php_errormsg; - + if ($server) { $server_port = (empty($server['port'])) ? '' @@ -92,7 +92,7 @@ function PMA_DBI_connect($user, $password, $is_controluser = false, $server = nu if (defined('MYSQL_CLIENT_SSL') && $cfg['Server']['ssl']) { $client_flags |= MYSQL_CLIENT_SSL; } - + if (!$server) { $link = PMA_DBI_real_connect($cfg['Server']['host'] . $server_port . $server_socket, $user, $password, empty($client_flags) ? NULL : $client_flags);
@@ -102,7 +102,7 @@ function PMA_DBI_connect($user, $password, $is_controluser = false, $server = nu } } else { if (!isset($server['host'])) { - $link = PMA_DBI_real_connect($server_socket, $user, $password, NULL, $server_persistant); + $link = PMA_DBI_real_connect($server_socket, $user, $password, NULL, $server_persistant); } else { $link = PMA_DBI_real_connect($server['host'] . $server_port . $server_socket, $user, $password, NULL, $server_persistant); } @@ -206,7 +206,7 @@ function PMA_DBI_try_query($query, $link = null, $options = 0) $_SESSION['debug']['queries'][$hash]['trace'][] = $trace; } if ($r != FALSE && PMA_Tracker::isActive() == TRUE ) { - PMA_Tracker::handleQuery($query); + PMA_Tracker::handleQuery($query); }
return $r; @@ -350,7 +350,7 @@ function PMA_DBI_getError($link = null)
// Some errors messages cannot be obtained by mysql_error() if ($error_number == 2002) { - $error = '#' . ((string) $error_number) . ' - ' . __('The server is not responding') . ' ' . __('(or the local MySQL server's socket is not correctly configured)'); + $error = '#' . ((string) $error_number) . ' - ' . __('The server is not responding') . ' ' . __('(or the local MySQL server's socket is not correctly configured)'); } elseif ($error_number == 2003) { $error = '#' . ((string) $error_number) . ' - ' . __('The server is not responding'); } elseif ($error_number == 1005) { diff --git a/po/af.po b/po/af.po index df21b63..cfbe7ba 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: afrikaans af@li.org\n" @@ -1391,13 +1391,14 @@ msgstr "Naam" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 -msgid "(or the local MySQL server" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 @@ -1405,10 +1406,6 @@ msgstr "" msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." diff --git a/po/ar.po b/po/ar.po index 02d8b1a..fca1ebb 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: arabic ar@li.org\n" @@ -1390,26 +1390,21 @@ msgstr "الاسم" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Cannot log in to the MySQL server" -msgid "(or the local MySQL server" -msgstr "لا يمكن الدخول إلى خادم MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8161,6 +8156,11 @@ msgid "Description" msgstr "الوصف"
#, fuzzy +#~| msgid "Cannot log in to the MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "لا يمكن الدخول إلى خادم MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/az.po b/po/az.po index 6502eb9..03004c9 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani az@li.org\n" @@ -1402,25 +1402,21 @@ msgstr "Adı" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "MySQL server-e gire bilmirem" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8292,6 +8288,10 @@ msgid "Description" msgstr "Haqqında"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "MySQL server-e gire bilmirem" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/be.po b/po/be.po index 3c112a8..4278ad3 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic be@li.org\n" @@ -1422,25 +1422,21 @@ msgstr "" "Не атрымалася ўсталяваць злучэньне для controluser, вызначанае ў вашым " "канфігурацыйным файле."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Сэрвэр не адказвае"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Немагчыма залагавацца на сэрвэр MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Падрабязьней..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8587,6 +8583,10 @@ msgid "Description" msgstr "Апісаньне"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Немагчыма залагавацца на сэрвэр MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/be@latin.po b/po/be@latin.po index e50e2df..b357205 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: belarusian_latin <be@latin@li.org>\n" @@ -1416,26 +1416,21 @@ msgstr "" "Nie atrymałasia ŭstalavać złučeńnie dla controluser, vyznačanaje ŭ vašym " "kanfihuracyjnym fajle."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Server nie adkazvaje"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Cannot log in to the MySQL server" -msgid "(or the local MySQL server" -msgstr "Niemahčyma załahavacca na server MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Padrabiaźniej..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8502,6 +8497,11 @@ msgid "Description" msgstr "Apisańnie"
#, fuzzy +#~| msgid "Cannot log in to the MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Niemahčyma załahavacca na server MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/bg.po b/po/bg.po index 4d09403..c2c82ce 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bulgarian bg@li.org\n" @@ -1404,25 +1404,21 @@ msgstr "Име" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Няма отговор от сървъра"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Не мога да се логна към MySQL сървъра" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8335,6 +8331,10 @@ msgid "Description" msgstr "Описание"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Не мога да се логна към MySQL сървъра" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/bn.po b/po/bn.po index 1287fab..97df75a 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bangla bn@li.org\n" @@ -1412,25 +1412,21 @@ msgstr "নাম" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "The server is not responding"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "MySQL সার্ভার এ লগ ইন করা যায়নি" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(or the local MySQL server's socket is not correctly configured)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(or the local MySQL server's socket is not correctly configured)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8499,6 +8495,10 @@ msgid "Description" msgstr "বর্ণনা"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "MySQL সার্ভার এ লগ ইন করা যায়নি" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/bs.po b/po/bs.po index b601c54..87e0a6e 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian bs@li.org\n" @@ -1402,25 +1402,21 @@ msgstr "Ime" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Ne mogu da se prijavim na MySQL server" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8286,6 +8282,10 @@ msgid "Description" msgstr "Opis"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Ne mogu da se prijavim na MySQL server" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/ca.po b/po/ca.po index 6d01370..087009b 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: catalan ca@li.org\n" @@ -1410,26 +1410,21 @@ msgstr "" "La connexió de l'usuari de control ha fallat, tal com està definida ara a la " "configuració."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "El servidor no respon"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "No es pot connectar al servidor MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(o el sòcol del servidor local MySQL no està configurat correctament)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Detalls..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(o el sòcol del servidor local MySQL no està configurat correctament)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8757,6 +8752,11 @@ msgid "Description" msgstr "Descripció"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "No es pot connectar al servidor MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/cs.po b/po/cs.po index f6394dd..04f5b6d 100644 --- a/po/cs.po +++ b/po/cs.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-05-04 11:47+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: czech cs@li.org\n" @@ -1342,26 +1342,21 @@ msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Nepodařilo se připojit jako controluser, který je nadefinován v nastaveních."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Server neodpovídá"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "Nepodařilo se připojit k MySQL serveru" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(nebo není správně nastaven lokální socket MySQL serveru)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Podrobnosti..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(nebo není správně nastaven lokální socket MySQL serveru)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8571,6 +8566,11 @@ msgid "Description" msgstr "Popis"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Nepodařilo se připojit k MySQL serveru" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/da.po b/po/da.po index d3d55df..ab70ce6 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: danish da@li.org\n" @@ -1403,26 +1403,21 @@ msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Forbindelse for kontrolbruger som defineret i din konfiguration slog fejl."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Serveren svarer ikke"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Cannot log in to the MySQL server" -msgid "(or the local MySQL server" -msgstr "Kan ikke logge ind på MySQL-serveren" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(eller den lokale MySQL servers socket er ikke korrekt konfigureret)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(eller den lokale MySQL servers socket er ikke korrekt konfigureret)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8410,6 +8405,11 @@ msgid "Description" msgstr "Beskrivelse"
#, fuzzy +#~| msgid "Cannot log in to the MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Kan ikke logge ind på MySQL-serveren" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/de.po b/po/de.po index 3acd1f5..1ae0aaf 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-23 21:07+0200\n" "Last-Translator: me@michaelkeck.de\n" "Language-Team: german de@li.org\n" @@ -1425,28 +1425,23 @@ msgstr "" "Verbindung für den controluser, wie er in Ihrer Konfiguration angegeben ist, " "ist fehlgeschlagen."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Der Server antwortet nicht."
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "Verbindungsaufbau zu MySQL-Server schlug fehl" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "" +"(evtl. ist auch der Socket des lokalen MySQL-Servers socket nicht korrekt " +"konfiguriert)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Details ..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" -"(evtl. ist auch der Socket des lokalen MySQL-Servers socket nicht korrekt " -"konfiguriert)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8705,6 +8700,11 @@ msgid "Description" msgstr "Beschreibung"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Verbindungsaufbau zu MySQL-Server schlug fehl" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/el.po b/po/el.po index 097312c..b359909 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010 -05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-30 23:16+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: greek el@li.org\n" @@ -1418,26 +1418,21 @@ msgstr "Όνομα" msgid "Connection for controluser as defined in your configuration failed." msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Ο διακομιστής δεν αποκρίνεται"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "Αδύνατη η σύνδεση στο διακομιστή MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(ή η τοπική υποδοχή του διακομιστή MySQL δεν έχει ρυθμιστεί σωστά)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Λεπτομέρειες..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(ή η τοπική υποδοχή του διακομιστή MySQL δεν έχει ρυθμιστεί σωστά)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8847,6 +8842,11 @@ msgid "Description" msgstr "Περιγραφή"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Αδύνατη η σύνδεση στο διακομιστή MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/en_GB.po b/po/en_GB.po index 7e09896..0a82d7b 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-05-04 11:46+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: english-gb en_GB@li.org\n" @@ -1340,26 +1340,21 @@ msgstr "Name" msgid "Connection for controluser as defined in your configuration failed." msgstr "Connection for controluser as defined in your configuration failed."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "The server is not responding"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "Could not connect to MySQL server" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(or the local MySQL server's socket is not correctly configured)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Details..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(or the local MySQL server's socket is not correctly configured)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8568,6 +8563,11 @@ msgid "Description" msgstr "Description"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Could not connect to MySQL server" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/es.po b/po/es.po index 02fd4f1..7bf8b1c 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 11:23+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: spanish es@li.org\n" @@ -1423,27 +1423,22 @@ msgstr "" "La conexión para controluser, como está definida en su configuración, " "fracasó."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "El servidor no está respondiendo"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "No pudo conectarse con un servidor MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "" +"(o el socket del servidor MySQL local no está configurado correctamente)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Detalles..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" -"(o el socket del servidor MySQL local no está configurado correctamente)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8771,6 +8766,11 @@ msgid "Description" msgstr "Descripción"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "No pudo conectarse con un servidor MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/et.po b/po/et.po index 0711d04..c33ff98 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian et@li.org\n" @@ -1410,25 +1410,21 @@ msgstr "Nimi" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Server ei vasta"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Ei suuda MySQL serverisse logida" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(või kohaliku MySQL serveri soketid ei ole korrektselt seadistatud)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(või kohaliku MySQL serveri soketid ei ole korrektselt seadistatud)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8478,6 +8474,10 @@ msgid "Description" msgstr "Kirjeldus"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Ei suuda MySQL serverisse logida" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/eu.po b/po/eu.po index c1dd2da..b9d1bef 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-31 10:40+0200\n" "Last-Translator: hey_neken@mundurat.net\n" "Language-Team: basque eu@li.org\n" @@ -1406,25 +1406,21 @@ msgstr "Izena" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Ezinezkoa MySql zerbitzarian saioa hastea" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8315,6 +8311,10 @@ msgid "Description" msgstr "Deskribapena"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Ezinezkoa MySql zerbitzarian saioa hastea" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/fa.po b/po/fa.po index 8c9d730..afff924 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: persian fa@li.org\n" @@ -1392,13 +1392,14 @@ msgstr "اسم" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 -msgid "(or the local MySQL server" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 @@ -1406,10 +1407,6 @@ msgstr "" msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." diff --git a/po/fi.po b/po/fi.po index 6c64dfd..69058fb 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-04-30 18:08+0200\n" "Last-Translator: kajouni@gmail.com\n" "Language-Team: finnish fi@li.org\n" @@ -1409,28 +1409,23 @@ msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Yhteyden muodostus asetuksissa määriteltyyn superuser-käyttäjään epäonnistui."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Palvelin ei vastaa"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "MySQL-palvelimeen ei voitu yhdistää" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "" +"(tai paikallisen MySQL-palvelimen pistokkeen asetuksia ei ole määritelty " +"oikein)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Lisätiedot..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" -"(tai paikallisen MySQL-palvelimen pistokkeen asetuksia ei ole määritelty " -"oikein)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8734,6 +8729,11 @@ msgid "Description" msgstr "Kuvaus"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "MySQL-palvelimeen ei voitu yhdistää" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/fr.po b/po/fr.po index 06b8ed7..bb746c2 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-05-04 16:34+0200\n" "Last-Translator: Marc marc@infomarc.info\n" "Language-Team: french fr@li.org\n" @@ -1350,28 +1350,23 @@ msgstr "" "La connexion au "controluser" tel que défini dans votre configuration a " "échoué."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Le serveur ne répond pas."
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "Connexion au serveur MySQL impossible." +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "" +"(ou l'interface de connexion ("socket") vers le serveur MySQL local n'est " +"pas correctement configurée)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Détails..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" -"(ou l'interface de connexion ("socket") vers le serveur MySQL local n'est " -"pas correctement configurée)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8680,6 +8675,11 @@ msgid "Description" msgstr "Description"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Connexion au serveur MySQL impossible." + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/gl.po b/po/gl.po index 45a302d..1541057 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: galician gl@li.org\n" @@ -1413,27 +1413,22 @@ msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Fallou a conexión para controluser tal e como se define na súa configuración."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "O servidor non está a responder"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "Non se puido conectar co servidor de MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "" +"(ou o socket local do servidor de MySQL non se configurou correctamente)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Detalles..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" -"(ou o socket local do servidor de MySQL non se configurou correctamente)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8789,6 +8784,11 @@ msgid "Description" msgstr "Descrición"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Non se puido conectar co servidor de MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/he.po b/po/he.po index 7552ac4..0ea4a60 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hebrew he@li.org\n" @@ -1393,25 +1393,21 @@ msgstr "שם" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "השרת אינו מגיב"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "נכשל בכניסה לשרת MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8222,6 +8218,10 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "תיאור"
+#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "נכשל בכניסה לשרת MySQL" + #~ msgctxt "$strStrucCSV" #~ msgid "CSV" #~ msgstr "CSV" diff --git a/po/hi.po b/po/hi.po index 0a6ed22..6cbce9c 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-05-05 04:47+0200\n" "Last-Translator: u4663530@anu.edu.au\n" "Language-Team: hindi hi@li.org\n" @@ -1372,13 +1372,14 @@ msgstr "नाम" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 -msgid "(or the local MySQL server" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 @@ -1386,10 +1387,6 @@ msgstr "" msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." diff --git a/po/hr.po b/po/hr.po index c51298b..475b7f6 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: croatian hr@li.org\n" @@ -1420,26 +1420,22 @@ msgstr "" "Povezivanje kontrolnih korisnika na način kako je definirano u vašoj " "konfiguraciji nije uspjelo."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Poslužitelj ne odgovara"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Prijavljivanje na MySQL poslužitelj nije moguće" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "" +"(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Detalji..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" -"(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8560,6 +8556,10 @@ msgid "Description" msgstr "Opis"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Prijavljivanje na MySQL poslužitelj nije moguće" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/hu.po b/po/hu.po index b871b83..72603d3 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hungarian hu@li.org\n" @@ -1418,28 +1418,23 @@ msgstr "" "A konfigurációban meghatározott kapcsolat a kontrollfelhasználó számára nem " "sikerült."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "A szerver nem válaszol"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "" +"(vagy nem megfelelően állították be a helyi MySQL szerver " +"szoftvercsatornáját)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Részletek..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" -"(vagy nem megfelelően állították be a helyi MySQL szerver " -"szoftvercsatornáját)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8772,6 +8767,11 @@ msgid "Description" msgstr "Leírás"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/id.po b/po/id.po index c331844..26c654d 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-04-17 21:14+0200\n" "Last-Translator: Azhari Harahap azhari.harahap@yahoo.com\n" "Language-Team: indonesian id@li.org\n" @@ -1402,25 +1402,21 @@ msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Server tidak menjawab"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Gagal login ke MySQL server" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(atau konfigurasi socket dari server MySQL tidak benar)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Rincian..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(atau konfigurasi socket dari server MySQL tidak benar)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8347,6 +8343,10 @@ msgid "Description" msgstr "Deskripsi"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Gagal login ke MySQL server" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/it.po b/po/it.po index 925cf37..430d575 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-04-11 11:19+0200\n" "Last-Translator: Fabio fantonifabio@tiscali.it\n" "Language-Team: italian it@li.org\n" @@ -1419,25 +1419,21 @@ msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Connessione per controluser come definito nella configurazione fallita."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Il server non risponde"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Impossibile eseguire il login nel server MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(o il socket del server locale MySQL non è correttamente configurato)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Dettagli..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(o il socket del server locale MySQL non è correttamente configurato)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8600,6 +8596,10 @@ msgid "Description" msgstr "Descrizione"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Impossibile eseguire il login nel server MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/ja.po b/po/ja.po index 43ce0b9..0193681 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 11:22+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: japanese jp@li.org\n" @@ -1398,26 +1398,21 @@ msgid "Connection for controluser as defined in your configuration failed." msgstr "" "設定ファイルに定義されている管理ユーザ(controluser)での接続に失敗しました"
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "サーバが応答しません"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Cannot log in to the MySQL server" -msgid "(or the local MySQL server" -msgstr "MySQL サーバにログインできません" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(あるいはローカルの MySQL サーバのソケットが正しく設定されていません)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "詳細..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(あるいはローカルの MySQL サーバのソケットが正しく設定されていません)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8394,6 +8389,11 @@ msgid "Description" msgstr "説明"
#, fuzzy +#~| msgid "Cannot log in to the MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "MySQL サーバにログインできません" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/ka.po b/po/ka.po index d64e000..4138e61 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian ka@li.org\n" @@ -1413,26 +1413,21 @@ msgstr "სახელი" msgid "Connection for controluser as defined in your configuration failed." msgstr "Connection for controluser as defined in your configuration failed."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "სერვერი არ პასუხობს"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(or the local MySQL server's socket is not correctly configured)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "დეტალები..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(or the local MySQL server's socket is not correctly configured)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8662,6 +8657,11 @@ msgid "Description" msgstr "აღწერილობა"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/ko.po b/po/ko.po index c2b9c7d..e9efc72 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: korean ko@li.org\n" @@ -1397,25 +1397,21 @@ msgstr "이름" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "MySQL 서버에 로그인할 수 없습니다" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8214,6 +8210,10 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "설명이 없습니다"
+#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "MySQL 서버에 로그인할 수 없습니다" + #~ msgctxt "$strStrucCSV" #~ msgid "CSV" #~ msgstr "CSV 데이터" diff --git a/po/lt.po b/po/lt.po index 13e085d..9fc4abd 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-04-16 19:52+0200\n" "Last-Translator: Rytis rytis.s@gmail.com\n" "Language-Team: lithuanian lt@li.org\n" @@ -1406,26 +1406,21 @@ msgstr "Pavadinimas" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Serveris neatsako"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "Nepavyko prisijungti prie MySQL serverio" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Detalės..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8354,6 +8349,11 @@ msgid "Description" msgstr "Paaiškinimas"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Nepavyko prisijungti prie MySQL serverio" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/lv.po b/po/lv.po index 1e5388e..d44e9c4 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian lv@li.org\n" @@ -1400,25 +1400,21 @@ msgstr "Nosaukums" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Serveris neatbild"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Nevar pieslēgties MySQL serverim" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8302,6 +8298,10 @@ msgid "Description" msgstr "Apraksts"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Nevar pieslēgties MySQL serverim" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/mk.po b/po/mk.po index a1f08c9..d2c92c8 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: macedonian_cyrillic mk@li.org\n" @@ -1404,25 +1404,21 @@ msgstr "Име" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Серверот не одговара"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Не можам да се пријавам на MySQL серверот" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8349,6 +8345,10 @@ msgid "Description" msgstr "Опис"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Не можам да се пријавам на MySQL серверот" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/mn.po b/po/mn.po index ed718cb..f28b4c8 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian mn@li.org\n" @@ -1393,26 +1393,21 @@ msgstr "Нэр" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Сервэрээс хариу алга"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Cannot log in to the MySQL server" -msgid "(or the local MySQL server" -msgstr "MySQL руу нэвтэрч чадсангүй" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8268,6 +8263,11 @@ msgid "Description" msgstr "Тайлбар"
#, fuzzy +#~| msgid "Cannot log in to the MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "MySQL руу нэвтэрч чадсангүй" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/ms.po b/po/ms.po index ef2d970..7551a71 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay ms@li.org\n" @@ -1392,25 +1392,21 @@ msgstr "Nama" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Tidak boleh log-masuk ke server MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8222,6 +8218,10 @@ msgid "Description" msgstr "tiada keterangan"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Tidak boleh log-masuk ke server MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/nb.po b/po/nb.po index b97933e..0fa699b 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-05-05 09:04+0200\n" "Last-Translator: sven.erik.andersen@gmail.com\n" "Language-Team: norwegian no@li.org\n" @@ -1337,24 +1337,21 @@ msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Tilkoblingen for kontrollbrukeren som definert i din konfigurasjon feilet."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Tjeneren svarer ikke"
-#: libraries/dbi/mysql.dbi.lib.php:353 -msgid "(or the local MySQL server" -msgstr "(eller den lokale MySQL tjeneren" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(eller den lokale MySQL tjenerens sokkel er ikke korrekt konfigurert)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Detaljer..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(eller den lokale MySQL tjenerens sokkel er ikke korrekt konfigurert)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8566,3 +8563,6 @@ msgstr "Lag en indeks på %s kolonner" msgctxt "for MIME transformation" msgid "Description" msgstr "Beskrivelse" + +#~ msgid "(or the local MySQL server" +#~ msgstr "(eller den lokale MySQL tjeneren" diff --git a/po/nl.po b/po/nl.po index 4d34e91..de6fa23 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-26 15:46+0200\n" "Last-Translator: rink@initfour.nl\n" "Language-Team: dutch nl@li.org\n" @@ -1412,26 +1412,21 @@ msgstr "" "Connectie voor de controle gebruiker zoals in de configuratie is opgegeven " "is mislukt."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "De server reageert niet"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "Er kan geen verbinding worden gemaakt met de server" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(of de MySQL-server heeft het socket niet juist ingesteld)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Details..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(of de MySQL-server heeft het socket niet juist ingesteld)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8801,6 +8796,11 @@ msgid "Description" msgstr "Beschrijving"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Er kan geen verbinding worden gemaakt met de server" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 73af64c..021361c 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME EMAIL@ADDRESS\n" "Language-Team: LANGUAGE LL@li.org\n" @@ -1321,13 +1321,14 @@ msgstr "" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 -msgid "(or the local MySQL server" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 @@ -1335,10 +1336,6 @@ msgstr "" msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, possible-php-format msgid "Database %s has been dropped." diff --git a/po/pl.po b/po/pl.po index 0e62f20..74cc446 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: polish pl@li.org\n" @@ -1419,27 +1419,22 @@ msgstr "" "Połączenie dla użytkownika kontrolnego zdefiniowanego w pliku " "konfiguracyjnym nie powiodło się."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Serwer nie odpowiada"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "Nie można połączyć się z serwerem MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "" +"(lub gniazdo lokalnego serwera MySQL nie jest skonfigurowane poprawnie)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Szczegóły…"
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" -"(lub gniazdo lokalnego serwera MySQL nie jest skonfigurowane poprawnie)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8641,6 +8636,11 @@ msgid "Description" msgstr "Opis"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Nie można połączyć się z serwerem MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/pt.po b/po/pt.po index 63eef9a..ee1b697 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: portuguese pt@li.org\n" @@ -1406,25 +1406,21 @@ msgstr "Nome" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Não é possível fazer login no servidor MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8303,6 +8299,10 @@ msgid "Description" msgstr "Descrição"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Não é possível fazer login no servidor MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/pt_BR.po b/po/pt_BR.po index 788538f..c8735b6 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-21 05:17+0200\n" "Last-Translator: Maurício Meneghini Fauth mauriciofauth@gmail.com\n" "Language-Team: brazilian_portuguese pt_BR@li.org\n" @@ -1408,26 +1408,22 @@ msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Conexão para controle do usuário como definido nas configurações falhou."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "O servidor não está respondendo"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Não foi possível se logar no servidor MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "" +"(ou o soquete do servidor MySQL local não está configurado corretamente)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Detalhes..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" -"(ou o soquete do servidor MySQL local não está configurado corretamente)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8512,6 +8508,10 @@ msgid "Description" msgstr "Descrição"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Não foi possível se logar no servidor MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/ro.po b/po/ro.po index 6e54e9a..f739609 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-13 00:41+0200\n" "Last-Translator: ronaldinia@yahoo.com\n" "Language-Team: romanian ro@li.org\n" @@ -1421,25 +1421,21 @@ msgstr "Nume" msgid "Connection for controluser as defined in your configuration failed." msgstr "Connection for controluser as defined in your configuration failed."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Serverul nu răspunde"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Comprimă conexiunea la serverul MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(sau soclul serverului MySQL local nu este configurat momentan)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Detalii..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(sau soclul serverului MySQL local nu este configurat momentan)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8551,6 +8547,10 @@ msgid "Description" msgstr "Descriere"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Comprimă conexiunea la serverul MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/ru.po b/po/ru.po index 5c16098..fc76727 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-30 23:23+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: russian ru@li.org\n" @@ -1415,26 +1415,21 @@ msgstr "" "controluser, с помощью параметров определенных в конфигурационном файле " "config.inc.php."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Сервер не отвечает"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "Невозможно соединиться с сервером MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(либо сокет локального MySQL-сервера некорректно настроен)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Детали..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(либо сокет локального MySQL-сервера некорректно настроен)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8812,6 +8807,11 @@ msgid "Description" msgstr "Описание"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Невозможно соединиться с сервером MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/si.po b/po/si.po index 055d813..be0a448 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: sinhala si@li.org\n" @@ -1410,25 +1410,21 @@ msgstr "නම" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "සර්වරය ප්රතිචාර නොදක්වයි"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "MySQL සර්වරයට ලොග් විය නොහැක" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(or the local MySQL server's socket is not correctly configured)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(or the local MySQL server's socket is not correctly configured)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8483,6 +8479,10 @@ msgid "Description" msgstr "විස්තරය"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "MySQL සර්වරයට ලොග් විය නොහැක" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bu g in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/sk.po b/po/sk.po index 2bb970a..4fa4a5b 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: slovak sk@li.org\n" @@ -1409,25 +1409,21 @@ msgstr "Názov" msgid "Connection for controluser as defined in your configuration failed." msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Server neodpovedá"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Nepodarilo sa pripojiť k zdroju" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(alebo soket lokálneho MySQL servra nie je správne nastavený)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(alebo soket lokálneho MySQL servra nie je správne nastavený)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8514,6 +8510,10 @@ msgid "Description" msgstr "Popis"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Nepodarilo sa pripojiť k zdroju" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/sl.po b/po/sl.po index 36c4307..6a7583d 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-05-03 00:45+0200\n" "Last-Translator: dbc334@gmail.com\n" "Language-Team: slovenian sl@li.org\n" @@ -1375,26 +1375,21 @@ msgstr "Ime" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Strežnik se ne odziva"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "Ne morem se povezati s strežnikom MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Podrobnosti ..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8292,6 +8287,11 @@ msgid "Description" msgstr "Opis"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Ne morem se povezati s strežnikom MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/sq.po b/po/sq.po index 8f7ad0a..a76b220 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-30 23:08+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: albanian sq@li.org\n" @@ -1401,25 +1401,21 @@ msgstr "Emri" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Serveri nuk përgjigjet"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "E pamundur kryerja e login tek server-i MySQL" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8308,6 +8304,10 @@ msgid "Description" msgstr "Përshkrimi"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "E pamundur kryerja e login tek server-i MySQL" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/sr.po b/po/sr.po index f4efa06..af1441e 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: serbian_cyrillic sr@li.org\n" @@ -1413,25 +1413,21 @@ msgstr "" "Конекција за controluser-а, онако како је дефинисана у вашој конфигурацији, " "није успела."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Сервер не одговара"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Не могу да се пријавим на MySQL сервер" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(или прикључак локалног MySQL сервера није исправно подешен)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(или прикључак локалног MySQL сервера није исправно подешен)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8488,6 +8484,10 @@ msgid "Description" msgstr "Опис"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Не могу да се пријавим на MySQL сервер" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/sr@latin.po b/po/sr@latin.po index 10d5a1a..d6b9c0c 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: serbian_latin <sr@latin@li.org>\n" @@ -1413,25 +1413,21 @@ msgstr "" "Konekcija za controluser-a, onako kako je definisana u vašoj konfiguraciji, " "nije uspela."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Server ne odgovara"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "Ne mogu da se prijavim na MySQL server" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(ili priključak lokalnog MySQL servera nije ispravno podešen)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(ili priključak lokalnog MySQL servera nije ispravno podešen)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8493,6 +8489,10 @@ msgid "Description" msgstr "Opis"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "Ne mogu da se prijavim na MySQL server" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/sv.po b/po/sv.po index e38b3bd..d6a3ebb 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: swedish sv@li.org\n" @@ -1412,26 +1412,21 @@ msgstr "Namn" msgid "Connection for controluser as defined in your configuration failed." msgstr "Uppkoppling för controluser enligt din konfiguration misslyckades."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Servern svarar inte"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "Kunde inte ansluta till MySQL-server" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(eller den lokala MySQL-serverns socket är inte korrekt konfigurerad)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Detaljer..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(eller den lokala MySQL-serverns socket är inte korrekt konfigurerad)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8690,6 +8685,11 @@ msgid "Description" msgstr "Beskrivning"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Kunde inte ansluta till MySQL-server" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/ta.po b/po/ta.po index 31b4248..29966dc 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan sutharshan02@gmail.com\n" "Language-Team: Tamil ta@li.org\n" @@ -1364,13 +1364,14 @@ msgstr "" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 -msgid "(or the local MySQL server" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 @@ -1378,10 +1379,6 @@ msgstr "" msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." diff --git a/po/te.po b/po/te.po index b4636f2..6388ad1 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-04-02 12:04+0200\n" "Last-Translator: veeven@gmail.com\n" "Language-Team: Telugu te@li.org\n" @@ -1390,13 +1390,14 @@ msgstr "పేరు" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 -msgid "(or the local MySQL server" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 @@ -1404,10 +1405,6 @@ msgstr "" msgid "Details..." msgstr "వివరాలు..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." diff --git a/po/th.po b/po/th.po index 4300c23..c93c3ea 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai th@li.org\n" @@ -1390,25 +1390,21 @@ msgstr "ชื่อ" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "ไม่สามารถล็อกอินเข้าเซิร์ฟเวอร์ MySQL ได้" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8227,6 +8223,10 @@ msgid "Description" msgstr "รายละเอียด"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "ไม่สามารถล็อกอินเข้าเซิร์ฟเวอร์ MySQL ได้" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/tr.po b/po/tr.po index ab74569..6c46e93 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-04-03 11:44+0200\n" "Last-Translator: hitowerdigit@hotmail.com\n" "Language-Team: turkish tr@li.org\n" @@ -1415,26 +1415,21 @@ msgstr "" "Yapılandırmanız içinde tanımlanmış denetim kullanıcıları için bağlantı " "başarısız."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Sunucu yanıt vermiyor"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "MySQL sunucusuna bağlanamadı" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(ya da yerel MySQL sunucusunun soketi doğru olarak yapılandırılmadı)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Ayrıntılar..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(ya da yerel MySQL sunucusunun soketi doğru olarak yapılandırılmadı)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8754,6 +8749,11 @@ msgid "Description" msgstr "Açıklama"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "MySQL sunucusuna bağlanamadı" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/tt.po b/po/tt.po index 06ece3e..f13081d 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-30 23:14+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: tatarish tt@li.org\n" @@ -1406,25 +1406,21 @@ msgstr "Adı" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Bu server endäşmi"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "MySQL servergä totaşılıp bulmadı" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8348,6 +8344,10 @@ msgid "Description" msgstr "Açıqlama"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "MySQL servergä totaşılıp bulmadı" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/uk.po b/po/uk.po index b3d453f..312cb04 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: ukrainian uk@li.org\n" @@ -1387,26 +1387,21 @@ msgstr "Назва" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Cannot log in to the MySQL server" -msgid "(or the local MySQL server" -msgstr "Не можу зареєструватися на MySQL сервері" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8181,6 +8176,11 @@ msgid "Description" msgstr "Опис"
#, fuzzy +#~| msgid "Cannot log in to the MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "Не можу зареєструватися на MySQL сервері" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/ur.po b/po/ur.po index 25225a4..5c51ff8 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-04-09 14:02+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: Urdu ur@li.org\n" @@ -1321,13 +1321,14 @@ msgstr "" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 -msgid "(or the local MySQL server" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 @@ -1335,10 +1336,6 @@ msgstr "" msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." diff --git a/po/uz.po b/po/uz.po index f5c6e88..60af4b8 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: uzbek_cyrillic uz@li.org\n" @@ -1415,26 +1415,21 @@ msgstr "" ""config.inc.php" конфигурацион файлининг "controluser" директивасида " "кўрсатилган фойдаланувчи ёрдамида уланиб бўлмади."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Сервер жавоб бермаяпти"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "MySQL-серверга уланиб бўлмади" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Тафсилотлар..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8813,6 +8808,11 @@ msgid "Description" msgstr "Тавсифи"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "MySQL-серверга уланиб бўлмади" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/uz@latin.po b/po/uz@latin.po index 7470445..2c4d4b3 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+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" @@ -1419,26 +1419,21 @@ msgstr "" ""config.inc.php" konfiguratsion faylining "controluser" direktivasida " "ko‘rsatilgan foydalanuvchi yordamida ulanib bo‘lmadi."
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "Server javob bermayapti"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "MySQL-serverga ulanib bo‘lmadi" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "Tafsilotlar..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8880,6 +8875,11 @@ msgid "Description" msgstr "Tavsifi"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "MySQL-serverga ulanib bo‘lmadi" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/zh_CN.po b/po/zh_CN.po index 9a2d720..3cf6d1e 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-04-08 13:06+0200\n" "Last-Translator: shanyan baishui Siramizu@gmail.com\n" "Language-Team: chinese_simplified zh_CN@li.org\n" @@ -1394,26 +1394,21 @@ msgstr "名字" msgid "Connection for controluser as defined in your configuration failed." msgstr "使用配置文件中定义的控制用户连接失败。"
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "服务器没有响应"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "(or the local MySQL server" -msgstr "无法连接到 MySQL 服务器" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "(或者本地 MySQL 服务器的套接字没有正确配置)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr "详细..."
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "(或者本地 MySQL 服务器的套接字没有正确配置)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8393,6 +8388,11 @@ msgid "Description" msgstr "说明"
#, fuzzy +#~| msgid "Could not connect to MySQL server" +#~ msgid "(or the local MySQL server" +#~ msgstr "无法连接到 MySQL 服务器" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct " diff --git a/po/zh_TW.po b/po/zh_TW.po index 97349e5..1417e10 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@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-05 11:17+0200\n" +"POT-Creation-Date: 2010-05-05 11:19+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: chinese_traditional zh_TW@li.org\n" @@ -1398,25 +1398,21 @@ msgstr "名稱" msgid "Connection for controluser as defined in your configuration failed." msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:863 +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863 msgid "The server is not responding" msgstr "伺服器並無回應"
-#: libraries/dbi/mysql.dbi.lib.php:353 -#, fuzzy -msgid "(or the local MySQL server" -msgstr "無法登入 MySQL 伺服器" +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +#: libraries/messages.inc.php:1018 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "( 或者本機 MySQL 伺服器之 socket 並未正確設定)"
#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:263 #: tbl_structure.php:609 msgid "Details..." msgstr ""
-#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:1018 -msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "( 或者本機 MySQL 伺服器之 socket 並未正確設定)" - #: libraries/db_links.inc.php:45 libraries/messages.inc.php:224 #, php-format msgid "Database %s has been dropped." @@ -8244,6 +8240,10 @@ msgid "Description" msgstr "說明"
#, fuzzy +#~ msgid "(or the local MySQL server" +#~ msgstr "無法登入 MySQL 伺服器" + +#, fuzzy #~| msgid "" #~| "There is a chance that you may have found a bug in the SQL parser. " #~| "Please examine your query closely, and check that the quotes are correct "
hooks/post-receive