We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f2682c commit 3263d9aCopy full SHA for 3263d9a
roundup/cgi/actions.py
@@ -1159,8 +1159,11 @@ def handle(self):
1159
tracker_name = self.db.config.TRACKER_NAME
1160
tracker_email = self.db.config.TRACKER_EMAIL
1161
if self.db.config['EMAIL_REGISTRATION_CONFIRMATION']:
1162
- subject = _('Complete your registration to %s -- key %s') % (
1163
- tracker_name, otk)
+ subject = _(
+ 'Complete your registration to %(tracker_name)s -- key %(key)s') % {
1164
+ 'tracker_name': tracker_name,
1165
+ 'key': otk}
1166
+
1167
body = _("""To complete your registration of the user "%(name)s" with
1168
%(tracker)s, please do one of the following:
1169
0 commit comments