diff --git a/ui/component/sideNavigation/view.jsx b/ui/component/sideNavigation/view.jsx
index b8f939043..a401e12ee 100644
--- a/ui/component/sideNavigation/view.jsx
+++ b/ui/component/sideNavigation/view.jsx
@@ -17,28 +17,28 @@ const TOP_LEVEL_LINKS: Array<{
hideForUnauth?: boolean,
}> = [
{
- label: __('Home'),
+ label: 'Home',
navigate: `/`,
icon: ICONS.HOME,
},
{
- label: __('Following'),
+ label: 'Following',
navigate: `/$/${PAGES.CHANNELS_FOLLOWING}`,
icon: ICONS.SUBSCRIBE,
},
{
- label: __('Your Tags'),
+ label: 'Your Tags',
navigate: `/$/${PAGES.TAGS_FOLLOWING}`,
icon: ICONS.TAG,
hideForUnauth: true,
},
{
- label: __('Discover'),
+ label: 'Discover',
navigate: `/$/${PAGES.DISCOVER}`,
icon: ICONS.DISCOVER,
},
{
- label: __('Purchased'),
+ label: 'Purchased',
navigate: `/$/${PAGES.LIBRARY}`,
icon: ICONS.PURCHASED,
hideForUnauth: true,
@@ -53,68 +53,68 @@ const ABSOLUTE_LINKS: Array<{
hideForUnauth?: boolean,
}> = [
{
- label: __('Upload'),
+ label: 'Upload',
navigate: `/$/${PAGES.UPLOAD}`,
icon: ICONS.PUBLISH,
},
{
- label: __('New Channel'),
+ label: 'New Channel',
navigate: `/$/${PAGES.CHANNEL_NEW}`,
icon: ICONS.CHANNEL,
hideForUnauth: true,
},
{
- label: __('Uploads'),
+ label: 'Uploads',
navigate: `/$/${PAGES.UPLOADS}`,
icon: ICONS.PUBLISH,
hideForUnauth: true,
},
{
- label: __('Channels'),
+ label: 'Channels',
navigate: `/$/${PAGES.CHANNELS}`,
icon: ICONS.CHANNEL,
hideForUnauth: true,
},
{
- label: __('Creator Analytics'),
+ label: 'Creator Analytics',
navigate: `/$/${PAGES.CREATOR_DASHBOARD}`,
icon: ICONS.ANALYTICS,
hideForUnauth: true,
},
{
- label: __('Wallet'),
+ label: 'Wallet',
navigate: `/$/${PAGES.WALLET}`,
icon: ICONS.WALLET,
hideForUnauth: true,
},
{
- label: __('Notifications'),
+ label: 'Notifications',
navigate: `/$/${PAGES.NOTIFICATIONS}`,
icon: ICONS.NOTIFICATION,
extra: