Improve email notification message (#154)

* Improve email notification message

* Fix notification_post_reply_body variable name
This commit is contained in:
timothyhay 2025-01-13 11:13:54 -07:00 committed by GitHub
parent 70a2384b59
commit dedee7f2ee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,5 @@
{ "registration_approved_subject": "Registration approved for {username}", {
"registration_approved_subject": "Registration approved for {username}",
"registration_approved_body": "Your registration application has been approved. Welcome to {hostname}!", "registration_approved_body": "Your registration application has been approved. Welcome to {hostname}!",
"registration_denied": "Registration denied", "registration_denied": "Registration denied",
"registration_denied_subject": "Registration denied for {username}", "registration_denied_subject": "Registration denied for {username}",
@ -12,13 +13,13 @@
"email_verified_body": "Your email has been verified.", "email_verified_body": "Your email has been verified.",
"verify_email_body": "Please click the link below to verify your email address for the account @{username}@{hostname}. Ignore this email if the account isn't yours.<br><br><a href=\"{verify_link}\">Verify your email</a>", "verify_email_body": "Please click the link below to verify your email address for the account @{username}@{hostname}. Ignore this email if the account isn't yours.<br><br><a href=\"{verify_link}\">Verify your email</a>",
"notification_post_reply_subject": "Reply from {username}", "notification_post_reply_subject": "Reply from {username}",
"notification_post_reply_body": "<h1>Post reply</h1><br><div>{username} - {comment_text}</div><br><a href=\"{inbox_link}\">inbox</a>", "notification_post_reply_body": "<h1>Post reply</h1><br><div>{username} replied to \"{post_title}\": {comment_text}</div><br><a href=\"{comment_link}\">comment</a> <a href=\"{inbox_link}\">inbox</a>",
"notification_comment_reply_subject": "Reply from {username}", "notification_comment_reply_subject": "Reply from {username}",
"notification_comment_reply_body": "<h1>Comment reply</h1><br><div>{username} - {comment_text}</div><br><a href=\"{inbox_link}\">inbox</a>", "notification_comment_reply_body": "<h1>Comment reply</h1><br><div>{username} replied to \"{parent_comment_text}\" on \"{post_title}\": {comment_text}</div><br><a href=\"{comment_link}\">comment</a> <a href=\"{inbox_link}\">inbox</a>",
"notification_mentioned_by_subject": "Mentioned by {username}", "notification_mentioned_by_subject": "Mentioned by {username}",
"notification_mentioned_by_body": "<h1>Person Mention</h1><br><div>{username} - {comment_text}</div><br><a href=\"{inbox_link}\">inbox</a>", "notification_mentioned_by_body": "<h1>Person Mention</h1><br><div>{username} mentioned you: {comment_text}</div><br><a href=\"{comment_link}\">comment</a> <a href=\"{inbox_link}\">inbox</a>",
"notification_private_message_subject": "Private message from {username}", "notification_private_message_subject": "Private message from {username}",
"notification_private_message_body": "<h1>Private message</h1><br><div>{username} - {message_text}</div><br><a href=\"{inbox_link}\">inbox</a>", "notification_private_message_body": "<h1>Private message</h1><br><div>{username} private messaged you: {message_text}</div><br><a href=\"{inbox_link}\">inbox</a>",
"new_application_subject": "{username} has applied to join {hostname}", "new_application_subject": "{username} has applied to join {hostname}",
"new_application_body": "Please click the link below to view their application.<br><br><a href=\"{applications_link}\">View Applications</a>", "new_application_body": "Please click the link below to view their application.<br><br><a href=\"{applications_link}\">View Applications</a>",
"new_report_subject": "New report created by {reporter_username} for {reported_username} on {hostname}", "new_report_subject": "New report created by {reporter_username} for {reported_username} on {hostname}",