From 32b25d7c3d2b40ac77f54d35a00b827cf1422452 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 23 May 2013 12:43:13 +0200 Subject: [PATCH 1/3] Translated using Weblate (Czech) Currently translated at 100.0% (2603 of 2603) --- po/cs.po | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/po/cs.po b/po/cs.po index 0437c708eb..0fdb9f11da 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,13 +6,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-05-23 02:54-0400\n" -"PO-Revision-Date: 2013-05-02 13:33+0200\n" +"PO-Revision-Date: 2013-05-23 12:43+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Czech \n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 1.6-dev\n" @@ -6162,7 +6162,6 @@ msgstr "CSV pomocí LOAD DATA" #: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:348 #: libraries/config/user_preferences.forms.php:160 #: libraries/config/user_preferences.forms.php:252 -#, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Sešit OpenDocument" @@ -6194,7 +6193,6 @@ msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:352 #: libraries/config/user_preferences.forms.php:256 -#, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" msgstr "Text OpenDocument" From 685fa958d33ec478e4a65042997ceb09367eac57 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 23 May 2013 07:02:20 -0400 Subject: [PATCH 2/3] bug #3927 List of tables is missing after expanding in the navigation frame --- ChangeLog | 1 + libraries/navigation/NavigationTree.class.php | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index fffe91cbc0..db76259abf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ phpMyAdmin - ChangeLog 4.0.3.0 (not yet released) - bug #3941 Recent tables list always empty - bug #3933 Do not translate "Open Document" in export settings +- bug #3927 List of tables is missing after expanding in the navigation frame 4.0.2.0 (not yet released) - bug #3902 Cannot browse when table name contains keyword "call" diff --git a/libraries/navigation/NavigationTree.class.php b/libraries/navigation/NavigationTree.class.php index 3b352b80b5..922c52ba17 100644 --- a/libraries/navigation/NavigationTree.class.php +++ b/libraries/navigation/NavigationTree.class.php @@ -928,7 +928,8 @@ class PMA_NavigationTree $title = $node->getComment(); if ($title) { $title = " title='" - . htmlentities($title, ENT_QUOTES) . "'"; + . htmlentities($title, ENT_QUOTES, 'UTF-8') + . "'"; } } else { $title = ''; From ea5a1b26103773ce0798094268ad709f0c410c84 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 23 May 2013 07:05:44 -0400 Subject: [PATCH 3/3] Produce valid XHTML --- libraries/navigation/NavigationTree.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/navigation/NavigationTree.class.php b/libraries/navigation/NavigationTree.class.php index 922c52ba17..d92c694f82 100644 --- a/libraries/navigation/NavigationTree.class.php +++ b/libraries/navigation/NavigationTree.class.php @@ -927,9 +927,9 @@ class PMA_NavigationTree if ($GLOBALS['cfg']['ShowTooltip']) { $title = $node->getComment(); if ($title) { - $title = " title='" + $title = ' title="' . htmlentities($title, ENT_QUOTES, 'UTF-8') - . "'"; + . '"'; } } else { $title = '';