From f45a402eff15d9cad572520bdf23d940bf4946f4 Mon Sep 17 00:00:00 2001 From: Ghanshyam Bagul Date: Thu, 19 Sep 2013 18:30:12 +0200 Subject: [PATCH 1/2] Translated using Weblate (Hindi) Currently translated at 56.8% (1482 of 2611) --- po/hi.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/hi.po b/po/hi.po index f0091508b9bc..08a569771aa4 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.7-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-09-17 10:36-0400\n" -"PO-Revision-Date: 2013-07-31 10:21+0200\n" -"Last-Translator: Deven Bhooshan \n" +"PO-Revision-Date: 2013-09-19 18:30+0200\n" +"Last-Translator: Ghanshyam Bagul \n" "Language-Team: Hindi \n" +"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.7-dev\n" @@ -104,8 +104,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" -"ये %s फ़ाइल तंत्र में उपलब्ध नहीं है, कृपया अधिक जानकारी के लिए www.phpmyadmin.net " -"वेबसाईट पर जाएँ।" +"%s ये फ़ाइल तंत्र में उपलब्ध नहीं है, कृपया अधिक जानकारी के लिए " +"www.phpmyadmin.net वेबसाईट पर जाएँ।" #: db_create.php:74 #, php-format From a86dc47741605ccdb2e741bb913e0e844b2c9407 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Fri, 20 Sep 2013 07:16:13 +0530 Subject: [PATCH 2/2] Include separator in the table group --- libraries/navigation/NavigationTree.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/navigation/NavigationTree.class.php b/libraries/navigation/NavigationTree.class.php index 483bf51a421b..cac3a8b8afbe 100644 --- a/libraries/navigation/NavigationTree.class.php +++ b/libraries/navigation/NavigationTree.class.php @@ -588,11 +588,11 @@ public function groupNode($node) $groups[$key]->pos2 = $node->pos2; $groups[$key]->pos3 = $node->pos3; if ($node instanceof Node_Table_Container) { + $tblGroup = '&tbl_group=' + . urlencode($key . $node->separator); $groups[$key]->links = array( - 'text' => $node->links['text'] - . '&tbl_group=' . urlencode($key), - 'icon' => $node->links['icon'] - . '&tbl_group=' . urlencode($key) + 'text' => $node->links['text'] . $tblGroup, + 'icon' => $node->links['icon'] . $tblGroup ); } $node->addChild($groups[$key]);