From 5431b84eef93c1b526ec8e50893d51263b05229b Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Sat, 31 Oct 2015 18:19:00 +1030 Subject: [PATCH] Fix typo in new post notification translation key --- .../js/forum/src/components/NewPostNotification.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/subscriptions/js/forum/src/components/NewPostNotification.js b/extensions/subscriptions/js/forum/src/components/NewPostNotification.js index 9262e4bff..0f374229a 100644 --- a/extensions/subscriptions/js/forum/src/components/NewPostNotification.js +++ b/extensions/subscriptions/js/forum/src/components/NewPostNotification.js @@ -15,6 +15,6 @@ export default class NewPostNotification extends Notification { } content() { - return app.translator.trans('flarum-subscriptions.forum.notifications:new_post_text', {user: this.props.notification.sender()}); + return app.translator.trans('flarum-subscriptions.forum.notifications.new_post_text', {user: this.props.notification.sender()}); } }