mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 05:50:42 +02:00
[ticket/12525] Add string argument to contact and email user language variables
In language/en/common.php: * Introduce a new language variable 'CONTACT' => 'Contact' * Add a string argument to lang var 'CONTACT_USER' to avoid an appended '{USERNAME}' in template. * Add a string argument to lang var 'SEND_EMAIL_USER' to avoid an appended '{USERNAME}' in template. Also fix typos. PHPBB3-12525
This commit is contained in:
@@ -167,7 +167,8 @@ $lang = array_merge($lang, array(
|
||||
'CONGRATULATIONS' => 'Congratulations to',
|
||||
'CONNECTION_FAILED' => 'Connection failed.',
|
||||
'CONNECTION_SUCCESS' => 'Connection was successful!',
|
||||
'CONTACT_USER' => 'Contact',
|
||||
'CONTACT' => 'Contact',
|
||||
'CONTACT_USER' => 'Contact %s',
|
||||
'COOKIES_DELETED' => 'All board cookies successfully deleted.',
|
||||
'CURRENT_TIME' => 'It is currently %s',
|
||||
|
||||
@@ -664,7 +665,7 @@ $lang = array_merge($lang, array(
|
||||
'SELECT_DESTINATION_FORUM' => 'Please select a destination forum',
|
||||
'SELECT_FORUM' => 'Select a forum',
|
||||
'SEND_EMAIL' => 'Email', // Used for submit buttons
|
||||
'SEND_EMAIL_USER' => 'Email', // Used as: {L_SEND_EMAIL_USER} {USERNAME} -> Email UserX
|
||||
'SEND_EMAIL_USER' => 'Email %s',
|
||||
'SEND_PRIVATE_MESSAGE' => 'Send private message',
|
||||
'SETTINGS' => 'Settings',
|
||||
'SIGNATURE' => 'Signature',
|
||||
|
Reference in New Issue
Block a user