mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
- Added some missing lang strings
git-svn-id: file:///svn/phpbb/trunk@5857 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
14ed732bff
commit
656274cd57
2 changed files with 4 additions and 1 deletions
|
@ -140,6 +140,8 @@ $lang = array_merge($lang, array(
|
||||||
'POLL_VOTE_CHANGE' => 'Allow Vote Change',
|
'POLL_VOTE_CHANGE' => 'Allow Vote Change',
|
||||||
'POLL_VOTE_CHANGE_EXPLAIN' => 'If enabled users are able to change their vote.',
|
'POLL_VOTE_CHANGE_EXPLAIN' => 'If enabled users are able to change their vote.',
|
||||||
'POSTED_ATTACHMENTS' => 'Posted attachments',
|
'POSTED_ATTACHMENTS' => 'Posted attachments',
|
||||||
|
'POST_CONFIRMATION' => 'Confirmation of post',
|
||||||
|
'POST_CONFIRM_EXPLAIN' => 'To prevent automated posts the board administrator requires you to enter a confirmation code. The code is displayed in the image you should see below. If you are visually impaired or cannot otherwise read this code please contact the %sBoard Administrator%s.',
|
||||||
'POST_DELETED' => 'Your message has been deleted successfully',
|
'POST_DELETED' => 'Your message has been deleted successfully',
|
||||||
'POST_EDITED' => 'Your message has been edited successfully',
|
'POST_EDITED' => 'Your message has been edited successfully',
|
||||||
'POST_EDITED_MOD' => 'Your message has been edited but requires approval',
|
'POST_EDITED_MOD' => 'Your message has been edited but requires approval',
|
||||||
|
|
|
@ -1118,7 +1118,8 @@ if ($config['enable_post_confirm'] && !$user->data['is_registered'] && ($mode ==
|
||||||
$template->assign_vars(array(
|
$template->assign_vars(array(
|
||||||
'S_CONFIRM_CODE' => true,
|
'S_CONFIRM_CODE' => true,
|
||||||
'CONFIRM_ID' => $confirm_id,
|
'CONFIRM_ID' => $confirm_id,
|
||||||
'CONFIRM_IMAGE' => '<img src="' . $phpbb_root_path . 'ucp.' . $phpEx . $SID . '&mode=confirm&id=' . $confirm_id . '&type=' . CONFIRM_POST . '" alt="" title="" />'
|
'CONFIRM_IMAGE' => '<img src="' . $phpbb_root_path . 'ucp.' . $phpEx . $SID . '&mode=confirm&id=' . $confirm_id . '&type=' . CONFIRM_POST . '" alt="" title="" />',
|
||||||
|
'L_POST_CONFIRM_EXPLAIN' => sprintf($user->lang['POST_CONFIRM_EXPLAIN'], '<a href="mailto:' . htmlentities($config['board_contact']) . '">', '</a>'),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue