From 357feda357541cca963c73d84e12e0c4b63a8dcd Mon Sep 17 00:00:00 2001 From: Yuri German Date: Fri, 31 May 2013 18:05:49 +0200 Subject: [PATCH 1/2] Translated using Weblate (Hebrew) Currently translated at 23.2% (604 of 2602) --- po/he.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/he.po b/po/he.po index 4fb4f32f80..dfd4598a85 100644 --- a/po/he.po +++ b/po/he.po @@ -4,13 +4,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-28 12:35-0400\n" -"PO-Revision-Date: 2013-04-28 20:50+0200\n" -"Last-Translator: Efraim Flashner \n" +"PO-Revision-Date: 2013-05-31 18:05+0200\n" +"Last-Translator: Yuri German \n" "Language-Team: Hebrew \n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: he\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -1066,11 +1066,11 @@ msgstr "סוג שאילתה" #: js/messages.php:83 msgid "Query cache usage" -msgstr "בודק כמות זיכרון מטמון בשימוש" +msgstr "זיכרון מטמון בשימוש" #: js/messages.php:84 msgid "Query cache used" -msgstr "בודק איזה זיכרון מטמון בשימוש" +msgstr "זיכרון מטמון בשימוש" #: js/messages.php:86 msgid "System CPU Usage" From 56e202a6f57fff1ddefa218a91cd0e67f4a88021 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 2 Jun 2013 06:18:32 -0400 Subject: [PATCH 2/2] bug #3959 Using DefaultTabDatabase in NavigationTree for Database Click --- ChangeLog | 1 + libraries/navigation/Nodes/Node_Database.class.php | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f8b8856d9c..3926abda4a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ phpMyAdmin - ChangeLog ====================== 4.0.4.0 (not yet released) +- bug #3959 Using DefaultTabDatabase in NavigationTree for Database Click 4.0.3.0 (not yet released) - bug #3941 Recent tables list always empty diff --git a/libraries/navigation/Nodes/Node_Database.class.php b/libraries/navigation/Nodes/Node_Database.class.php index 44304c13bc..5c0815f408 100644 --- a/libraries/navigation/Nodes/Node_Database.class.php +++ b/libraries/navigation/Nodes/Node_Database.class.php @@ -29,7 +29,8 @@ class Node_Database extends Node parent::__construct($name, $type, $is_group); $this->icon = PMA_Util::getImage('s_db.png'); $this->links = array( - 'text' => 'db_structure.php?server=' . $GLOBALS['server'] + 'text' => $GLOBALS['cfg']['DefaultTabDatabase'] + . '?server=' . $GLOBALS['server'] . '&db=%1$s&token=' . $GLOBALS['token'], 'icon' => 'db_operations.php?server=' . $GLOBALS['server'] . '&db=%1$s&token=' . $GLOBALS['token']