mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Missed string
git-svn-id: file:///svn/phpbb/trunk@3839 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
42b50a5d0f
commit
9f8bc2a0df
2 changed files with 2 additions and 1 deletions
|
@ -830,7 +830,7 @@ if (in_array($submit, array('add_options', 'edit_options', 'presetsave', 'preset
|
||||||
// Should we display a dropdown for views?
|
// Should we display a dropdown for views?
|
||||||
if (in_array($mode, array('admin', 'supermod', 'mod')))
|
if (in_array($mode, array('admin', 'supermod', 'mod')))
|
||||||
{
|
{
|
||||||
$view_options .= '<option value="">Select view</option>';
|
$view_options .= '<option value="">' . $user->lang['SELECT_VIEW'] . '</option>';
|
||||||
$view_ary = array(
|
$view_ary = array(
|
||||||
'admin' => array('admin' => 'a_', 'forum' => 'a_auth', 'supermod' => 'a_authmods', 'mod' => 'a_authmods'),
|
'admin' => array('admin' => 'a_', 'forum' => 'a_auth', 'supermod' => 'a_authmods', 'mod' => 'a_authmods'),
|
||||||
'supermod' => array('supermod' => 'a_authmods', 'mod' => 'a_authmods', 'forum' => 'a_auth'),
|
'supermod' => array('supermod' => 'a_authmods', 'mod' => 'a_authmods', 'forum' => 'a_auth'),
|
||||||
|
|
|
@ -248,6 +248,7 @@ $lang = array_merge($lang, array(
|
||||||
'ALL_IGNORE' => 'All Ignore',
|
'ALL_IGNORE' => 'All Ignore',
|
||||||
'USER_PRESETS' => 'User presets',
|
'USER_PRESETS' => 'User presets',
|
||||||
'FROM_PARENT' => 'From Parent',
|
'FROM_PARENT' => 'From Parent',
|
||||||
|
'SELECT_VIEW' => 'Select view',
|
||||||
'ACL_SUBFORUMS' => 'Assign to sub-forums',
|
'ACL_SUBFORUMS' => 'Assign to sub-forums',
|
||||||
'ACL_SUBFORUMS_EXPLAIN' => 'Select the subforums (if any) you want to inherit these permissions',
|
'ACL_SUBFORUMS_EXPLAIN' => 'Select the subforums (if any) you want to inherit these permissions',
|
||||||
'PRESETS_EXPLAIN' => 'To update or delete an existing preset select it from the list.',
|
'PRESETS_EXPLAIN' => 'To update or delete an existing preset select it from the list.',
|
||||||
|
|
Loading…
Add table
Reference in a new issue