Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/site/app/views/users/email/emailchange_plain.thtml
diff options
context:
space:
mode:
Diffstat (limited to 'site/app/views/users/email/emailchange_plain.thtml')
-rw-r--r--site/app/views/users/email/emailchange_plain.thtml16
1 files changed, 15 insertions, 1 deletions
diff --git a/site/app/views/users/email/emailchange_plain.thtml b/site/app/views/users/email/emailchange_plain.thtml
index 4a1a852..7a2ae90 100644
--- a/site/app/views/users/email/emailchange_plain.thtml
+++ b/site/app/views/users/email/emailchange_plain.thtml
@@ -2,6 +2,20 @@
$confirmurl = SITE_URL.$html->url('/users/emailchange/'.$userid.'?code='
.urlencode($changecode), true);
-echo $html->lineBreaks(sprintf(___('user_email_confirm_emailchange'), $confirmurl, APP_PRETTYNAME));
+// @partial: translation fallback, 5/6/08
+if (_('user_email_confirm_emailchange') != 'user_email_confirm_emailchange'):
+echo $html->lineBreaks(sprintf(_('user_email_confirm_emailchange'),
+ $confirmurl, APP_PRETTYNAME));
+
+else:
+echo "You requested a change to your email address at ".APP_PRETTYNAME." Add-ons.\n\n"
+ ."In order to confirm the new address, please click the link below or copy "
+ ."and paste the whole thing into your browser's location bar:\n\n"
+ . $confirmurl . "\n\n"
+ ."You have 48 hours to confirm the new address. If you do not want to change "
+ ."the address anymore, you can just ignore this email.\n\n"
+ ."Thanks!\n"
+ ."-- ".APP_PRETTYNAME." Add-ons Staff";
+endif;
?>