diff --git a/assets/javascripts/discourse/initializers/extend-for-solved-button.js.es6 b/assets/javascripts/discourse/initializers/extend-for-solved-button.js.es6 index 5d16b57..e484922 100644 --- a/assets/javascripts/discourse/initializers/extend-for-solved-button.js.es6 +++ b/assets/javascripts/discourse/initializers/extend-for-solved-button.js.es6 @@ -163,6 +163,7 @@ function initializeWithApi(api) { } }); } + } export default { @@ -212,5 +213,9 @@ export default { }); withPluginApi('0.1', initializeWithApi); + + withPluginApi('0.8.10', api => { + api.replaceIcon('notification.solved.accepted_notification', 'check-square'); + }); } }; diff --git a/config/locales/client.en.yml b/config/locales/client.en.yml index 668a516..2d61ab0 100644 --- a/config/locales/client.en.yml +++ b/config/locales/client.en.yml @@ -1,5 +1,10 @@ en: js: + notifications: + alt: + solved: + accepted_notification: "accepted" + solved: title: "Solved" allow_accepted_answers: "Allow topic owner and staff to mark a reply as the solution"