Skip to content

Commit

Permalink
Merge branch 'QA_4_6'
Browse files Browse the repository at this point in the history
Fix merge conflicts in po/pt_BR.po

Signed-off-by: Isaac Bennetch <bennetch@gmail.com>
  • Loading branch information
ibennetch committed Mar 30, 2016
2 parents d212568 + a1dd261 commit 1867084
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -15,6 +15,7 @@ phpMyAdmin - ChangeLog
- issue #12118 Fixed activation of some languages
- issue #12121 Fixed error in 3NF step of normalization
- issue #12135 Fix offering JSON datatype in incompatible MySQL versions
- issue #12132 Can not open table with JSON field

4.6.0.0 (2016-03-22)
+ issue #11456 Disabled storage engines
Expand Down
8 changes: 4 additions & 4 deletions libraries/dbi/DBIMysqli.php
Expand Up @@ -43,7 +43,9 @@
if (! defined('MYSQLI_TYPE_BIT')) {
define('MYSQLI_TYPE_BIT', 16);
}

if (! defined('MYSQLI_TYPE_JSON')) {
define('MYSQLI_TYPE_JSON', 245);
}


/* vim: set expandtab sw=4 ts=4 sts=4: */
Expand Down Expand Up @@ -499,9 +501,7 @@ public function getFieldsMeta($result)
//$typeAr[MYSQLI_TYPE_CHAR] = 'string';
$typeAr[MYSQLI_TYPE_GEOMETRY] = 'geometry';
$typeAr[MYSQLI_TYPE_BIT] = 'bit';
if (defined('MYSQLI_TYPE_JSON')) {
$typeAr[MYSQLI_TYPE_JSON] = 'json';
}
$typeAr[MYSQLI_TYPE_JSON] = 'json';

$fields = mysqli_fetch_fields($result);

Expand Down
7 changes: 3 additions & 4 deletions po/pt_BR.po
Expand Up @@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.7.0-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2016-02-17 11:55+0100\n"
"PO-Revision-Date: 2016-02-29 19:37+0000\n"
"Last-Translator: Kenzo Martins Matuzawa <kenzo.matuzawa@gmail.com>\n"
"PO-Revision-Date: 2016-03-29 18:28+0000\n"
"Last-Translator: Ricardo Crivelli <ricardocrivelli@gmail.com>\n"
"Language-Team: Portuguese (Brazil) "
"<https://hosted.weblate.org/projects/phpmyadmin/master/pt_BR/>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 2.5-dev\n"
"X-Generator: Weblate 2.6-dev\n"

#: changelog.php:37 license.php:33
#, php-format
Expand Down Expand Up @@ -4746,7 +4746,6 @@ msgid "Analyze Explain at %s"
msgstr ""

#: libraries/Util.php:1249
#, fuzzy
#| msgid "Without PHP Code"
msgid "Without PHP code"
msgstr "Sem código PHP"
Expand Down

0 comments on commit 1867084

Please sign in to comment.