This commit is contained in:
Gemorroj 2018-07-28 09:35:32 +03:00
commit 1d94ab9bd2
28 changed files with 2798 additions and 7120 deletions

View File

@ -55,7 +55,8 @@
"twig/extensions": "~1.5.1",
"symfony/expression-language": "^3.2",
"symfony/polyfill-mbstring": "^1.3",
"symfony/polyfill-ctype": "^1.8"
"symfony/polyfill-ctype": "^1.8",
"williamdes/mariadb-mysql-kbs": "^1.2"
},
"conflict": {
"phpseclib/phpseclib": "2.0.8",

View File

@ -188,14 +188,10 @@ class TableRelationController extends TableController
// common form
$engine = $this->dbi->getTable($this->db, $this->table)->getStorageEngine();
$foreignKeySupported = Util::isForeignKeySupported($this->tbl_storage_engine);
$this->response->addHTML(
$this->template->render('table/relation/common_form', [
'url_params' => [
'db' => $GLOBALS['db'],
'table' => $GLOBALS['table'],
],
'is_foreign_key_supported' => Util::isForeignKeySupported($engine),
'cfg_relation' => $this->relation->getRelationsParam(),
'db' => $this->db,
'table' => $this->table,
'cfg_relation' => $this->cfgRelation,
@ -210,13 +206,10 @@ class TableRelationController extends TableController
'url_params' => $GLOBALS['url_params'],
'databases' => $GLOBALS['dblist']->databases,
'dbi' => $this->dbi,
'foreignKeySupported' => $foreignKeySupported,
'displayIndexesHtml' => $foreignKeySupported ? Index::getHtmlForDisplayIndexes() : null,
])
);
if (Util::isForeignKeySupported($this->tbl_storage_engine)) {
$this->response->addHTML(Index::getHtmlForDisplayIndexes());
}
$this->response->addHTML('</div>');
}
/**

View File

@ -383,8 +383,6 @@ class TableStructureController extends TableController
$columns_with_index
)
);
$this->response->addHTML('</div>');
}
/**
@ -1481,7 +1479,14 @@ class TableStructureController extends TableController
$avg_size = $avg_unit = '';
}
$engine = $this->dbi->getTable($this->db, $this->table)->getStorageEngine();
return $this->template->render('table/structure/display_table_stats', [
'url_params' => [
'db' => $GLOBALS['db'],
'table' => $GLOBALS['table'],
],
'is_foreign_key_supported' => Util::isForeignKeySupported($engine),
'cfg_relation' => $this->relation->getRelationsParam(),
'showtable' => $this->_showtable,
'table_info_num_rows' => $this->_table_info_num_rows,
'tbl_is_view' => $this->_tbl_is_view,

View File

@ -370,6 +370,8 @@ class Plugins
$ret .= \PhpMyAdmin\Util::showMySQLDocu(
$doc[1],
false,
null,
null,
$doc[2]
);
} elseif (count($doc) == 1) {

View File

@ -4842,6 +4842,8 @@ class Privileges
. Util::showMySQLDocu(
'privileges-provided',
false,
null,
null,
'priv_reload'
),
Message::NOTICE

View File

@ -46,6 +46,8 @@ class Queries
$retval .= Util::showMySQLDocu(
'server-status-variables',
false,
null,
null,
'statvar_Questions'
);
$retval .= '<br />';

View File

@ -244,11 +244,7 @@ class Variables
// Fields containing % are calculated,
// they can not be described in MySQL documentation
if (mb_strpos($name, '%') === false) {
$retval .= Util::showMySQLDocu(
'server-status-variables',
false,
'statvar_' . $name
);
$retval .= Util::linkToVarDocumentation($name, $GLOBALS['dbi']->isMariaDB());
}
$retval .= '</th>';

View File

@ -23,6 +23,8 @@ use PhpMyAdmin\SqlParser\Token;
use PhpMyAdmin\SqlParser\Utils\Error as ParserError;
use PhpMyAdmin\Template;
use PhpMyAdmin\Url;
use Williamdes\MariaDBMySQLKBS\Search as KBSearch;
use Williamdes\MariaDBMySQLKBS\KBException;
/**
* Misc functions used all over the scripts.
@ -356,13 +358,46 @@ class Util
return Core::linkURL($url);
}
/**
* Get a link to variable documentation
*
* @param string $name The variable name
* @param boolean $useMariaDB Use only MariaDB documentation
* @param string $text (optional) The text for the link
* @return string link or empty string
*/
public static function linkToVarDocumentation(
string $name,
bool $useMariaDB = false,
string $text = null
): string {
$html = '';
try {
$type = KBSearch::MYSQL;
if ($useMariaDB) {
$type = KBSearch::MARIADB;
}
$docLink = KBSearch::getByName($name, $type);
$html = Util::showMySQLDocu(
$name,
false,
$docLink,
$text
);
} catch (KBException $e) {
unset($e);// phpstan workaround
}
return $html;
}
/**
* Displays a link to the official MySQL documentation
*
* @param string $link contains name of page/anchor that is being linked
* @param bool $big_icon whether to use big icon (like in left frame)
* @param string $anchor anchor to page part
* @param bool $just_open whether only the opening <a> tag should be returned
* @param string $link contains name of page/anchor that is being linked
* @param bool $bigIcon whether to use big icon (like in left frame)
* @param string|null $url href attribute
* @param string|null $text text of link
* @param string $anchor anchor to page part
*
* @return string the html link
*
@ -370,20 +405,29 @@ class Util
*/
public static function showMySQLDocu(
$link,
$big_icon = false,
$anchor = '',
$just_open = false
) {
$url = self::getMySQLDocuURL($link, $anchor);
$open_link = '<a href="' . $url . '" target="mysql_doc">';
if ($just_open) {
return $open_link;
} elseif ($big_icon) {
return $open_link
. self::getImage('b_sqlhelp', __('Documentation')) . '</a>';
bool $bigIcon = false,
$url = null,
$text = null,
$anchor = ''
): string {
if ($url === null) {
$url = self::getMySQLDocuURL($link, $anchor);
}
$openLink = '<a href="' . htmlspecialchars($url) . '" target="mysql_doc">';
$closeLink = '</a>';
$html = '';
if ($bigIcon) {
$html = $openLink .
self::getImage('b_sqlhelp', __('Documentation'))
. $closeLink;
} elseif ($text !== null) {
$html = $openLink . $text . $closeLink;
} else {
$html = self::showDocLink($url, 'mysql_doc');
}
return self::showDocLink($url, 'mysql_doc');
return $html;
} // end of the 'showMySQLDocu()' function
/**

View File

@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 5.0.0-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2018-05-28 21:06-0300\n"
"PO-Revision-Date: 2018-04-16 15:34+0000\n"
"Last-Translator: Orkhan Guliyev <orkhan@our.az>\n"
"PO-Revision-Date: 2018-07-27 08:19+0000\n"
"Last-Translator: Yusif Məmmədov <yusifmv@gmail.com>\n"
"Language-Team: Azerbaijani <https://hosted.weblate.org/projects/phpmyadmin/"
"master/az/>\n"
"Language: az\n"
@ -13,7 +13,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.0-dev\n"
"X-Generator: Weblate 3.1-dev\n"
#: ajax.php:22 ajax.php:51 export.php:206 libraries/classes/Export.php:1150
msgid "Bad type!"
@ -764,6 +764,9 @@ msgid ""
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
"mbstring PHP əlavəsi tapılmadı və belə görünür ki, siz çoxbaytlı simvol "
"dəstindən istifadə edirsiniz. mbstring əlavəsi olmadan phpMyAdmin stringləri "
"düzgün şəkildə parçalaya bilməz və bu gözlənilməz nəticələr verə bilər."
#: index.php:505
msgid ""
@ -781,6 +784,10 @@ msgid ""
"than cookie validity configured in phpMyAdmin, because of this, your login "
"might expire sooner than configured in phpMyAdmin."
msgstr ""
"Sizin PHP parametriniz [a@https://secure.php.net/manual/en/"
"session.configuration.php#ini.session.gc-maxlifetime@_blank] phpMyAdmində "
"qurulmuş çərəz (Cookie) etibarlılıq müddətindən daha azdır. Buna görə də "
"sizin girişin phpMyAdmində tənzimlənmiş vaxtdan tez bitə bilər."
#: index.php:539
msgid ""

View File

@ -6,7 +6,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 5.0.0-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2018-05-28 21:06-0300\n"
"PO-Revision-Date: 2018-05-23 22:34+0000\n"
"PO-Revision-Date: 2018-07-23 11:06+0000\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Czech <https://hosted.weblate.org/projects/phpmyadmin/master/"
"cs/>\n"
@ -15,7 +15,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 3.0-dev\n"
"X-Generator: Weblate 3.1-dev\n"
#: ajax.php:22 ajax.php:51 export.php:206 libraries/classes/Export.php:1150
msgid "Bad type!"
@ -1762,6 +1762,8 @@ msgid ""
"It seems that the connection to server has been lost. Please check your "
"network connectivity and server status."
msgstr ""
"Připojení k serveru bylo ztraceno. Prosím, zkontrolujte Vaše síťové "
"připojení a stav serveru."
#: js/messages.php:372
#: libraries/classes/Controllers/Server/ServerDatabasesController.php:187
@ -2684,12 +2686,12 @@ msgstr "Silné"
#: js/messages.php:751
msgid "Timed out waiting for security key activation."
msgstr ""
msgstr "Vypršel čas pro aktivaci bezpečnostního klíče."
#: js/messages.php:752
#, php-format
msgid "Failed security key activation (%s)."
msgstr ""
msgstr "Selhala aktivace bezpečnostního klíče (%s)."
#: js/messages.php:781
msgctxt "Previous month"
@ -3429,7 +3431,7 @@ msgstr "Islandština"
#: libraries/classes/Charsets.php:493
msgctxt "Collation"
msgid "Classical Latin"
msgstr ""
msgstr "Latina (klasická)"
#: libraries/classes/Charsets.php:497
#, fuzzy
@ -3492,7 +3494,7 @@ msgstr "Španělština"
#: libraries/classes/Charsets.php:545 libraries/classes/Charsets.php:595
msgctxt "Collation"
msgid "Spanish (traditional)"
msgstr ""
msgstr "Španělština (tradiční)"
#: libraries/classes/Charsets.php:564
#, fuzzy
@ -7140,7 +7142,7 @@ msgstr "Server neodpovídá."
#: libraries/classes/DatabaseInterface.php:2209
msgid "Logout and try as another user."
msgstr ""
msgstr "Odhlásit se a zkusit přihlásit se jako jiný uživatel."
#: libraries/classes/DatabaseInterface.php:2215
msgid "Please check privileges of directory containing database."
@ -7187,7 +7189,7 @@ msgstr "Heslo:"
#: libraries/classes/Display/ChangePassword.php:82
msgid "Enter:"
msgstr ""
msgstr "Vložit:"
#: libraries/classes/Display/ChangePassword.php:89
#: libraries/classes/ReplicationGui.php:893
@ -7236,7 +7238,7 @@ msgstr ""
#: libraries/classes/Display/Export.php:573
msgid "Defined aliases"
msgstr ""
msgstr "Definované aliasy"
#: libraries/classes/Display/Export.php:629
#: templates/display/export/options_output.twig:7
@ -8186,7 +8188,7 @@ msgstr "Pohled"
#: libraries/classes/Menu.php:298 libraries/classes/Menu.php:317
#, php-format
msgid "“%s”"
msgstr ""
msgstr "„%s“"
#: libraries/classes/Menu.php:352
#: libraries/classes/Navigation/Nodes/NodeTable.php:302
@ -9247,6 +9249,8 @@ msgstr "Nepodařilo se přihlášení k MySQL serveru"
#: libraries/classes/Plugins/AuthenticationPlugin.php:350
msgid "You have enabled two factor authentication, please confirm your login."
msgstr ""
"Aktivovali jste dvoustupňové ověřování. Potvrďte, prosím, své přihlašovací "
"údaje."
#: libraries/classes/Plugins/Export/ExportCodegen.php:104
#: templates/display/import/import.twig:168
@ -9765,7 +9769,7 @@ msgstr "Tabulka:"
#: libraries/classes/Plugins/Export/Helpers/Pdf.php:168
msgid "Purpose:"
msgstr ""
msgstr "Účel:"
#: libraries/classes/Plugins/Export/Helpers/Pdf.php:549
msgid "MIME"

View File

@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 5.0.0-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2018-05-28 21:06-0300\n"
"PO-Revision-Date: 2018-01-08 13:02+0000\n"
"Last-Translator: Guillermo Lengemann <omerta@unefa-glug.org.ve>\n"
"PO-Revision-Date: 2018-07-23 11:06+0000\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/phpmyadmin/"
"master/es/>\n"
"Language: es\n"
@ -13,7 +13,7 @@ msgstr ""
"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.19-dev\n"
"X-Generator: Weblate 3.1-dev\n"
#: ajax.php:22 ajax.php:51 export.php:206 libraries/classes/Export.php:1150
msgid "Bad type!"
@ -9250,6 +9250,8 @@ msgstr "El servidor MySQL no autorizó su acceso"
#: libraries/classes/Plugins/AuthenticationPlugin.php:350
msgid "You have enabled two factor authentication, please confirm your login."
msgstr ""
"Ha habilitado la autenticación de dos factores, confirme su inicio de sesión "
"por favor."
#: libraries/classes/Plugins/Export/ExportCodegen.php:104
#: templates/display/import/import.twig:168

View File

@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 5.0.0-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2018-05-07 03:27-0300\n"
"PO-Revision-Date: 2018-07-10 23:23+0000\n"
"PO-Revision-Date: 2018-07-26 11:48+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://hosted.weblate.org/projects/phpmyadmin/master/"
"he/>\n"
@ -16917,7 +16917,7 @@ msgid ""
msgstr ""
"הגדרת {concurrent_insert} ל־1 מקטינה את המחלוקת בין הקוראים והכותבים לטבלה "
"מסוימת. ניתן גם לעיין ב<a href=\"https://dev.mysql.com/doc/refman/5.5/en/"
"concurrent-inserts.html\">תיעוד שלMySQL</a>"
"concurrent-inserts.html\">תיעוד של MySQL</a>"
#: libraries/advisory_rules.txt:446
msgid "concurrent_insert is set to 0"

View File

@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 5.0.0-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2018-05-28 21:06-0300\n"
"PO-Revision-Date: 2018-03-23 05:43+0000\n"
"Last-Translator: Marino <mrabach@gmail.com>\n"
"PO-Revision-Date: 2018-07-23 11:06+0000\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Croatian <https://hosted.weblate.org/projects/phpmyadmin/"
"master/hr/>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 2.20-dev\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<="
"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 3.1-dev\n"
#: ajax.php:22 ajax.php:51 export.php:206 libraries/classes/Export.php:1150
msgid "Bad type!"
@ -26,12 +26,12 @@ msgid ""
"The %s file is not available on this system, please visit %s for more "
"information."
msgstr ""
"Datoteka %s nije dostupna na na ovom sistemu, molimo posjetite www."
"phpmyadmin.net%s za više informacija."
"Datoteka %s nije dostupna na ovom sistemu, molimo posjetite %s za više "
"informacija."
#: db_central_columns.php:130
msgid "The central list of columns for the current database is empty."
msgstr ""
msgstr "Središnji popis stupaca za trenutnu bazu podataka je prazan"
#: db_central_columns.php:159
#, fuzzy
@ -315,6 +315,8 @@ msgstr "Naziv baze podataka je prazan!"
#: db_operations.php:71
msgid "Cannot copy database to the same name. Change the name and try again."
msgstr ""
"Nije moguće kopirati bazu podataka jednakog naziva. Promijenite naziv i "
"pokušajte ponovo."
#: db_operations.php:158
#, fuzzy, php-format
@ -323,10 +325,9 @@ msgid "Database %1$s has been renamed to %2$s."
msgstr "Baza podataka %1$s preimenovana je u %2$s"
#: db_operations.php:170
#, fuzzy, php-format
#| msgid "Database %s has been copied to %s."
#, php-format
msgid "Database %1$s has been copied to %2$s."
msgstr "Baza podataka %s kopirana je u %s"
msgstr "Baza podataka %1$s je kopirana u %2$s"
#: db_operations.php:299
#, fuzzy, php-format
@ -340,10 +341,8 @@ msgstr ""
"razloge, kliknite %sovdje%s."
#: db_qbe.php:134
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to choose at least one column to display!"
msgstr "Morate odabrati najmanje jedan stupac za prikazivanje"
msgstr "Morate odabrati najmanje jedan stupac za prikazivanje!"
#: db_qbe.php:152
#, php-format

146
po/lt.po
View File

@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 5.0.0-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2018-05-28 21:06-0300\n"
"PO-Revision-Date: 2018-02-01 13:38+0000\n"
"Last-Translator: Edgaras Janušauskas <edgaras.janusauskas@gmail.com>\n"
"POT-Creation-Date: 2018-02-12 16:30+0100\n"
"PO-Revision-Date: 2018-07-23 11:06+0000\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/phpmyadmin/"
"master/lt/>\n"
"Language: lt\n"
@ -15,7 +15,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > "
"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
"1 : 2);\n"
"X-Generator: Weblate 2.19-dev\n"
"X-Generator: Weblate 3.1-dev\n"
#: ajax.php:22 ajax.php:51 export.php:206 libraries/classes/Export.php:1150
msgid "Bad type!"
@ -584,13 +584,12 @@ msgid "Bookmark %s has been created."
msgstr "Žymė %s sukurta."
#: import.php:600
#, fuzzy, php-format
#, php-format
msgid "Import has been successfully finished, %d query executed."
msgid_plural "Import has been successfully finished, %d queries executed."
msgstr[0] "Importavimas sėkmingai baigtas, įvykdyta %d užklausa."
msgstr[1] "Importavimas sėkmingai baigtas, įvykdyta %d užklausos."
msgstr[2] "Importavimas sėkmingai baigtas, įvykdyta %d užklausų."
msgstr[3] ""
msgstr[0] "Importavimas sėkmingai baigtas, užklausa %d įvykdyta."
msgstr[1] "Importavimas sėkmingai baigtas, užklausos %d įvykdytos."
msgstr[2] "Importavimas sėkmingai baigtas, iš viso įvykdyta %d užklausų."
#: import.php:631
#, php-format
@ -616,7 +615,7 @@ msgstr "„DROP DATABASE“ komandos įvykdyti negalima."
#: import_status.php:108
msgid "Could not load the progress of the import."
msgstr ""
msgstr "Nepavyko įkelti importo ."
#: import_status.php:117 js/messages.php:461 js/messages.php:627
#: libraries/classes/Export.php:530
@ -630,13 +629,13 @@ msgid ""
"You were logged out from one server, to logout completely from phpMyAdmin, "
"you need to logout from all servers."
msgstr ""
"Jūs atsijungėte iš vieno serverio, kad visiškai išeitumėte iš phpMyAdmin, "
"turite atsijungti iš visų serverių."
#: index.php:184 libraries/classes/Footer.php:83
#: libraries/classes/Plugins/Auth/AuthenticationCookie.php:116
#, fuzzy
#| msgid "phpMyAdmin homepage"
msgid "phpMyAdmin Demo Server"
msgstr "phpMyAdmin tinklalapis"
msgstr "phpMyAdmin Demonstracinis Serveris"
#: index.php:188 libraries/classes/Plugins/Auth/AuthenticationCookie.php:119
#, php-format
@ -645,6 +644,9 @@ msgid ""
"change root, debian-sys-maint and pma users. More information is available "
"at %s."
msgstr ""
"Jūs naudojate demonstracinį serverį. Čia galite daryti ką norite, bet "
"nepakeiskite admistratoriaus root, debian-sys-maint ir pma vartotojų. "
"Daugiau informacijos galima rasti čia adresu %s."
#: index.php:198
msgid "General settings"
@ -678,16 +680,12 @@ msgid "Server:"
msgstr "Darbinė stotis:"
#: index.php:326
#, fuzzy
#| msgid "Server port"
msgid "Server type:"
msgstr "Serverio jungtis"
msgstr "Serverio tipas :"
#: index.php:330
#, fuzzy
#| msgid "Insecure connection"
msgid "Server connection:"
msgstr "Nesaugus susijungimas"
msgstr "Serverio prisijungimas :"
#: index.php:334 libraries/classes/Plugins/Export/ExportLatex.php:225
#: libraries/classes/Plugins/Export/ExportSql.php:706
@ -704,10 +702,8 @@ msgid "Protocol version:"
msgstr "Protokolo versija"
#: index.php:344
#, fuzzy
#| msgid "User"
msgid "User:"
msgstr "Naudotojas"
msgstr "Vartotojas :"
#: index.php:349
#, fuzzy
@ -773,7 +769,7 @@ msgstr "Pakeitimų sąrašas"
#: index.php:470 templates/server/plugins/section.twig:13
msgid "License"
msgstr ""
msgstr "Licencija"
#: index.php:490
msgid ""
@ -1138,8 +1134,6 @@ msgstr "SQL užklausa"
#. l10n: Default label for the y-Axis of Charts
#: js/messages.php:141
#, fuzzy
#| msgid "Y Values"
msgid "Y values"
msgstr "Y Reikšmės"
@ -1623,22 +1617,16 @@ msgid "Chart"
msgstr "Diagrama"
#: js/messages.php:298 libraries/classes/Display/Export.php:581
#, fuzzy
#| msgid "Database"
msgctxt "Alias"
msgid "Database"
msgstr "Duomenų bazė"
#: js/messages.php:299 libraries/classes/Display/Export.php:593
#, fuzzy
#| msgid "Table"
msgctxt "Alias"
msgid "Table"
msgstr "Lentelė"
#: js/messages.php:300 libraries/classes/Display/Export.php:604
#, fuzzy
#| msgid "Column"
msgctxt "Alias"
msgid "Column"
msgstr "Stulpelis"
@ -2578,8 +2566,6 @@ msgid "Original length"
msgstr "Pirminė padėtis"
#: js/messages.php:617
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "Atšaukti"
@ -3034,9 +3020,6 @@ msgstr "Šeštadienis"
#. l10n: Short week day name
#: js/messages.php:852
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
msgid "Sun"
msgstr "Sek"
@ -3119,8 +3102,6 @@ msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
#: js/messages.php:897
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Ne"
@ -3381,11 +3362,11 @@ msgstr "Negalėjo išsaugoti paskiausios lentelės"
#: libraries/classes/CentralColumns.php:628
msgid "YES"
msgstr ""
msgstr "Taip"
#: libraries/classes/CentralColumns.php:628
msgid "NO"
msgstr ""
msgstr "Ne"
#: libraries/classes/CentralColumns.php:776
#, fuzzy
@ -3456,14 +3437,10 @@ msgid "Charset"
msgstr "Koduotė"
#: libraries/classes/Charsets.php:312
#, fuzzy
#| msgid "unknown"
msgid "Unknown"
msgstr "nežinoma"
#: libraries/classes/Charsets.php:326
#, fuzzy
#| msgid "Binary"
msgctxt "Collation"
msgid "Binary"
msgstr "Dvejetainis"
@ -3490,8 +3467,6 @@ msgid "Central European"
msgstr "Centrinės Europos"
#: libraries/classes/Charsets.php:360
#, fuzzy
#| msgid "Russian"
msgctxt "Collation"
msgid "Russian"
msgstr "Rusų"
@ -3504,8 +3479,6 @@ msgid "Simplified Chinese"
msgstr "Supaprastinta kinų"
#: libraries/classes/Charsets.php:372 libraries/classes/Charsets.php:490
#, fuzzy
#| msgid "Japanese"
msgctxt "Collation"
msgid "Japanese"
msgstr "Japonų"
@ -3518,8 +3491,6 @@ msgid "Baltic"
msgstr "Baltų"
#: libraries/classes/Charsets.php:382
#, fuzzy
#| msgid "Armenian"
msgctxt "Collation"
msgid "Armenian"
msgstr "Armėnų"
@ -3539,22 +3510,16 @@ msgid "Cyrillic"
msgstr "Kirylica"
#: libraries/classes/Charsets.php:391
#, fuzzy
#| msgid "Arabic"
msgctxt "Collation"
msgid "Arabic"
msgstr "Arabų"
#: libraries/classes/Charsets.php:394 libraries/classes/Charsets.php:505
#, fuzzy
#| msgid "Korean"
msgctxt "Collation"
msgid "Korean"
msgstr "Korėjiečių"
#: libraries/classes/Charsets.php:397
#, fuzzy
#| msgid "Hebrew"
msgctxt "Collation"
msgid "Hebrew"
msgstr "Žydų"
@ -3567,8 +3532,6 @@ msgid "Georgian"
msgstr "Gruzinų"
#: libraries/classes/Charsets.php:403
#, fuzzy
#| msgid "Greek"
msgctxt "Collation"
msgid "Greek"
msgstr "Graikų"
@ -3581,43 +3544,31 @@ msgid "Czech-Slovak"
msgstr "Čekų-slovakų"
#: libraries/classes/Charsets.php:409 libraries/classes/Charsets.php:560
#, fuzzy
#| msgid "Ukrainian"
msgctxt "Collation"
msgid "Ukrainian"
msgstr "Ukrainiečių"
#: libraries/classes/Charsets.php:412 libraries/classes/Charsets.php:556
#, fuzzy
#| msgid "Turkish"
msgctxt "Collation"
msgid "Turkish"
msgstr "Turkų"
#: libraries/classes/Charsets.php:415 libraries/classes/Charsets.php:548
#, fuzzy
#| msgid "Swedish"
msgctxt "Collation"
msgid "Swedish"
msgstr "Švedų"
#: libraries/classes/Charsets.php:418 libraries/classes/Charsets.php:552
#, fuzzy
#| msgid "Thai"
msgctxt "Collation"
msgid "Thai"
msgstr "Tailando"
#: libraries/classes/Charsets.php:421
#, fuzzy
#| msgid "unknown"
msgctxt "Collation"
msgid "Unknown"
msgstr "nežinoma"
#: libraries/classes/Charsets.php:437
#, fuzzy
#| msgid "Bulgarian"
msgctxt "Collation"
msgid "Bulgarian"
msgstr "Bulgarų"
@ -3635,36 +3586,26 @@ msgid "Croatian"
msgstr "Kroatų"
#: libraries/classes/Charsets.php:451
#, fuzzy
#| msgid "Czech"
msgctxt "Collation"
msgid "Czech"
msgstr "Čekų"
#: libraries/classes/Charsets.php:455
#, fuzzy
#| msgid "Danish"
msgctxt "Collation"
msgid "Danish"
msgstr "Danų"
#: libraries/classes/Charsets.php:459
#, fuzzy
#| msgid "English"
msgctxt "Collation"
msgid "English"
msgstr "Anglų"
#: libraries/classes/Charsets.php:463
#, fuzzy
#| msgid "Esperanto"
msgctxt "Collation"
msgid "Esperanto"
msgstr "Esperanto"
#: libraries/classes/Charsets.php:467
#, fuzzy
#| msgid "Estonian"
msgctxt "Collation"
msgid "Estonian"
msgstr "Estų"
@ -3682,8 +3623,6 @@ msgid "German (phone book order)"
msgstr ""
#: libraries/classes/Charsets.php:482
#, fuzzy
#| msgid "Hungarian"
msgctxt "Collation"
msgid "Hungarian"
msgstr "Vengrų"
@ -3701,15 +3640,11 @@ msgid "Classical Latin"
msgstr ""
#: libraries/classes/Charsets.php:497
#, fuzzy
#| msgid "Latvian"
msgctxt "Collation"
msgid "Latvian"
msgstr "Latvių"
#: libraries/classes/Charsets.php:501
#, fuzzy
#| msgid "Lithuanian"
msgctxt "Collation"
msgid "Lithuanian"
msgstr "Lietuvių"
@ -3720,22 +3655,16 @@ msgid "Burmese"
msgstr ""
#: libraries/classes/Charsets.php:512
#, fuzzy
#| msgid "Persian"
msgctxt "Collation"
msgid "Persian"
msgstr "Persų"
#: libraries/classes/Charsets.php:516
#, fuzzy
#| msgid "Polish"
msgctxt "Collation"
msgid "Polish"
msgstr "Lenkų"
#: libraries/classes/Charsets.php:523
#, fuzzy
#| msgid "Romanian"
msgctxt "Collation"
msgid "Romanian"
msgstr "Rumunų"
@ -3746,15 +3675,11 @@ msgid "Sinhalese"
msgstr ""
#: libraries/classes/Charsets.php:531
#, fuzzy
#| msgid "Slovak"
msgctxt "Collation"
msgid "Slovak"
msgstr "Slovakų"
#: libraries/classes/Charsets.php:535
#, fuzzy
#| msgid "Slovenian"
msgctxt "Collation"
msgid "Slovenian"
msgstr "Slovėnų"
@ -3814,8 +3739,6 @@ msgid "multi-level"
msgstr "daugiakalbis"
#: libraries/classes/Charsets.php:647
#, fuzzy
#| msgid "Binary"
msgctxt "Collation variant"
msgid "binary"
msgstr "Dvejetainis"
@ -11201,8 +11124,6 @@ msgid "not OK"
msgstr "Negerai"
#: libraries/classes/Relation.php:111
#, fuzzy
#| msgid "OK"
msgctxt "Correctly working"
msgid "OK"
msgstr "Gerai"
@ -12093,8 +12014,6 @@ msgid "Trigger name"
msgstr ""
#: libraries/classes/Rte/Triggers.php:408
#, fuzzy
#| msgid "Time"
msgctxt "Trigger action time"
msgid "Time"
msgstr "Laikas"
@ -12527,8 +12446,6 @@ msgid "Global privileges"
msgstr "Globalios teisės"
#: libraries/classes/Server/Privileges.php:1165
#, fuzzy
#| msgid "global"
msgid "Global"
msgstr "globalus"
@ -14724,8 +14641,6 @@ msgstr "be PHP kodo"
#: libraries/classes/Util.php:1100
#: templates/database/multi_table_query/form.twig:161
#, fuzzy
#| msgid "Submit Query"
msgid "Submit query"
msgstr "Vykdyti užklausą"
@ -15493,8 +15408,6 @@ msgid "Author"
msgstr ""
#: templates/server/plugins/section.twig:23
#, fuzzy
#| msgid "Disabled"
msgid "disabled"
msgstr "Išjungta"
@ -15736,8 +15649,6 @@ msgid ""
msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių"
#: templates/table/secondary_tabs.twig:9
#, fuzzy
#| msgid "Relation view"
msgid "Relation view"
msgstr "Peržiūrėti sąryšius"
@ -16065,8 +15976,6 @@ msgid "+ Add column"
msgstr "Pridėti stulpelį"
#: templates/database/multi_table_query/form.twig:160
#, fuzzy
#| msgid "Update Query"
msgid "Update query"
msgstr "Atnaujinti užklausą"
@ -16086,8 +15995,6 @@ msgid "Server variables and settings"
msgstr "Serverio kintamieji ir nustatymai"
#: templates/server/sub_page_header.twig:2
#, fuzzy
#| msgid "Storage Engines"
msgid "Storage engines"
msgstr "Saugojimo varikliai"
@ -16238,8 +16145,6 @@ msgstr "Tęstį įterpimą su %s eilučių"
#: templates/table/tracking/structure_snapshot_columns.twig:5
#: templates/table/tracking/report_table.twig:4
#, fuzzy
#| msgid "#"
msgctxt "Number"
msgid "#"
msgstr "#"
@ -16452,14 +16357,10 @@ msgid "During current session"
msgstr "Praleisti šią klaidą"
#: templates/console/display.twig:64
#, fuzzy
#| msgid "Ascending"
msgid "ascending"
msgstr "Didėjimo tvarka"
#: templates/console/display.twig:64
#, fuzzy
#| msgid "Descending"
msgid "descending"
msgstr "Mažėjimo tvarka"
@ -17052,8 +16953,6 @@ msgid "Bar"
msgstr "Histograma"
#: templates/table/chart/tbl_chart.twig:19
#, fuzzy
#| msgid "Column"
msgctxt "Chart type"
msgid "Column"
msgstr "Stulpelis"
@ -18058,9 +17957,8 @@ msgid "The current query cache hit rate of %s%% is below 20%%"
msgstr "Rūšiavimo buferio dydis"
#: libraries/advisory_rules.txt:167
#, fuzzy
msgid "Query Cache usage"
msgstr "Užklausų saugykla"
msgstr "Užklausų pagreitinimo (kešo) naudojamumas"
#: libraries/advisory_rules.txt:170
#, php-format

View File

@ -6,8 +6,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 5.0.0-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2018-05-28 21:06-0300\n"
"PO-Revision-Date: 2016-05-24 05:48+0000\n"
"Last-Translator: GIMMY <thozhalay@gmail.com>\n"
"PO-Revision-Date: 2018-07-23 11:06+0000\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Malayalam <https://hosted.weblate.org/projects/phpmyadmin/"
"master/ml/>\n"
"Language: ml\n"
@ -15,7 +15,7 @@ msgstr ""
"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.7-dev\n"
"X-Generator: Weblate 3.1-dev\n"
#: ajax.php:22 ajax.php:51 export.php:206 libraries/classes/Export.php:1150
msgid "Bad type!"
@ -27,10 +27,11 @@ msgid ""
"The %s file is not available on this system, please visit %s for more "
"information."
msgstr ""
"%s ഫയൽ ഈ സിസ്റ്റത്തിൽ ലഭ്യമല്ല, അധികമറിയുന്നതിന് ദയവായി %s -ലേക്ക് പോവുക."
#: db_central_columns.php:130
msgid "The central list of columns for the current database is empty."
msgstr ""
msgstr "നിലവിലുള്ള ഡാറ്റാബേസിലെ കോളങ്ങളുടെ കേന്ദ്ര പട്ടിക ശൂന്യമാണ്."
#: db_central_columns.php:159
msgid "Click to sort."
@ -39,7 +40,7 @@ msgstr ""
#: db_central_columns.php:178
#, php-format
msgid "Showing rows %1$s - %2$s."
msgstr ""
msgstr "പ്രദർശിപ്പിച്ചിരിക്കുന്ന റോ-കൾ %1$s - %2$s."
#: db_datadict.php:64 libraries/classes/Operations.php:62
msgid "Database comment"
@ -184,7 +185,7 @@ msgstr "അഭിപ്രായങ്ങൾ"
#: templates/table/structure/display_structure.twig:61
#: templates/columns_definitions/column_indexes.twig:4
msgid "Primary"
msgstr ""
msgstr "പ്രാഥമികം"
#: db_datadict.php:169 js/messages.php:383
#: libraries/classes/Config/FormDisplayTemplate.php:283

View File

@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 5.0.0-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2018-05-28 21:06-0300\n"
"PO-Revision-Date: 2017-08-22 09:47+0000\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"PO-Revision-Date: 2018-07-27 08:19+0000\n"
"Last-Translator: ROYAL Randhawa <imroyalrandhawa@gmail.com>\n"
"Language-Team: Punjabi <https://hosted.weblate.org/projects/phpmyadmin/"
"master/pa/>\n"
"Language: pa\n"
@ -17,7 +17,7 @@ msgstr ""
"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.17-dev\n"
"X-Generator: Weblate 3.1-dev\n"
#: ajax.php:22 ajax.php:51 export.php:206 libraries/classes/Export.php:1150
msgid "Bad type!"
@ -312,6 +312,8 @@ msgstr "ਡਾਟਾਬੇਸ ਨਾਂ ਖਾਲੀ ਹੈ!"
#: db_operations.php:71
msgid "Cannot copy database to the same name. Change the name and try again."
msgstr ""
"ਇੱਕੋ ਨਾਮ ਦੇ ਡੇਟਾਬੇਸ ਨੂੰ ਕਾਪੀ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ, ਨਾਮ ਬਦਲੋ ਅਤੇ ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ "
"।"
#: db_operations.php:158
#, php-format
@ -425,9 +427,8 @@ msgstr "X"
#: gis_data_editor.php:224 gis_data_editor.php:252 gis_data_editor.php:308
#: gis_data_editor.php:383 js/messages.php:522
#, fuzzy
msgid "Y"
msgstr "Y"
msgstr ""
#: gis_data_editor.php:246 gis_data_editor.php:302 gis_data_editor.php:375
#: js/messages.php:524
@ -603,32 +604,37 @@ msgid ""
"However on last run no data has been parsed, this usually means phpMyAdmin "
"won't be able to finish this import unless you increase php time limits."
msgstr ""
"ਹਾਲਾਂਕਿ ਆਖਰੀ ਦੌਰੇ ਤੇ ਕੋਈ ਡਾਟਾ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਗਿਆ ਹੈ, ਇਸ ਦਾ ਆਮ ਤੌਰ ਤੇ ਮਤਲਬ ਹੈ "
"ਕਿ [ਪੀਐਚਪੀ ਮਾਈ ਐਡਮਿਨ] ਇਸ ਆਯਾਤ ਨੂੰ ਪੂਰਾ ਕਰਨ ਦੇ ਯੋਗ ਨਹੀਂ ਹੋਵੇਗਾ ਜਦੋਂ ਤੱਕ ਤੁਸੀਂ "
"[ਪੀਐਚਪੀ] ਸਮਾਂ ਸੀਮਾਵਾਂ ਵਧਾਉਂਦੇ ਨਹੀਂ ਹੋ ।"
#: import.php:709 sql.php:161
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
msgstr "\"ਡ੍ਰੌਪ ਡੈਟਾਬੈਏਸ\" ਬਿਆਨ ਅਸਮਰਥਿਤ ਹਨ ।"
#: import_status.php:108
msgid "Could not load the progress of the import."
msgstr ""
msgstr "ਆਯਾਤ ਦੀ ਪ੍ਰਗਤੀ ਲੋਡ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕਦੀ ।"
#: import_status.php:117 js/messages.php:461 js/messages.php:627
#: libraries/classes/Export.php:530
#: libraries/classes/Plugins/Schema/ExportRelationSchema.php:307
#: libraries/classes/UserPassword.php:263 libraries/classes/Util.php:667
msgid "Back"
msgstr ""
msgstr "ਪਿੱਛੇ"
#: index.php:140
msgid ""
"You were logged out from one server, to logout completely from phpMyAdmin, "
"you need to logout from all servers."
msgstr ""
"ਤੁਸੀਂ ਇਕ ਸਰਵਰ ਤੋਂ ਲਾਗਆਉਟ ਹੋਏ ਹੋ, ਸੰਪੂਰਨ ਰੂਪ ਤੋਂ ਲਾਗਆਉਟ ਹੋਣ ਲਈ ਤੁਹਾਨੂੰ ਸਾਰੇ "
"ਸਰਵਰਾਂ ਤੋਂ ਲਾਗਆਉਟ ਹੋਣਾ ਪਵੇਗਾ ।"
#: index.php:184 libraries/classes/Footer.php:83
#: libraries/classes/Plugins/Auth/AuthenticationCookie.php:116
msgid "phpMyAdmin Demo Server"
msgstr ""
msgstr "[ਪੀਐਚਪੀ ਮਾਈ ਐਡਮਿਨ] ਡੈਮੋ ਸਰਵਰ"
#: index.php:188 libraries/classes/Plugins/Auth/AuthenticationCookie.php:119
#, php-format
@ -640,64 +646,64 @@ msgstr ""
#: index.php:198
msgid "General settings"
msgstr ""
msgstr "ਜਨਰਲ ਸੈਟਿੰਗਜ਼"
#: index.php:227 js/messages.php:652
#: libraries/classes/Display/ChangePassword.php:61
#: libraries/classes/Display/ChangePassword.php:64
#: libraries/classes/UserPassword.php:257
msgid "Change password"
msgstr ""
msgstr "ਪਾਸਵਰਡ ਬਦਲੋ"
#: index.php:244 libraries/classes/Config/Descriptions.php:1488
msgid "Server connection collation"
msgstr ""
msgstr "ਸਰਵਰ ਤੋਂ ਰਾਬਤਾ ਦੀ ਸੋਧ"
#: index.php:267
msgid "Appearance settings"
msgstr ""
msgstr "ਦਿੱਖ ਸੈਟਿੰਗਜ਼"
#: index.php:297 prefs_manage.php:278
msgid "More settings"
msgstr ""
msgstr "ਹੋਰ ਸੈਟਿੰਗਜ਼"
#: index.php:319
msgid "Database server"
msgstr ""
msgstr "ਡਾਟਾਬੇਸ ਸਰਵਰ"
#: index.php:322 libraries/classes/Plugins/Auth/AuthenticationCookie.php:166
msgid "Server:"
msgstr ""
msgstr "ਸਰਵਰ:"
#: index.php:326
msgid "Server type:"
msgstr ""
msgstr "ਸਰਵਰ ਦੀ ਕਿਸਮ:"
#: index.php:330
msgid "Server connection:"
msgstr ""
msgstr "ਸਰਵਰ ਰਾਬਤਾ:"
#: index.php:334 libraries/classes/Plugins/Export/ExportLatex.php:225
#: libraries/classes/Plugins/Export/ExportSql.php:706
#: libraries/classes/Plugins/Export/ExportXml.php:248
msgid "Server version:"
msgstr ""
msgstr "ਸਰਵਰ ਪ੍ਰਤੀਰੂਪ:"
#: index.php:340
msgid "Protocol version:"
msgstr ""
msgstr "ਪ੍ਰੋਟੋਕੋਲ ਪ੍ਰਤੀਰੂਪ:"
#: index.php:344
msgid "User:"
msgstr ""
msgstr "ਉਪਭੋਗੀ:"
#: index.php:349
msgid "Server charset:"
msgstr ""
msgstr "ਸਰਵਰ ਚਾਰਸੈੱਟ:"
#: index.php:365
msgid "Web server"
msgstr ""
msgstr "ਵੈੱਬ ਸਰਵਰ"
#: index.php:376
msgid "Database client version:"

View File

@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 5.0.0-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2018-05-28 21:06-0300\n"
"PO-Revision-Date: 2018-02-27 21:31+0000\n"
"PO-Revision-Date: 2018-07-23 11:06+0000\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/phpmyadmin/master/"
"pl/>\n"
@ -14,7 +14,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 2.20-dev\n"
"X-Generator: Weblate 3.1-dev\n"
#: ajax.php:22 ajax.php:51 export.php:206 libraries/classes/Export.php:1150
msgid "Bad type!"
@ -3279,8 +3279,6 @@ msgid "Central European"
msgstr "Środkowoeuropejski"
#: libraries/classes/Charsets.php:360
#, fuzzy
#| msgid "Russian"
msgctxt "Collation"
msgid "Russian"
msgstr "Rosyjski"
@ -3303,8 +3301,6 @@ msgid "Baltic"
msgstr "Bałtycki"
#: libraries/classes/Charsets.php:382
#, fuzzy
#| msgid "Armenian"
msgctxt "Collation"
msgid "Armenian"
msgstr "Ormiański"
@ -3322,8 +3318,6 @@ msgid "Cyrillic"
msgstr "Cyrylica"
#: libraries/classes/Charsets.php:391
#, fuzzy
#| msgid "Arabic"
msgctxt "Collation"
msgid "Arabic"
msgstr "Arabski"
@ -3356,29 +3350,21 @@ msgid "Czech-Slovak"
msgstr "Czesko-słowacki"
#: libraries/classes/Charsets.php:409 libraries/classes/Charsets.php:560
#, fuzzy
#| msgid "Ukrainian"
msgctxt "Collation"
msgid "Ukrainian"
msgstr "Ukraiński"
#: libraries/classes/Charsets.php:412 libraries/classes/Charsets.php:556
#, fuzzy
#| msgid "Turkish"
msgctxt "Collation"
msgid "Turkish"
msgstr "Turecki"
#: libraries/classes/Charsets.php:415 libraries/classes/Charsets.php:548
#, fuzzy
#| msgid "Swedish"
msgctxt "Collation"
msgid "Swedish"
msgstr "Szwedzki"
#: libraries/classes/Charsets.php:418 libraries/classes/Charsets.php:552
#, fuzzy
#| msgid "Thai"
msgctxt "Collation"
msgid "Thai"
msgstr "Tajski"
@ -3389,8 +3375,6 @@ msgid "Unknown"
msgstr "Nieznany"
#: libraries/classes/Charsets.php:437
#, fuzzy
#| msgid "Bulgarian"
msgctxt "Collation"
msgid "Bulgarian"
msgstr "Bułgarski"
@ -3408,15 +3392,11 @@ msgid "Croatian"
msgstr "Chorwacki"
#: libraries/classes/Charsets.php:451
#, fuzzy
#| msgid "Czech"
msgctxt "Collation"
msgid "Czech"
msgstr "Czeski"
#: libraries/classes/Charsets.php:455
#, fuzzy
#| msgid "Danish"
msgctxt "Collation"
msgid "Danish"
msgstr "Duński"
@ -3447,8 +3427,6 @@ msgid "German (phone book order)"
msgstr "Język niemiecki (kolejność w telefonicznej książce adresowej)"
#: libraries/classes/Charsets.php:482
#, fuzzy
#| msgid "Hungarian"
msgctxt "Collation"
msgid "Hungarian"
msgstr "Węgierski"
@ -3491,8 +3469,6 @@ msgid "Polish"
msgstr "Polski"
#: libraries/classes/Charsets.php:523
#, fuzzy
#| msgid "Romanian"
msgctxt "Collation"
msgid "Romanian"
msgstr "Rumuński"
@ -3503,15 +3479,11 @@ msgid "Sinhalese"
msgstr "Cejloński"
#: libraries/classes/Charsets.php:531
#, fuzzy
#| msgid "Slovak"
msgctxt "Collation"
msgid "Slovak"
msgstr "Słowacki"
#: libraries/classes/Charsets.php:535
#, fuzzy
#| msgid "Slovenian"
msgctxt "Collation"
msgid "Slovenian"
msgstr "Słoweński"
@ -3557,8 +3529,6 @@ msgid "multi-level"
msgstr "wielopoziomowy"
#: libraries/classes/Charsets.php:647
#, fuzzy
#| msgid "Binary"
msgctxt "Collation variant"
msgid "binary"
msgstr "Binarne"
@ -7235,7 +7205,7 @@ msgstr "Serwer nie odpowiada."
#: libraries/classes/DatabaseInterface.php:2209
msgid "Logout and try as another user."
msgstr ""
msgstr "Wyloguj się i spróbuj jako inny użytkownik."
#: libraries/classes/DatabaseInterface.php:2215
msgid "Please check privileges of directory containing database."
@ -10381,7 +10351,7 @@ msgstr "Zarejestruj się na uwierzytelnianiu"
#: libraries/classes/Plugins/TwoFactor/Simple.php:66
msgid "For testing purposes only!"
msgstr ""
msgstr "Tylko do celów testowych!"
#: libraries/classes/Plugins/TwoFactorPlugin.php:74
#, fuzzy, php-format
@ -15215,8 +15185,6 @@ msgid "+ Add column"
msgstr "Dodaj kolumnę"
#: templates/database/multi_table_query/form.twig:160
#, fuzzy
#| msgid "Update Query"
msgid "Update query"
msgstr "Zaktualizuj zapytanie"
@ -15234,8 +15202,6 @@ msgid "Server variables and settings"
msgstr "Zmienne i ustawienia serwera"
#: templates/server/sub_page_header.twig:2
#, fuzzy
#| msgid "Storage Engines"
msgid "Storage engines"
msgstr "Mechanizmy składowania"
@ -15371,8 +15337,6 @@ msgstr "Kontynuuj wstawianie %s wierszy"
#: templates/table/tracking/structure_snapshot_columns.twig:5
#: templates/table/tracking/report_table.twig:4
#, fuzzy
#| msgid "#"
msgctxt "Number"
msgid "#"
msgstr "#"
@ -16209,7 +16173,7 @@ msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin"
#: templates/prefs_twofactor.twig:33
msgid "You have enabled two factor authentication."
msgstr ""
msgstr "Aktywowałeś podwójną weryfikację."
#: templates/table/browse_foreigners/column_element.twig:4
msgid "Use this value"

View File

@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 5.0.0-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2018-05-28 21:06-0300\n"
"PO-Revision-Date: 2018-03-18 15:40+0000\n"
"Last-Translator: Nuno Marques <nunosil@gmail.com>\n"
"PO-Revision-Date: 2018-07-23 10:52+0000\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Portuguese <https://hosted.weblate.org/projects/phpmyadmin/"
"master/pt/>\n"
"Language: pt\n"
@ -13,7 +13,7 @@ msgstr ""
"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.20-dev\n"
"X-Generator: Weblate 3.1-dev\n"
#: ajax.php:22 ajax.php:51 export.php:206 libraries/classes/Export.php:1150
msgid "Bad type!"
@ -3679,10 +3679,8 @@ msgstr ""
"CodeMirror seja ativado."
#: libraries/classes/Config/Descriptions.php:129
#, fuzzy
#| msgid "Enable SQL Validator"
msgid "Enable linter"
msgstr "Activar SQL Validator"
msgstr "Activar Validador de SQL"
#: libraries/classes/Config/Descriptions.php:132
msgid ""
@ -3806,10 +3804,8 @@ msgid "Whether the table structure actions should be hidden."
msgstr "Se as acções da estrutura da tabela devem ser escondidas."
#: libraries/classes/Config/Descriptions.php:191
#, fuzzy
#| msgid "Table comments"
msgid "Show column comments"
msgstr "Comentários da tabela"
msgstr "Mostrar comentários da coluna"
#: libraries/classes/Config/Descriptions.php:193
msgid "Whether column comments should be shown in table structure view"
@ -3840,54 +3836,41 @@ msgid ""
"Values for options list for default transformations. These will be "
"overwritten if transformation is filled in at table structure page."
msgstr ""
"Valores para a lista de opções de transformações padrão. Estas serão "
"substituídas se a transformação for preenchida na pagina da estrutura da "
"tabela."
#: libraries/classes/Config/Descriptions.php:201
#, fuzzy
#| msgid "Transformation options"
msgid "Default transformations for Substring"
msgstr "Opções de tranformação"
msgstr "Transformações para Substrings padrão"
#: libraries/classes/Config/Descriptions.php:205
#, fuzzy
#| msgid "Default sorting order"
msgid "Default transformations for Bool2Text"
msgstr "Ordenação padrão"
msgstr "Transformações para Bool2Text padrão"
#: libraries/classes/Config/Descriptions.php:209
#, fuzzy
#| msgid "Default sorting order"
msgid "Default transformations for External"
msgstr "Ordenação padrão"
msgstr "Transformações para External padrão"
#: libraries/classes/Config/Descriptions.php:213
#, fuzzy
#| msgid "Transformation options"
msgid "Default transformations for PreApPend"
msgstr "Opções de tranformação"
msgstr "Transformações para PreApPend padrão"
#: libraries/classes/Config/Descriptions.php:217
#, fuzzy
#| msgid "Default sorting order"
msgid "Default transformations for DateFormat"
msgstr "Ordenação padrão"
msgstr "Transformações para DateFormat padrão"
#: libraries/classes/Config/Descriptions.php:221
#, fuzzy
#| msgid "Transformation options"
msgid "Default transformations for Inline"
msgstr "Opções de tranformação"
msgstr "Transformações para Inline padrão"
#: libraries/classes/Config/Descriptions.php:225
#, fuzzy
#| msgid "Transformation options"
msgid "Default transformations for TextImageLink"
msgstr "Opções de tranformação"
msgstr "Transformações para TextImageLink padrão"
#: libraries/classes/Config/Descriptions.php:229
#, fuzzy
#| msgid "Transformation options"
msgid "Default transformations for TextLink"
msgstr "Opções de tranformação"
msgstr "Transformações para TextLink padrão"
#: libraries/classes/Config/Descriptions.php:234
msgid "Show server listing as a list instead of a drop down."
@ -3924,10 +3907,9 @@ msgstr "Tempo máximo de execução"
#: libraries/classes/Config/Descriptions.php:253
#: templates/display/export/options_output.twig:17
#, fuzzy, php-format
#| msgid "Statements"
#, php-format
msgid "Use %s statement"
msgstr "Itens"
msgstr "Use a instrução %s"
#: libraries/classes/Config/Descriptions.php:256 prefs_manage.php:311
msgid "Save as file"
@ -4070,8 +4052,6 @@ msgstr "Tipo MIME"
#: libraries/classes/Config/Descriptions.php:316
#: libraries/classes/Config/Descriptions.php:340
#: libraries/classes/Config/Descriptions.php:405
#, fuzzy
#| msgid "Relations"
msgid "Relationships"
msgstr "Relações"
@ -4092,10 +4072,8 @@ msgid "Overwrite existing file(s)"
msgstr "Substituir o(s) ficheiro(s) existente(s)"
#: libraries/classes/Config/Descriptions.php:348
#, fuzzy
#| msgid "horizontal (rotated headers)"
msgid "Export as separate files"
msgstr "horizontal (cabeçalhos rodados)"
msgstr "Exportar como ficheiros separados"
#: libraries/classes/Config/Descriptions.php:354
msgid "Remember file name template"
@ -7061,7 +7039,7 @@ msgstr "Único"
#: libraries/classes/Controllers/Table/TableStructureController.php:1240
#: templates/columns_definitions/column_indexes.twig:20
msgid "Spatial"
msgstr ""
msgstr "Espacial"
#: libraries/classes/Controllers/Table/TableStructureController.php:1236
#: libraries/classes/Controllers/Table/TableStructureController.php:1241
@ -9683,10 +9661,8 @@ msgstr "Data de Criação"
#: libraries/classes/Plugins/Export/ExportLatex.php:226
#: libraries/classes/Plugins/Export/ExportSql.php:708
#: libraries/classes/Plugins/Export/ExportXml.php:249
#, fuzzy
#| msgid "PHP Version"
msgid "PHP Version:"
msgstr "versão do PHP"
msgstr "versão do PHP:"
#: libraries/classes/Plugins/Export/ExportLatex.php:256
#: libraries/classes/Plugins/Export/ExportSql.php:897
@ -10506,8 +10482,6 @@ msgid "not OK"
msgstr "não está OK"
#: libraries/classes/Relation.php:111
#, fuzzy
#| msgid "OK"
msgctxt "Correctly working"
msgid "OK"
msgstr "OK"
@ -11103,8 +11077,6 @@ msgid "Start"
msgstr "Estado"
#: libraries/classes/Rte/Events.php:538
#, fuzzy
#| msgid "End"
msgctxt "End of recurring event"
msgid "End"
msgstr "Fim"
@ -11354,8 +11326,6 @@ msgid "Trigger name"
msgstr "Nome do Utilizador"
#: libraries/classes/Rte/Triggers.php:408
#, fuzzy
#| msgid "Time"
msgctxt "Trigger action time"
msgid "Time"
msgstr "Tempo"
@ -11777,8 +11747,6 @@ msgid "Global privileges"
msgstr "Privilégios Globais"
#: libraries/classes/Server/Privileges.php:1165
#, fuzzy
#| msgid "global"
msgid "Global"
msgstr "global"
@ -14722,8 +14690,6 @@ msgid "Input transformation"
msgstr "Transformação do navegador"
#: transformation_overview.php:58
#, fuzzy
#| msgid "Description"
msgctxt "for MIME transformation"
msgid "Description"
msgstr "Descrição"
@ -14782,8 +14748,6 @@ msgid "Author"
msgstr "Autor"
#: templates/server/plugins/section.twig:23
#, fuzzy
#| msgid "Disabled"
msgid "disabled"
msgstr "Desactidado"
@ -15086,8 +15050,6 @@ msgid "Inside column:"
msgstr "Dentro da coluna:"
#: templates/columns_definitions/column_default.twig:3
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Nenhum"
@ -15341,8 +15303,6 @@ msgid "+ Add column"
msgstr "Adiciona novo campo"
#: templates/database/multi_table_query/form.twig:160
#, fuzzy
#| msgid "Update Query"
msgid "Update query"
msgstr "Atualizar consulta"
@ -15517,8 +15477,6 @@ msgstr ""
#: templates/table/tracking/structure_snapshot_columns.twig:47
#: templates/table/structure/table_structure_row.twig:34
#, fuzzy
#| msgid "None"
msgctxt "None for default"
msgid "None"
msgstr "Nenhum"
@ -15708,14 +15666,10 @@ msgid "During current session"
msgstr "Durante a sessão atual"
#: templates/console/display.twig:64
#, fuzzy
#| msgid "Ascending"
msgid "ascending"
msgstr "Ascendente"
#: templates/console/display.twig:64
#, fuzzy
#| msgid "Descending"
msgid "descending"
msgstr "Descendente"
@ -16310,8 +16264,6 @@ msgid "Bar"
msgstr "Mar"
#: templates/table/chart/tbl_chart.twig:19
#, fuzzy
#| msgid "Column"
msgctxt "Chart type"
msgid "Column"
msgstr "Coluna"
@ -16904,8 +16856,6 @@ msgstr ""
#: templates/privileges/column_privileges.twig:21
#: templates/privileges/column_privileges.twig:22
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Nenhum"
@ -17280,9 +17230,8 @@ msgid "The current query cache hit rate of %s%% is below 20%%"
msgstr ""
#: libraries/advisory_rules.txt:167
#, fuzzy
msgid "Query Cache usage"
msgstr "Tipo de Query"
msgstr "Utilização da cache de comandos"
#: libraries/advisory_rules.txt:170
#, php-format

6661
po/ro.po

File diff suppressed because it is too large Load Diff

View File

@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 5.0.0-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2018-05-28 21:06-0300\n"
"PO-Revision-Date: 2018-04-16 18:41+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"PO-Revision-Date: 2018-07-27 08:20+0000\n"
"Last-Translator: Wolterhon <hotmottot.1@gmail.com>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/phpmyadmin/"
"master/ru/>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 3.0-dev\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<="
"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 3.1-dev\n"
#: ajax.php:22 ajax.php:51 export.php:206 libraries/classes/Export.php:1150
msgid "Bad type!"
@ -4786,7 +4786,7 @@ msgstr "Отображать логотип в панели навигации."
#: libraries/classes/Config/Descriptions.php:784
msgid "Display logo"
msgstr "Выводить логотип"
msgstr "Показывать логотип"
#: libraries/classes/Config/Descriptions.php:786
msgid "URL where logo in the navigation panel will point to."
@ -4794,7 +4794,7 @@ msgstr "URL, на который будет ссылаться логотип в
#: libraries/classes/Config/Descriptions.php:788
msgid "Logo link URL"
msgstr "URL ссылка логотипа"
msgstr "Ссылка логотипа"
#: libraries/classes/Config/Descriptions.php:791
msgid ""
@ -15357,7 +15357,7 @@ msgstr "Сделать закладку общедоступной"
#: templates/console/display.twig:140
msgid "Set default"
msgstr "Установить изначальное значение"
msgstr "Сбросить настройки"
#: templates/console/display.twig:162
msgid ""

View File

@ -7,22 +7,20 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 5.0.0-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2018-05-28 21:06-0300\n"
"PO-Revision-Date: 2015-10-15 11:03+0200\n"
"PO-Revision-Date: 2018-07-23 11:06+0000\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Uighur <https://hosted.weblate.org/projects/phpmyadmin/master/"
"Language-Team: Uyghur <https://hosted.weblate.org/projects/phpmyadmin/master/"
"ug/>\n"
"Language: ug\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 2.5-dev\n"
"X-Generator: Weblate 3.1-dev\n"
#: ajax.php:22 ajax.php:51 export.php:206 libraries/classes/Export.php:1150
#, fuzzy
#| msgid "Bar type"
msgid "Bad type!"
msgstr "چىقىرىش"
msgstr "بوزۇق تىپ!"
#: changelog.php:41 license.php:36
#, php-format
@ -345,10 +343,8 @@ msgstr ""
"%sبۇ يەرنى كۆرۈڭ%s."
#: db_qbe.php:134
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to choose at least one column to display!"
msgstr "بۇنى بىجىرىش ئۈچۈن مەزمۇن تاللانغان بولۇشى كېرەك"
msgstr "ئەڭ ئاز بىرقۇرنى كۆرسىتىشكە تاللىشىڭىز كېرەك!"
#: db_qbe.php:152
#, php-format
@ -360,7 +356,7 @@ msgstr ""
#: libraries/classes/Plugins/Auth/AuthenticationHttp.php:86
#: libraries/classes/Plugins/AuthenticationPlugin.php:186
msgid "Access denied!"
msgstr "رەت قىلىندى"
msgstr "زىيارەت رەت قىلىندى!"
#: db_tracking.php:59 db_tracking.php:84
#, fuzzy
@ -3805,7 +3801,7 @@ msgstr ""
#: libraries/classes/Config/Descriptions.php:66
msgid "Allow login to any MySQL server"
msgstr ""
msgstr "ھەرقانداق MySQL مۇلازىمىتىرىگە كىرىشكە قوشۇل"
#: libraries/classes/Config/Descriptions.php:69
msgid ""
@ -3815,10 +3811,8 @@ msgid ""
msgstr ""
#: libraries/classes/Config/Descriptions.php:74
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Restrict login to MySQL server"
msgstr "MySQL مۇلازىمىتېرىغا ئۇلىنالمىدى."
msgstr "MySQL مۇلازىمىتېرىغا كىرىشنى چەكلە."
#: libraries/classes/Config/Descriptions.php:77
msgid ""

View File

@ -11,9 +11,7 @@
<td class="var-name">
{% if doc_link != null %}
<span title="{{ name|replace({'_': ' '}) }}">
{{ Util_showMySQLDocu(doc_link[1], false, doc_link[2] ~ '_' ~ doc_link[0], true) }}
{{ name|e|replace({'_': '&nbsp;'})|raw }}
</a>
{{ doc_link|raw }}
</span>
{% else %}
{{ name|replace({'_': ' '}) }}

View File

@ -19,3 +19,4 @@
<div id="structure_content">
{% block content %}
{% endblock %}
</div>

View File

@ -151,16 +151,36 @@
{% set unique_columns = table_obj.getUniqueColumns(false, false) %}
{% endif %}
{% include 'table/relation/internal_relational_row.twig' with {
'myfield': myfield,
'myfield_md5': myfield_md5,
'databases': databases,
'tables': tables,
'columns': unique_columns,
'foreign_db': foreign_db,
'foreign_table': foreign_table,
'foreign_column': foreign_column
} only %}
<tr>
<td class="vmiddle">
<strong>{{ myfield }}</strong>
<input type="hidden" name="fields_name[{{ myfield_md5 }}]"
value="{{ myfield }}"/>
</td>
<td>
{% include 'table/relation/relational_dropdown.twig' with {
'name': 'destination_db[' ~ myfield_md5 ~ ']',
'title': 'Database'|trans,
'values': databases,
'foreign': foreign_db
} only %}
{% include 'table/relation/relational_dropdown.twig' with {
'name': 'destination_table[' ~ myfield_md5 ~ ']',
'title': 'Table'|trans,
'values': tables,
'foreign': foreign_table
} only %}
{% include 'table/relation/relational_dropdown.twig' with {
'name': 'destination_column[' ~ myfield_md5 ~ ']',
'title': 'Column'|trans,
'values': unique_columns,
'foreign': foreign_column
} only %}
</td>
</tr>
{% endfor %}
</table>
</fieldset>
@ -192,4 +212,7 @@
<input type="submit" value="{% trans 'Save' %}" />
</fieldset>
</form>
{% if foreignKeySupported %}
{{ displayIndexesHtml|raw }}
{% endif %}
{% endblock %}

View File

@ -1,30 +0,0 @@
<tr>
<td class="vmiddle">
<strong>{{ myfield }}</strong>
<input type="hidden" name="fields_name[{{ myfield_md5 }}]"
value="{{ myfield }}"/>
</td>
<td>
{% include 'table/relation/relational_dropdown.twig' with {
'name': 'destination_db[' ~ myfield_md5 ~ ']',
'title': 'Database'|trans,
'values': databases,
'foreign': foreign_db
} only %}
{% include 'table/relation/relational_dropdown.twig' with {
'name': 'destination_table[' ~ myfield_md5 ~ ']',
'title': 'Table'|trans,
'values': tables,
'foreign': foreign_table
} only %}
{% include 'table/relation/relational_dropdown.twig' with {
'name': 'destination_column[' ~ myfield_md5 ~ ']',
'title': 'Column'|trans,
'values': columns,
'foreign': foreign_column
} only %}
</td>
</tr>

View File

@ -1,5 +1,3 @@
{% extends 'table/page_with_secondary_tabs.twig' %}
{% block content %}
<div id="tablestatistics">
<fieldset>
<legend>{% trans 'Information' %}</legend>
@ -168,4 +166,3 @@
</table>
</fieldset>
</div>
{% endblock %}

View File

@ -17,6 +17,8 @@ use PhpMyAdmin\Tests\Stubs\Response as ResponseStub;
use PhpMyAdmin\Url;
use PhpMyAdmin\Util;
use ReflectionClass;
use Williamdes\MariaDBMySQLKBS\Search as KBSearch;
use Williamdes\MariaDBMySQLKBS\SlimData as KBSlimData;
/**
* Tests for ServerVariablesController class
@ -122,13 +124,16 @@ class ServerVariablesControllerTest extends PmaTestCase
);
$ctrl = $container->get('ServerVariablesController');
//Call the test function
$name_for_value_byte = "binlog_cache_size";
$name_for_value_not_byte = "auto_increment_increment";
$name_for_value_not_num = "PMA_key";
$nameForValueByte = "byte_variable";
$nameForValueNotByte = "not_a_byte_variable";
$slimData = new KBSlimData();
$slimData->addVariable($nameForValueByte, "byte", null);
$slimData->addVariable($nameForValueNotByte, "string", null);
KBSearch::loadTestData($slimData);
//name is_numeric and the value type is byte
$args = [$name_for_value_byte, "3"];
$args = [$nameForValueByte, "3"];
list($formattedValue, $isHtmlFormatted) = $method->invokeArgs($ctrl, $args);
$this->assertEquals(
'<abbr title="3">3 B</abbr>',
@ -137,7 +142,7 @@ class ServerVariablesControllerTest extends PmaTestCase
$this->assertEquals(true, $isHtmlFormatted);
//name is_numeric and the value type is not byte
$args = [$name_for_value_not_byte, "3"];
$args = [$nameForValueNotByte, "3"];
list($formattedValue, $isHtmlFormatted) = $method->invokeArgs($ctrl, $args);
$this->assertEquals(
'3',
@ -146,7 +151,7 @@ class ServerVariablesControllerTest extends PmaTestCase
$this->assertEquals(false, $isHtmlFormatted);
//value is not a number
$args = [$name_for_value_not_byte, "value"];
$args = [$nameForValueNotByte, "value"];
list($formattedValue, $isHtmlFormatted) = $method->invokeArgs($ctrl, $args);
$this->assertEquals(
'value',