aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language
diff options
context:
space:
mode:
authorn-aleha <nick_aleha@myway.com>2014-05-11 20:23:51 +0300
committern-aleha <nick_aleha@myway.com>2014-05-17 04:50:57 +0300
commita1143332098aa2dd99bf16a1eb0b0301d5b0c5d5 (patch)
treeeae2bff3fb563f04451f2aa06286c1c2381aad22 /phpBB/language
parentf37ff48e2c1edc643c25db6f213c56de6a27464e (diff)
downloadforums-a1143332098aa2dd99bf16a1eb0b0301d5b0c5d5.tar
forums-a1143332098aa2dd99bf16a1eb0b0301d5b0c5d5.tar.gz
forums-a1143332098aa2dd99bf16a1eb0b0301d5b0c5d5.tar.bz2
forums-a1143332098aa2dd99bf16a1eb0b0301d5b0c5d5.tar.xz
forums-a1143332098aa2dd99bf16a1eb0b0301d5b0c5d5.zip
[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
Diffstat (limited to 'phpBB/language')
-rw-r--r--phpBB/language/en/common.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php
index 7026e60911..76ec863a6a 100644
--- a/phpBB/language/en/common.php
+++ b/phpBB/language/en/common.php
@@ -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',