diff --git a/app/assets/javascripts/discourse/components/notifications-button.js.es6 b/app/assets/javascripts/discourse/components/notifications-button.js.es6 index 33f848d8d4a..4270b30e483 100644 --- a/app/assets/javascripts/discourse/components/notifications-button.js.es6 +++ b/app/assets/javascripts/discourse/components/notifications-button.js.es6 @@ -32,6 +32,15 @@ export default DropdownSelectBoxComponent.extend({ } }, + @computed + titleForRow: function() { + return (rowComponent) => { + const notificationLevel = rowComponent.get(`content.${this.get("idKey")}`); + const details = buttonDetails(notificationLevel); + return I18n.t(`${this.get("i18nPrefix")}.${details.key}.title`); + }; + }, + @computed templateForRow: function() { return (rowComponent) => {