Use up to date links to bugs and feature requests
This commit is contained in:
parent
bd3351611f
commit
57a97a7057
@ -13,8 +13,8 @@
|
||||
}
|
||||
],
|
||||
"support": {
|
||||
"forum": "https://sourceforge.net/projects/phpmyadmin/forums/forum/72909",
|
||||
"issues": "https://sourceforge.net/tracker/?atid=377408&group_id=23067&func=browse",
|
||||
"forum": "https://sourceforge.net/p/phpmyadmin/discussion/Help",
|
||||
"issues": "https://sourceforge.net/p/phpmyadmin/bugs/",
|
||||
"wiki": "http://wiki.phpmyadmin.net/",
|
||||
"source": "https://github.com/phpmyadmin/phpmyadmin"
|
||||
},
|
||||
|
||||
@ -45,9 +45,8 @@ Basic settings
|
||||
|
||||
Starting with version 2.3.0, it is advisable to try leaving this blank. In
|
||||
most cases phpMyAdmin automatically detects the proper setting. Users of
|
||||
port forwarding will need to set PmaAbsoluteUri (`more info
|
||||
<https://sourceforge.net/tracker/index.php?func=detail&aid
|
||||
=1340187&group_id=23067&atid=377409>`_).
|
||||
port forwarding will need to set :config:option:`$cfg['PmaAbsoluteUri']`
|
||||
(`more info <https://sourceforge.net/p/phpmyadmin/support-requests/795/>`_).
|
||||
|
||||
A good test is to browse a table, edit a row and save it. There should be
|
||||
an error message if phpMyAdmin is having trouble auto–detecting the correct
|
||||
|
||||
@ -917,8 +917,7 @@ quote-character (") is interpreted as an identifier quote character and not as
|
||||
a string quote character, which makes many internal phpMyAdmin operations into
|
||||
invalid :term:`SQL` statements. There is no
|
||||
workaround to this behaviour. News to this item will be posted in `Bug report
|
||||
#816858
|
||||
<https://sourceforge.net/tracker/index.php?func=detail&aid=816858&group_id=23067&atid=377408>`_
|
||||
#1013 <https://sourceforge.net/p/phpmyadmin/bugs/1013/>`_
|
||||
|
||||
.. _faq3_10:
|
||||
|
||||
|
||||
@ -1282,8 +1282,6 @@ class PMA_Config
|
||||
// We used to display a warning if PmaAbsoluteUri wasn't set, but now
|
||||
// the autodetect code works well enough that we don't display the
|
||||
// warning at all. The user can still set PmaAbsoluteUri manually.
|
||||
// See
|
||||
// http://sf.net/tracker/?func=detail&aid=1257134&group_id=23067&atid=377411
|
||||
|
||||
} else {
|
||||
// The URI is specified, however users do often specify this
|
||||
|
||||
@ -2060,8 +2060,7 @@ class PMA_Util
|
||||
* Takes a string and outputs each character on a line for itself. Used
|
||||
* mainly for horizontalflipped display mode.
|
||||
* Takes care of special html-characters.
|
||||
* Fulfills todo-item
|
||||
* http://sf.net/tracker/?func=detail&aid=544361&group_id=23067&atid=377411
|
||||
* Fulfills https://sourceforge.net/p/phpmyadmin/feature-requests/164/
|
||||
*
|
||||
* @param string $string The string
|
||||
* @param string $Separator The Separator (defaults to "<br />\n")
|
||||
@ -2355,7 +2354,7 @@ class PMA_Util
|
||||
/* IE (before version 9) has trouble with <button> */
|
||||
if (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER < 9) {
|
||||
return '<input type="image" name="' . $image_name
|
||||
. '" class="' . $button_class
|
||||
. '" class="' . $button_class
|
||||
. '" value="' . htmlspecialchars($value)
|
||||
. '" title="' . htmlspecialchars($text)
|
||||
. '" src="' . $GLOBALS['pmaThemeImage']. $image . '" />'
|
||||
|
||||
@ -430,7 +430,7 @@ $cfg['Servers'][$i]['AllowDeny']['rules'] = array();
|
||||
/**
|
||||
* Disable use of INFORMATION_SCHEMA. Is always 'false' for Drizzle.
|
||||
*
|
||||
* @see http://sf.net/support/tracker.php?aid=1849494
|
||||
* @see https://sourceforge.net/p/phpmyadmin/bugs/2606/
|
||||
* @see http://bugs.mysql.com/19588
|
||||
* @global boolean $cfg['Servers'][$i]['DisableIS']
|
||||
*/
|
||||
@ -844,7 +844,7 @@ $cfg['NavigationLogoLink'] = 'index.php';
|
||||
$cfg['NavigationLogoLinkWindow'] = 'main';
|
||||
|
||||
/**
|
||||
* number of recently used tables displayed in the navigation panel
|
||||
* number of recently used tables displayed in the navigation panel
|
||||
*
|
||||
* @global integer $cfg['NumRecentTables']
|
||||
*/
|
||||
|
||||
@ -388,7 +388,7 @@ $strConfigServers_CountTables_desc = __('Count tables when showing database list
|
||||
$strConfigServers_CountTables_name = __('Count tables');
|
||||
$strConfigServers_designer_coords_desc = __('Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/kbd]');
|
||||
$strConfigServers_designer_coords_name = __('Designer table');
|
||||
$strConfigServers_DisableIS_desc = __('More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]');
|
||||
$strConfigServers_DisableIS_desc = __('More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]');
|
||||
$strConfigServers_DisableIS_name = __('Disable use of INFORMATION_SCHEMA');
|
||||
$strConfigServers_extension_desc = __('What PHP extension to use; you should use mysqli if supported');
|
||||
$strConfigServers_extension_name = __('PHP extension to use');
|
||||
|
||||
@ -771,8 +771,8 @@ function PMA_DBI_get_tables_full($database, $table = false,
|
||||
// MySQL returns
|
||||
// with SHOW DATABASES or information_schema.SCHEMATA: `Test`
|
||||
// but information_schema.TABLES gives `test`
|
||||
// bug #1436171
|
||||
// http://sf.net/support/tracker.php?aid=1436171
|
||||
// bug #2036
|
||||
// https://sourceforge.net/p/phpmyadmin/bugs/2036/
|
||||
return $tables[strtolower($database)];
|
||||
} else {
|
||||
// one database but inexact letter case match
|
||||
|
||||
@ -591,7 +591,7 @@ function PMA_DBI_get_fields_meta($result)
|
||||
// MySQL returns MYSQLI_TYPE_STRING for CHAR
|
||||
// and MYSQLI_TYPE_CHAR === MYSQLI_TYPE_TINY
|
||||
// so this would override TINYINT and mark all TINYINT as string
|
||||
// https://sf.net/tracker/?func=detail&aid=1532111&group_id=23067&atid=377408
|
||||
// https://sourceforge.net/p/phpmyadmin/bugs/2205/
|
||||
//$typeAr[MYSQLI_TYPE_CHAR] = 'string';
|
||||
$typeAr[MYSQLI_TYPE_GEOMETRY] = 'geometry';
|
||||
$typeAr[MYSQLI_TYPE_BIT] = 'bit';
|
||||
|
||||
@ -2751,8 +2751,9 @@ function PMA_updatePrivileges($username, $hostname, $tablename, $dbname)
|
||||
$sql_query2 .= ';';
|
||||
}
|
||||
if (! PMA_DBI_try_query($sql_query0)) {
|
||||
// This might fail when the executing user does not have ALL PRIVILEGES himself.
|
||||
// See https://sourceforge.net/tracker/index.php?func=detail&aid=3285929&group_id=23067&atid=377408
|
||||
// This might fail when the executing user does not have
|
||||
// ALL PRIVILEGES himself.
|
||||
// See https://sourceforge.net/p/phpmyadmin/bugs/3270/
|
||||
$sql_query0 = '';
|
||||
}
|
||||
if (isset($sql_query1) && ! PMA_DBI_try_query($sql_query1)) {
|
||||
|
||||
2
po/af.po
2
po/af.po
@ -5628,7 +5628,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/ar.po
2
po/ar.po
@ -5382,7 +5382,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/az.po
2
po/az.po
@ -5703,7 +5703,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/be.po
2
po/be.po
@ -5828,7 +5828,7 @@ msgstr "Дэфрагмэнтаваць табліцу"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -5815,7 +5815,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
po/bg.po
4
po/bg.po
@ -5435,10 +5435,10 @@ msgstr "Таблица за Дизайнера"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Допълнителна информация в [a@http://sf.net/support/tracker.php?aid=1849494]"
|
||||
"Допълнителна информация в [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
|
||||
"системата за проследяване на дефекти на PMA[/a] и [a@http://bugs.mysql."
|
||||
"com/19588]дефекти на MySQL[/a]"
|
||||
|
||||
|
||||
2
po/bn.po
2
po/bn.po
@ -5683,7 +5683,7 @@ msgstr "Defragment table"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/br.po
2
po/br.po
@ -5516,7 +5516,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/bs.po
2
po/bs.po
@ -5697,7 +5697,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
po/ca.po
4
po/ca.po
@ -5597,10 +5597,10 @@ msgstr "Taula del dissenyador"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Més informació a [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"Més informació a [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] i [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
@ -5298,7 +5298,7 @@ msgstr "شێوەسازی خشتە"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
po/cs.po
4
po/cs.po
@ -5503,10 +5503,10 @@ msgstr "Tabulka návrháře"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Více informací v [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"Více informací v [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"trackeru[/a] a [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
2
po/cy.po
2
po/cy.po
@ -5672,7 +5672,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
po/da.po
4
po/da.po
@ -5549,10 +5549,10 @@ msgstr "Designer tabel"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Mere information om [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"Mere information om [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] og [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
4
po/de.po
4
po/de.po
@ -5599,10 +5599,10 @@ msgstr "Designer Coords Table"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Mehr Informationen auf [a@http://sf.net/support/tracker.php?aid=1849494]PMA "
|
||||
"Mehr Informationen auf [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
|
||||
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
5
po/el.po
5
po/el.po
@ -5586,11 +5586,10 @@ msgstr "Πίνακας σχεδιαστή"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Περισσότερες πληροφορίες στο [a@http://sf.net/support/tracker.php?"
|
||||
"aid=1849494]PMA bug tracker[/a] και στο [a@http://bugs.mysql.com/19588]MySQL "
|
||||
"Περισσότερες πληροφορίες στο [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug tracker[/a] και στο [a@http://bugs.mysql.com/19588]MySQL "
|
||||
"Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
@ -5511,10 +5511,10 @@ msgstr "Designer table"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
4
po/es.po
4
po/es.po
@ -5615,10 +5615,10 @@ msgstr "Tabla del diseñador"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Más información en [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"Más información en [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] y [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
4
po/et.po
4
po/et.po
@ -5583,10 +5583,10 @@ msgstr "Kujundaja tabel"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Rohkem infot aadressilt [a@http://sf.net/support/tracker.php?aid=1849494]PMA "
|
||||
"Rohkem infot aadressilt [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
|
||||
"bug tracker[/a] ja [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
2
po/eu.po
2
po/eu.po
@ -5664,7 +5664,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/fa.po
2
po/fa.po
@ -5434,7 +5434,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
po/fi.po
4
po/fi.po
@ -5554,10 +5554,10 @@ msgstr "Suunnittelija-taulu"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Lisätietoja [a@http://sf.net/support/tracker.php?aid=1849494]PMA:n "
|
||||
"Lisätietoja [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA:n "
|
||||
"virheenjäljittimestä[/a] ja [a@http://bugs.mysql.com/19588]MySQL:n "
|
||||
"ohjelmavirheistä[/a]"
|
||||
|
||||
|
||||
4
po/fr.po
4
po/fr.po
@ -5577,10 +5577,10 @@ msgstr "Table pour la fonctionnalité Concepteur"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Voir [a@http://sf.net/support/tracker.php?aid=1849494]ce bogue phpMyAdmin[/"
|
||||
"Voir [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]ce bogue phpMyAdmin[/"
|
||||
"a] et [a@http://bugs.mysql.com/19588]ce bogue MySQL[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
4
po/gl.po
4
po/gl.po
@ -5642,11 +5642,11 @@ msgstr "Táboa do Designer"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Máis información no "
|
||||
"[a@http://sf.net/support/tracker.php?aid=1849494]Seguidor de erros de "
|
||||
"[a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]Seguidor de erros de "
|
||||
"PMA[/a] e en [a@http://bugs.mysql.com/19588]Erros do MySQL[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
2
po/he.po
2
po/he.po
@ -5662,7 +5662,7 @@ msgstr "איחוי טבלה"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/hi.po
2
po/hi.po
@ -5632,7 +5632,7 @@ msgstr "डिजाइनर टेबल"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/hr.po
2
po/hr.po
@ -5821,7 +5821,7 @@ msgstr "Defragmentiraj tablicu"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
po/hu.po
4
po/hu.po
@ -5520,10 +5520,10 @@ msgstr "Tervező tábla"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Bővebben a [a@http://sf.net/support/tracker.php?aid=1849494]PMA hibakövetőben"
|
||||
"Bővebben a [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA hibakövetőben"
|
||||
"[/a] és a [a@http://bugs.mysql.com/19588]MySQL hibabejelentőben[/a] olvashat "
|
||||
"róla"
|
||||
|
||||
|
||||
2
po/hy.po
2
po/hy.po
@ -5259,7 +5259,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/id.po
2
po/id.po
@ -5517,7 +5517,7 @@ msgstr "Tabel desainer"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
po/it.po
4
po/it.po
@ -5580,10 +5580,10 @@ msgstr "Tabella di design assistito"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Maggiori informazioni su [a@http://sf.net/support/tracker.php?aid=1849494]"
|
||||
"Maggiori informazioni su [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
|
||||
"PMA bug tracker[/a] e [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
4
po/ja.po
4
po/ja.po
@ -5567,10 +5567,10 @@ msgstr "デザイナテーブル"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"詳細は [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug tracker[/a] "
|
||||
"詳細は [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug tracker[/a] "
|
||||
"と [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]。"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
2
po/ka.po
2
po/ka.po
@ -5806,7 +5806,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/kk.po
2
po/kk.po
@ -5300,7 +5300,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/ko.po
2
po/ko.po
@ -5412,7 +5412,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
po/lt.po
4
po/lt.po
@ -5582,10 +5582,10 @@ msgstr "Suprojektuoti lentelę"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Daugiau informacijos [a@http://sf.net/support/tracker.php?aid=1849494]PMA[/"
|
||||
"Daugiau informacijos [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA[/"
|
||||
"a] ir [a@http://bugs.mysql.com/19588]MySQL[/a] klaidų puslapiuose"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
2
po/lv.po
2
po/lv.po
@ -5611,7 +5611,7 @@ msgstr "Defragmentēt tabulu"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/mk.po
2
po/mk.po
@ -5742,7 +5742,7 @@ msgstr "Дефрагментирај ја табелата"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/ml.po
2
po/ml.po
@ -5271,7 +5271,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/mn.po
2
po/mn.po
@ -5741,7 +5741,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/ms.po
2
po/ms.po
@ -5651,7 +5651,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
po/nb.po
4
po/nb.po
@ -5567,10 +5567,10 @@ msgstr "Designertabell"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Mer informasjon på [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"Mer informasjon på [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] og [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
4
po/nl.po
4
po/nl.po
@ -5574,10 +5574,10 @@ msgstr "Designer tabel"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Zie voor meer informatie: [a@http://sf.net/support/tracker.php?aid=1849494]"
|
||||
"Zie voor meer informatie: [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
|
||||
"PMA-bugtracker[/a] en [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
2
po/pa.po
2
po/pa.po
@ -5261,7 +5261,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -5258,7 +5258,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
5
po/pl.po
5
po/pl.po
@ -5629,11 +5629,10 @@ msgstr "Tabela trybu projektowania"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Więcej informacji jest dostępnych pod adresem: [a@http://sf.net/support/"
|
||||
"tracker.php?aid=1849494]PMA bug tracker[/a] i [a@http://bugs.mysql.com/19588]"
|
||||
"Więcej informacji jest dostępnych pod adresem: [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug tracker[/a] i [a@http://bugs.mysql.com/19588]"
|
||||
"MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
4
po/pt.po
4
po/pt.po
@ -5571,10 +5571,10 @@ msgstr "Tabela de Designer"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Mais informações em [a@http://sf.net/support/tracker.php?aid=1849494]PMA "
|
||||
"Mais informações em [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
|
||||
"rastreador de bug [/a] e [a@http://bugs.mysql.com/19588]Bugs MySQL[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
@ -5536,10 +5536,10 @@ msgstr "tabela de Desenho"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Mais informações em [a@http://sf.net/support/tracker.php?aid=1849494]PMA "
|
||||
"Mais informações em [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
|
||||
"rastreador de bug [/a] e [a@http://bugs.mysql.com/19588]Bugs MySQL[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
4
po/ro.po
4
po/ro.po
@ -5819,10 +5819,10 @@ msgstr "Tabelul designeri"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Mai multe informații pe [a@http://sf.net/support/tracker.php?aid=1849494]PMA "
|
||||
"Mai multe informații pe [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
|
||||
"bug tracker[/a] și pe [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
4
po/ru.po
4
po/ru.po
@ -5575,10 +5575,10 @@ msgstr "Таблица Дизайнера"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Подробнее смотрите на [a@http://sf.net/support/tracker.php?aid=1849494]PMA "
|
||||
"Подробнее смотрите на [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
|
||||
"bug tracker[/a] и [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
2
po/si.po
2
po/si.po
@ -5433,7 +5433,7 @@ msgstr "සැලසුම්කරණ වගුව"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
po/sk.po
4
po/sk.po
@ -5507,10 +5507,10 @@ msgstr "Tabuľka návrhára"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Viac informácii na [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"Viac informácii na [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] a [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
4
po/sl.po
4
po/sl.po
@ -5559,10 +5559,10 @@ msgstr "Tabela Oblikovalnika"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Več informacij na [a@http://sf.net/support/tracker.php?aid=1849494]"
|
||||
"Več informacij na [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
|
||||
"sledilniku hroščev PMA[/a] in[a@http://bugs.mysql.com/19588]hroščih MySQL[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
2
po/sq.po
2
po/sq.po
@ -5480,7 +5480,7 @@ msgstr "Defragmento tabelën"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/sr.po
2
po/sr.po
@ -5802,7 +5802,7 @@ msgstr "Дефрагментирај табелу"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -5504,7 +5504,7 @@ msgstr "Dizajn tabela"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
po/sv.po
4
po/sv.po
@ -5521,10 +5521,10 @@ msgstr "Tabell för Designer"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Mer information på [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"Mer information på [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] och [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
2
po/ta.po
2
po/ta.po
@ -5391,7 +5391,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/te.po
2
po/te.po
@ -5513,7 +5513,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/th.po
2
po/th.po
@ -5495,7 +5495,7 @@ msgstr "จัดระเบียบตาราง"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/tk.po
2
po/tk.po
@ -5268,7 +5268,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
po/tr.po
4
po/tr.po
@ -5550,10 +5550,10 @@ msgstr "Tasarımcı tablosu"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"[a@http://sf.net/support/tracker.php?aid=1849494]PMA hata izleyici[/a] ve "
|
||||
"[a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA hata izleyici[/a] ve "
|
||||
"[a@http://bugs.mysql.com/19588]MySQL Hataları[/a] üzerine daha fazla bilgi"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
2
po/tt.po
2
po/tt.po
@ -5756,7 +5756,7 @@ msgstr "Tüşämä kisäklären berläşterü"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2
po/ug.po
2
po/ug.po
@ -5565,7 +5565,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
po/uk.po
4
po/uk.po
@ -5563,10 +5563,10 @@ msgstr "Таблиця дизайнера"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Детальніше дивіться на [a@http://sf.net/support/tracker.php?aid=1849494]PMA "
|
||||
"Детальніше дивіться на [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
|
||||
"bug tracker[/a] та [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
4
po/ur.po
4
po/ur.po
@ -5687,10 +5687,10 @@ msgstr "ڈیزائنر جدول"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"مزید معلومات یہاں موجود ہے [a@http://sf.net/support/tracker.php?aid=1849494]"
|
||||
"مزید معلومات یہاں موجود ہے [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
|
||||
"PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL نقائص[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
4
po/uz.po
4
po/uz.po
@ -5991,10 +5991,10 @@ msgstr "Дизайнер жадвали"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Кўпроқ маълумот учун [a@http://sf.net/support/tracker.php?aid=1849494]\"PMA "
|
||||
"Кўпроқ маълумот учун [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]\"PMA "
|
||||
"bug tracker\"[/a] ва [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]ларга "
|
||||
"қаранг"
|
||||
|
||||
|
||||
@ -6029,11 +6029,11 @@ msgstr "Dizayner jadvali"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?"
|
||||
"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql."
|
||||
"Ko‘proq ma`lumot uchun [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
|
||||
"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql."
|
||||
"com/19588]\"MySQL Bugs\"[/a]larga qarang"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
@ -5441,10 +5441,10 @@ msgstr "设计表"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"参见 [a@http://sf.net/support/tracker.php?aid=1849494]PMA 缺陷 (bug) 跟踪系"
|
||||
"参见 [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA 缺陷 (bug) 跟踪系"
|
||||
"统 (外链,英文)[/a] 和 [a@http://bugs.mysql.com/19588]MySQL 缺陷 (Bugs) (外"
|
||||
"链,英文)[/a]"
|
||||
|
||||
|
||||
@ -5473,10 +5473,10 @@ msgstr "設計表"
|
||||
|
||||
#: libraries/config/messages.inc.php:391
|
||||
msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"參見 [a@http://sf.net/support/tracker.php?aid=1849494]PMA 缺陷 (bug) 跟蹤係"
|
||||
"參見 [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA 缺陷 (bug) 跟蹤係"
|
||||
"統 [/a] 和 [a@http://bugs.mysql.com/19588]MySQL 缺陷 (Bugs) (外鏈,英文)[/a]"
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
|
||||
4
sql.php
4
sql.php
@ -714,8 +714,8 @@ if (isset($GLOBALS['show_as_php']) || ! empty($GLOBALS['validatequery'])) {
|
||||
// This could happen if the user sends a query like "USE `database`;"
|
||||
/**
|
||||
* commented out auto-switching to active database - really required?
|
||||
* bug #1814718 win: table list disappears (mixed case db names)
|
||||
* https://sourceforge.net/support/tracker.php?aid=1814718
|
||||
* bug #2558 win: table list disappears (mixed case db names)
|
||||
* https://sourceforge.net/p/phpmyadmin/bugs/2558/
|
||||
* @todo RELEASE test and comit or rollback before release
|
||||
$current_db = PMA_DBI_fetch_value('SELECT DATABASE()');
|
||||
if ($db !== $current_db) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user