diff --git a/bigbluebutton-html5/imports/ui/components/settings/component.jsx b/bigbluebutton-html5/imports/ui/components/settings/component.jsx
index f043f7c8b4cbc0403fd206ff9eeae64ceb1463f3..dd4c1cf54e0f206155a1bd4e20bbcc20fc4b780b 100644
--- a/bigbluebutton-html5/imports/ui/components/settings/component.jsx
+++ b/bigbluebutton-html5/imports/ui/components/settings/component.jsx
@@ -51,6 +51,10 @@ const intlMessages = defineMessages({
     id: 'app.settings.main.save.label.description',
     description: 'Settings modal save button label',
   },
+  notificationLabel: {
+    id: 'app.submenu.notification.SectionTitle', // set menu label identical to section title
+    description: 'label for notification tab',
+  },
   dataSavingLabel: {
     id: 'app.settings.dataSavingTab.label',
     description: 'label for data savings tab',
@@ -168,7 +172,7 @@ class Settings extends Component {
             selectedClassName={styles.selected}
           >
             <Icon iconName="alert" className={styles.icon} />
-            <span id="notificationTab">Notification</span>
+            <span id="notificationTab">{intl.formatMessage(intlMessages.notificationLabel)}</span>
           </Tab>
           <Tab
             className={styles.tabSelector}