Merge branch 'master' of github.com:phpmyadmin/phpmyadmin
This commit is contained in:
commit
e4b14c2de3
@ -647,8 +647,8 @@ if (file_exists('libraries/language_stats.inc.php')) {
|
||||
) {
|
||||
trigger_error(
|
||||
'You are using an incomplete translation, please help to make it '
|
||||
. 'better by [a@https://www.phpmyadmin.net/contribute/'
|
||||
. '#translate@_blank]contributing[/a].',
|
||||
. 'better by [a@https://www.phpmyadmin.net/translate/'
|
||||
. '@_blank]contributing[/a].',
|
||||
E_USER_NOTICE
|
||||
);
|
||||
}
|
||||
|
||||
@ -564,7 +564,7 @@ class PMA_Menu
|
||||
if (($is_superuser || $isCreateOrGrantUser) && ! PMA_DRIZZLE) {
|
||||
$tabs['rights']['icon'] = 's_rights.png';
|
||||
$tabs['rights']['link'] = 'server_privileges.php';
|
||||
$tabs['rights']['text'] = __('Users');
|
||||
$tabs['rights']['text'] = __('User accounts');
|
||||
$tabs['rights']['active'] = in_array(
|
||||
basename($GLOBALS['PMA_PHP_SELF']),
|
||||
array('server_privileges.php', 'server_user_groups.php')
|
||||
|
||||
@ -1930,7 +1930,7 @@ function PMA_getWithClauseForAddUserAndUpdatePrivs()
|
||||
function PMA_getHtmlForAddUser($dbname)
|
||||
{
|
||||
$html_output = '<h2>' . "\n"
|
||||
. PMA_Util::getIcon('b_usradd.png') . __('Add user') . "\n"
|
||||
. PMA_Util::getIcon('b_usradd.png') . __('Add user account') . "\n"
|
||||
. '</h2>' . "\n"
|
||||
. '<form name="usersForm" id="addUsersForm"'
|
||||
. ' onsubmit="return checkAddUser(this);"'
|
||||
@ -1939,7 +1939,7 @@ function PMA_getHtmlForAddUser($dbname)
|
||||
. PMA_getHtmlForLoginInformationFields('new');
|
||||
|
||||
$html_output .= '<fieldset id="fieldset_add_user_database">' . "\n"
|
||||
. '<legend>' . __('Database for user') . '</legend>' . "\n";
|
||||
. '<legend>' . __('Database for user account') . '</legend>' . "\n";
|
||||
|
||||
$html_output .= PMA_Util::getCheckbox(
|
||||
'createdb-1',
|
||||
@ -2725,13 +2725,13 @@ function PMA_getChangeLoginInformationHtmlForm($username, $hostname)
|
||||
. 'value="' . htmlspecialchars($hostname) . '" />' . "\n"
|
||||
. '<fieldset id="fieldset_change_copy_user">' . "\n"
|
||||
. '<legend data-submenu-label="' . __('Login Information') . '">' . "\n"
|
||||
. __('Change Login Information / Copy User')
|
||||
. __('Change login information / Copy user account')
|
||||
. '</legend>' . "\n"
|
||||
. PMA_getHtmlForLoginInformationFields('change');
|
||||
|
||||
$html_output .= '<fieldset id="fieldset_mode">' . "\n"
|
||||
. ' <legend>'
|
||||
. __('Create a new user with the same privileges and …')
|
||||
. __('Create a new user account with the same privileges and …')
|
||||
. '</legend>' . "\n";
|
||||
$html_output .= PMA_Util::getRadioFields(
|
||||
'mode', $choices, '4', true
|
||||
@ -3367,7 +3367,7 @@ function PMA_getFieldsetForAddDeleteUser()
|
||||
$html_output .= '<fieldset id="fieldset_delete_user">'
|
||||
. '<legend>' . "\n"
|
||||
. PMA_Util::getIcon('b_usrdrop.png')
|
||||
. ' ' . __('Remove selected users') . '' . "\n"
|
||||
. ' ' . __('Remove selected user accounts') . '' . "\n"
|
||||
. '</legend>' . "\n";
|
||||
|
||||
$html_output .= '<input type="hidden" name="mode" value="2" />' . "\n"
|
||||
@ -4060,7 +4060,7 @@ function PMA_getAddUserHtmlFieldset($db = '', $table = '')
|
||||
: '')
|
||||
. '>' . "\n"
|
||||
. PMA_Util::getIcon('b_usradd.png')
|
||||
. ' ' . __('Add user') . '</a>' . "\n"
|
||||
. ' ' . __('Add user account') . '</a>' . "\n"
|
||||
. '</fieldset>' . "\n";
|
||||
}
|
||||
|
||||
@ -4081,8 +4081,8 @@ function PMA_getHtmlHeaderForUserProperties(
|
||||
) {
|
||||
$html_output = '<h2>' . "\n"
|
||||
. PMA_Util::getIcon('b_usredit.png')
|
||||
. __('Edit Privileges:') . ' '
|
||||
. __('User');
|
||||
. __('Edit privileges:') . ' '
|
||||
. __('User account');
|
||||
|
||||
if (! empty($dbname)) {
|
||||
$html_output .= ' <i><a class="edit_user_anchor"'
|
||||
@ -4161,7 +4161,7 @@ function PMA_getHtmlForUserOverview($pmaThemeImage, $text_dir)
|
||||
{
|
||||
$html_output = '<h2>' . "\n"
|
||||
. PMA_Util::getIcon('b_usrlist.png')
|
||||
. __('Users overview') . "\n"
|
||||
. __('User accounts overview') . "\n"
|
||||
. '</h2>' . "\n";
|
||||
|
||||
$password_column = 'Password';
|
||||
|
||||
@ -22,7 +22,7 @@ function PMA_getHtmlForSubMenusOnUsersPage($selfUrl)
|
||||
$url_params = PMA_URL_getCommon();
|
||||
$items = array(
|
||||
array(
|
||||
'name' => __('Users overview'),
|
||||
'name' => __('User accounts overview'),
|
||||
'url' => 'server_privileges.php',
|
||||
'specific_params' => '&viewing_mode=server'
|
||||
)
|
||||
@ -55,4 +55,4 @@ function PMA_getHtmlForSubMenusOnUsersPage($selfUrl)
|
||||
|
||||
return $retval;
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
||||
2559
po/be@latin.po
2559
po/be@latin.po
File diff suppressed because it is too large
Load Diff
2565
po/en_GB.po
2565
po/en_GB.po
File diff suppressed because it is too large
Load Diff
2525
po/phpmyadmin.pot
2525
po/phpmyadmin.pot
File diff suppressed because it is too large
Load Diff
2558
po/pt_BR.po
2558
po/pt_BR.po
File diff suppressed because it is too large
Load Diff
2558
po/sr@latin.po
2558
po/sr@latin.po
File diff suppressed because it is too large
Load Diff
2559
po/uz@latin.po
2559
po/uz@latin.po
File diff suppressed because it is too large
Load Diff
2558
po/zh_CN.po
2558
po/zh_CN.po
File diff suppressed because it is too large
Load Diff
2617
po/zh_TW.po
2617
po/zh_TW.po
File diff suppressed because it is too large
Load Diff
@ -1647,7 +1647,7 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase
|
||||
|
||||
//Create a new user with the same privileges
|
||||
$this->assertContains(
|
||||
"Create a new user with the same privileges",
|
||||
"Create a new user account with the same privileges",
|
||||
$html
|
||||
);
|
||||
|
||||
@ -1835,11 +1835,11 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase
|
||||
|
||||
//labels
|
||||
$this->assertContains(
|
||||
__('Add user'),
|
||||
__('Add user account'),
|
||||
$html
|
||||
);
|
||||
$this->assertContains(
|
||||
__('Remove selected users'),
|
||||
__('Remove selected user accounts'),
|
||||
$html
|
||||
);
|
||||
$this->assertContains(
|
||||
@ -1934,11 +1934,11 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase
|
||||
|
||||
//title
|
||||
$this->assertContains(
|
||||
__('Edit Privileges:'),
|
||||
__('Edit privileges:'),
|
||||
$html
|
||||
);
|
||||
$this->assertContains(
|
||||
__('User'),
|
||||
__('User account'),
|
||||
$html
|
||||
);
|
||||
|
||||
|
||||
@ -44,7 +44,7 @@ class PMA_ServerUsers_Test extends PHPUnit_Framework_TestCase
|
||||
$html
|
||||
);
|
||||
$this->assertContains(
|
||||
__('Users overview'),
|
||||
__('User accounts overview'),
|
||||
$html
|
||||
);
|
||||
|
||||
@ -59,4 +59,4 @@ class PMA_ServerUsers_Test extends PHPUnit_Framework_TestCase
|
||||
);
|
||||
}
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user