mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 05:48:51 +00:00
Merge branch 'develop-ascraeus' into develop
# By Crizzo # Via Crizzo (1) and Dhruv Goel (1) * develop-ascraeus: [ticket/12563] Adds « and » to the links in acp_styles.php [ticket/12563] Removes ending . from <a> [ticket/12563] Removes strintf in acp_styles.php and shorts up <a> [ticket/12563] Changes 2 language variables to better understandable names
This commit is contained in:
commit
6be8c98296
2 changed files with 4 additions and 4 deletions
|
@ -209,8 +209,8 @@ class acp_styles
|
|||
trigger_error($this->user->lang['NO_MATCHING_STYLES_FOUND'] . adm_back_link($this->u_action), E_USER_WARNING);
|
||||
}
|
||||
$message = implode('<br />', $messages);
|
||||
$message .= '<br /><br />' . sprintf($this->user->lang['STYLE_INSTALLED_RETURN_STYLES'], $this->u_base_action . '&mode=style');
|
||||
$message .= '<br /><br />' . sprintf($this->user->lang['STYLE_INSTALLED_RETURN_UNINSTALLED'], $this->u_base_action . '&mode=install');
|
||||
$message .= '<br /><br /><a href="' . $this->u_base_action . '&mode=style' . '">« ' . $this->user->lang('STYLE_INSTALLED_RETURN_INSTALLED_STYLES') . '</a>';
|
||||
$message .= '<br /><br /><a href="' . $this->u_base_action . '&mode=install' . '">» ' . $this->user->lang('STYLE_INSTALLED_RETURN_UNINSTALLED_STYLES') . '</a>';
|
||||
trigger_error($message, E_USER_NOTICE);
|
||||
}
|
||||
|
||||
|
|
|
@ -71,8 +71,8 @@ $lang = array_merge($lang, array(
|
|||
'STYLE_ERR_NAME_EXIST' => 'A style with that name already exists.',
|
||||
'STYLE_ERR_STYLE_NAME' => 'You must supply a name for this style.',
|
||||
'STYLE_INSTALLED' => 'Style "%s" has been installed.',
|
||||
'STYLE_INSTALLED_RETURN_STYLES' => '<a href="%s">Click here</a> to return to installed styles list.',
|
||||
'STYLE_INSTALLED_RETURN_UNINSTALLED' => '<a href="%s">Click here</a> to install more styles.',
|
||||
'STYLE_INSTALLED_RETURN_INSTALLED_STYLES' => 'Return to installed styles list',
|
||||
'STYLE_INSTALLED_RETURN_UNINSTALLED_STYLES' => 'Install more styles',
|
||||
'STYLE_NAME' => 'Style name',
|
||||
'STYLE_NOT_INSTALLED' => 'Style "%s" was not installed.',
|
||||
'STYLE_PATH' => 'Style path',
|
||||
|
|
Loading…
Add table
Reference in a new issue