diff --git a/webapp/channels/src/components/sidebar/sidebar_channel/sidebar_channel_menu/__snapshots__/sidebar_channel_menu.test.tsx.snap b/webapp/channels/src/components/sidebar/sidebar_channel/sidebar_channel_menu/__snapshots__/sidebar_channel_menu.test.tsx.snap
index adf05204ad..e46d135600 100644
--- a/webapp/channels/src/components/sidebar/sidebar_channel/sidebar_channel_menu/__snapshots__/sidebar_channel_menu.test.tsx.snap
+++ b/webapp/channels/src/components/sidebar/sidebar_channel/sidebar_channel_menu/__snapshots__/sidebar_channel_menu.test.tsx.snap
@@ -11,7 +11,7 @@ exports[`components/sidebar/sidebar_channel/sidebar_channel_menu should match sn
}
menuButton={
Object {
- "aria-label": "Channel options",
+ "aria-label": "Channel options for {channelName}",
"children": ,
@@ -157,7 +157,7 @@ exports[`components/sidebar/sidebar_channel/sidebar_channel_menu should match sn
}
menuButton={
Object {
- "aria-label": "Channel options",
+ "aria-label": "Channel options for {channelName}",
"children": ,
@@ -303,7 +303,7 @@ exports[`components/sidebar/sidebar_channel/sidebar_channel_menu should match sn
}
menuButton={
Object {
- "aria-label": "Channel options",
+ "aria-label": "Channel options for {channelName}",
"children": ,
@@ -449,7 +449,7 @@ exports[`components/sidebar/sidebar_channel/sidebar_channel_menu should show cor
}
menuButton={
Object {
- "aria-label": "Channel options",
+ "aria-label": "Channel options for {channelName}",
"children": ,
@@ -563,7 +563,7 @@ exports[`components/sidebar/sidebar_channel/sidebar_channel_menu should show cor
}
menuButton={
Object {
- "aria-label": "Channel options",
+ "aria-label": "Channel options for {channelName}",
"children": ,
@@ -692,7 +692,7 @@ exports[`components/sidebar/sidebar_channel/sidebar_channel_menu should show cor
}
menuButton={
Object {
- "aria-label": "Channel options",
+ "aria-label": "Channel options for {channelName}",
"children": ,
@@ -838,7 +838,7 @@ exports[`components/sidebar/sidebar_channel/sidebar_channel_menu should show cor
}
menuButton={
Object {
- "aria-label": "Channel options",
+ "aria-label": "Channel options for {channelName}",
"children": ,
@@ -984,7 +984,7 @@ exports[`components/sidebar/sidebar_channel/sidebar_channel_menu should show cor
}
menuButton={
Object {
- "aria-label": "Channel options",
+ "aria-label": "Channel options for {channelName}",
"children": ,
@@ -1130,7 +1130,7 @@ exports[`components/sidebar/sidebar_channel/sidebar_channel_menu should show cor
}
menuButton={
Object {
- "aria-label": "Channel options",
+ "aria-label": "Channel options for {channelName}",
"children": ,
@@ -1276,7 +1276,7 @@ exports[`components/sidebar/sidebar_channel/sidebar_channel_menu should show cor
}
menuButton={
Object {
- "aria-label": "Channel options",
+ "aria-label": "Channel options for {channelName}",
"children": ,
diff --git a/webapp/channels/src/components/sidebar/sidebar_channel/sidebar_channel_menu/sidebar_channel_menu.tsx b/webapp/channels/src/components/sidebar/sidebar_channel/sidebar_channel_menu/sidebar_channel_menu.tsx
index fe3fa5831b..64ea87bb43 100644
--- a/webapp/channels/src/components/sidebar/sidebar_channel/sidebar_channel_menu/sidebar_channel_menu.tsx
+++ b/webapp/channels/src/components/sidebar/sidebar_channel/sidebar_channel_menu/sidebar_channel_menu.tsx
@@ -271,7 +271,10 @@ const SidebarChannelMenu = (props: Props) => {
menuButton={{
id: `SidebarChannelMenu-Button-${props.channel.id}`,
class: 'SidebarMenu_menuButton',
- 'aria-label': formatMessage({id: 'sidebar_left.sidebar_channel_menu.editChannel', defaultMessage: 'Channel options'}),
+ 'aria-label': formatMessage({
+ id: 'sidebar_left.sidebar_channel_menu.editChannel.ariaLabel',
+ defaultMessage: 'Channel options for {channelName}',
+ }, {channelName: props.channel.name}),
children: ,
}}
menuButtonTooltip={{
diff --git a/webapp/channels/src/i18n/en.json b/webapp/channels/src/i18n/en.json
index ea7ba00052..b7819cbf85 100644
--- a/webapp/channels/src/i18n/en.json
+++ b/webapp/channels/src/i18n/en.json
@@ -5067,6 +5067,7 @@
"sidebar_left.sidebar_channel_menu.copyLink": "Copy Link",
"sidebar_left.sidebar_channel_menu.dropdownAriaLabel": "Edit channel menu",
"sidebar_left.sidebar_channel_menu.editChannel": "Channel options",
+ "sidebar_left.sidebar_channel_menu.editChannel.ariaLabel": "Channel options for {channelName}",
"sidebar_left.sidebar_channel_menu.favoriteChannel": "Favorite",
"sidebar_left.sidebar_channel_menu.favorites": "Favorites",
"sidebar_left.sidebar_channel_menu.leaveChannel": "Leave Channel",