Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2013-02-03 14:16:19 +01:00
commit 7336505248
8 changed files with 37 additions and 9 deletions

View File

@ -381,7 +381,7 @@ class PMA_StorageEngine
/**
* returns string with filename for the MySQL helppage
* about this storage engne
* about this storage engine
*
* @return string mysql helppage filename
*/

View File

@ -71,7 +71,7 @@ class PMA_StorageEngine_bdb extends PMA_StorageEngine
/**
* returns string with filename for the MySQL helppage
* about this storage engne
* about this storage engine
*
* @return string mysql helppage filename
*/

View File

@ -15,7 +15,7 @@ class PMA_StorageEngine_binlog extends PMA_StorageEngine
{
/**
* returns string with filename for the MySQL helppage
* about this storage engne
* about this storage engine
*
* @return string mysql helppage filename
*/

View File

@ -347,13 +347,13 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine
/**
* returns string with filename for the MySQL helppage
* about this storage engne
* about this storage engine
*
* @return string mysql helppage filename
*/
function getMysqlHelpPage()
{
return 'innodb';
return 'innodb-storage-engine';
}
/**

View File

@ -20,13 +20,13 @@ class PMA_StorageEngine_mrg_myisam extends PMA_StorageEngine_merge
{
/**
* returns string with filename for the MySQL helppage
* about this storage engne
* about this storage engine
*
* @return string mysql helppage filename
*/
function getMysqlHelpPage()
{
return 'merge';
return 'merge-storage-engine';
}
}

View File

@ -0,0 +1,28 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* @package PhpMyAdmin-Engines
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
*
* @package PhpMyAdmin-Engines
*/
class PMA_StorageEngine_performance_schema extends PMA_StorageEngine
{
/**
* returns string with filename for the MySQL helppage
* about this storage engine
*
* @return string mysql helppage filename
*/
function getMysqlHelpPage()
{
return 'performance-schema';
}
}
?>

View File

@ -299,7 +299,7 @@ class PMA_StorageEngine_innodb_test extends PHPUnit_Framework_TestCase
public function testGetMysqlHelpPage()
{
$this->assertEquals(
'innodb',
'innodb-storage-engine',
$this->object->getMysqlHelpPage()
);

View File

@ -52,7 +52,7 @@ class PMA_StorageEngine_mrg_myisam_test extends PHPUnit_Framework_TestCase
{
$this->assertEquals(
$this->object->getMysqlHelpPage(),
'merge'
'merge-storage-engine'
);
}