patch #2794819 [navi] Filter for displayed table names
This commit is contained in:
@@ -6,6 +6,8 @@ $Id$
|
||||
$HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/ChangeLog $
|
||||
|
||||
3.3.0.0 (not yet released)
|
||||
+ patch #2794819 [navi] Filter for displayed table names,
|
||||
thanks to Michael Valushko - dylfin
|
||||
|
||||
3.2.0.0 (not yet released)
|
||||
- [core] better support for vendor customisation (based on what Debian needs)
|
||||
|
@@ -137,3 +137,38 @@ function PMA_setCookie(name, value, expires, path, domain, secure) {
|
||||
( (domain) ? ";domain=" + domain : "") +
|
||||
( (secure) ? ";secure" : "");
|
||||
}
|
||||
|
||||
/**
|
||||
* hide all LI elements with second A tag which doesn`t contain requested value
|
||||
*
|
||||
* @param string value requested value
|
||||
*
|
||||
*/
|
||||
function fast_filter(value){
|
||||
var oTarget = document.getElementById("subel0");
|
||||
if(!oTarget || !document.getElementById('fast_filter')) return false;
|
||||
if(value!=document.getElementById('fast_filter').value) return false;
|
||||
document.getElementById('fast_filter').disabled=true;
|
||||
for(var iCh in oTarget.childNodes){
|
||||
var oCh = oTarget.childNodes.item(iCh);
|
||||
if(!oCh) continue;
|
||||
if(oCh.nodeName=="LI"){
|
||||
if(value=="") oCh.style.display="";
|
||||
else{
|
||||
var i=0;
|
||||
for(var iA in oCh.childNodes){
|
||||
var oA = oCh.childNodes.item(iA);
|
||||
if(!oA) continue;
|
||||
if(oA.nodeName=="A"){
|
||||
if(i==0) i = 1;
|
||||
else{
|
||||
if(oA.innerHTML.indexOf(value)==-1) oCh.style.display="none";
|
||||
else oCh.style.display="";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
document.getElementById('fast_filter').disabled=false;
|
||||
}
|
@@ -1485,4 +1485,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1484,4 +1484,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1486,4 +1486,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1481,4 +1481,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1460,4 +1460,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1478,4 +1478,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1460,4 +1460,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1468,4 +1468,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1484,4 +1484,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1458,4 +1458,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1481,4 +1481,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1458,4 +1458,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1468,4 +1468,6 @@ $strYes = '是';
|
||||
$strZeroRemovesTheLimit = '注意:若将这些选项设为 0(零) 即不限制。';
|
||||
$strZip = 'zip 压缩';
|
||||
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1465,4 +1465,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1462,4 +1462,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1466,4 +1466,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1460,4 +1460,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1465,4 +1465,6 @@ $strYes = 'Ja';
|
||||
$strZeroRemovesTheLimit = 'Opmerking: Het instellen van deze waarden op 0 (nul) verwijdert de limiet.';
|
||||
$strZip = '"Gezipt"';
|
||||
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -513,6 +513,8 @@ $strMySQLSaid = 'MySQL said: ';
|
||||
$strMySQLShowProcess = 'Show processes';
|
||||
|
||||
$strName = 'Name';
|
||||
$strNavTableFilter = 'Filter';
|
||||
$strNavTableFilterReset = 'Reset filter';
|
||||
$strNext = 'Next';
|
||||
$strNoActivity = 'No activity within %s seconds; please log in again';
|
||||
$strNoDatabases = 'No databases';
|
||||
|
@@ -1466,4 +1466,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1461,4 +1461,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1457,4 +1457,6 @@ $strYes = 'Oui';
|
||||
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.';
|
||||
$strZip = '"zippé"';
|
||||
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1459,4 +1459,6 @@ $strReplicationStatus = 'Estado da replicación';
|
||||
$strReplicationStatusInfo = 'Este servidor de MySQL server funciona como %s en proceso de <b>replicación</b>. Para máis información acerca do estado de replicación do servidor visite a <a href="#replication">sección sobre replicación</a>.';
|
||||
$strReplicationStatus_master = 'Estado do mestre';
|
||||
$strReplicationStatus_slave = 'Estado do escravo';
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1465,4 +1465,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1479,4 +1479,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1483,4 +1483,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1478,4 +1478,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1486,4 +1486,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1463,4 +1463,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1476,4 +1476,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1465,4 +1465,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1466,4 +1466,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1481,4 +1481,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1483,4 +1483,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1475,4 +1475,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1461,4 +1461,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1498,4 +1498,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1481,4 +1481,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1458,4 +1458,6 @@ $strYes = 'Ja';
|
||||
$strZeroRemovesTheLimit = 'Merk: Ved å sette disse til 0 (null) fjernes begrensningen.';
|
||||
$strZip = 'Komprimert (zip)';
|
||||
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1512,4 +1512,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1454,4 +1454,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1487,4 +1487,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1467,4 +1467,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -493,6 +493,8 @@ $strMysqlLibDiffersServerVersion = 'Версия клиентской библи
|
||||
$strMySQLSaid = 'Ответ MySQL: ';
|
||||
$strMySQLShowProcess = 'Список процессов';
|
||||
|
||||
$strNavTableFilter = 'Фильтр';
|
||||
$strNavTableFilterReset = 'Сбросить фильтр';
|
||||
$strName = 'Имя';
|
||||
$strNext = 'Следующий';
|
||||
$strNoActivity = 'Отсутствие активности более %s секунд, пожалуйста, авторизуйтесь заново';
|
||||
|
@@ -1460,4 +1460,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1460,4 +1460,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1463,4 +1463,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1461,4 +1461,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1480,4 +1480,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1458,4 +1458,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1458,4 +1458,6 @@ $strYes = 'Ja';
|
||||
$strZeroRemovesTheLimit = 'Anm: Genom att sätta dessa alternativ till 0 (noll) tas begränsningarna bort.';
|
||||
$strZip = '"zippad"';
|
||||
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1471,4 +1471,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1482,4 +1482,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1464,4 +1464,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -1480,4 +1480,6 @@ $strReplicationStatus = 'Replication status'; //to translate
|
||||
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.'; //to translate
|
||||
$strReplicationStatus_master = 'Master status'; //to translate
|
||||
$strReplicationStatus_slave = 'Slave status'; //to translate
|
||||
$strNavTableFilter = 'Filter'; //to translate
|
||||
$strNavTableFilterReset = 'Reset filter'; //to translate
|
||||
?>
|
||||
|
@@ -14,6 +14,8 @@
|
||||
* @uses $GLOBALS['text_dir']
|
||||
* @uses $GLOBALS['charset']
|
||||
* @uses $GLOBALS['pmaThemeImage']
|
||||
* @uses $GLOBALS['strNavTableFilter']
|
||||
* @uses $GLOBALS['strNavTableFilterReset']
|
||||
* @uses $GLOBALS['strNoDatabases']
|
||||
* @uses $GLOBALS['strDatabase']
|
||||
* @uses $GLOBALS['strGo']
|
||||
@@ -296,6 +298,9 @@ if ($GLOBALS['cfg']['LeftFrameLight'] && strlen($GLOBALS['db'])) {
|
||||
echo ' <bdo dir="ltr">(' . $table_count . ')</bdo> ';
|
||||
}
|
||||
echo '</a></p>';
|
||||
if ($table_count) {
|
||||
echo '<span id=\'NavFilter\' style="display:none"><input type="text" name="fast_filter" id="fast_filter" title="' . $strNavTableFilter . '" onkeyup="setTimeout(function(word){ return function(){ fast_filter(word);}}(this.value),1000);"/><span onclick="document.getElementById(\'fast_filter\').value=\'\'; fast_filter(\'\');document.getElementById(\'fast_filter\').focus();" style="background:white;color:black;cursor:pointer;padding:2px;" title="' . $strNavTableFilterReset . '">X</span></span><script type="text/javascript">document.getElementById(\'NavFilter\').style.display=\'\';</script>';
|
||||
}
|
||||
|
||||
/**
|
||||
* This helps reducing the navi panel size; in the right panel,
|
||||
|
Reference in New Issue
Block a user