From b16a793cbc6f8061fbfb08002495aea245124402 Mon Sep 17 00:00:00 2001 From: palash-signoz Date: Thu, 5 May 2022 13:59:25 +0530 Subject: [PATCH] Error is re-name to exceptions (#1093) * chore: error is named to expections --- frontend/public/locales/en-GB/translation.json | 2 +- frontend/public/locales/en/translation.json | 2 +- frontend/src/AppRoutes/pageComponents.ts | 2 +- frontend/src/container/SideNav/menuItems.ts | 2 +- frontend/src/container/TopNav/Breadcrumbs/index.tsx | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/public/locales/en-GB/translation.json b/frontend/public/locales/en-GB/translation.json index 20b33dc2d4..7ad8e9a716 100644 --- a/frontend/public/locales/en-GB/translation.json +++ b/frontend/public/locales/en-GB/translation.json @@ -12,7 +12,7 @@ "routes": { "general": "General", "alert_channels": "Alert Channels", - "all_errors": "All Errors" + "all_errors": "All Exceptions" }, "settings": { "total_retention_period": "Total Retention Period", diff --git a/frontend/public/locales/en/translation.json b/frontend/public/locales/en/translation.json index 20b33dc2d4..7ad8e9a716 100644 --- a/frontend/public/locales/en/translation.json +++ b/frontend/public/locales/en/translation.json @@ -12,7 +12,7 @@ "routes": { "general": "General", "alert_channels": "Alert Channels", - "all_errors": "All Errors" + "all_errors": "All Exceptions" }, "settings": { "total_retention_period": "Total Retention Period", diff --git a/frontend/src/AppRoutes/pageComponents.ts b/frontend/src/AppRoutes/pageComponents.ts index c7340f6a82..fd59d0bc7b 100644 --- a/frontend/src/AppRoutes/pageComponents.ts +++ b/frontend/src/AppRoutes/pageComponents.ts @@ -87,7 +87,7 @@ export const AllAlertChannels = Loadable( ); export const AllErrors = Loadable( - /* webpackChunkName: "All Errors" */ () => import('pages/AllErrors'), + /* webpackChunkName: "All Exceptions" */ () => import('pages/AllErrors'), ); export const ErrorDetails = Loadable( diff --git a/frontend/src/container/SideNav/menuItems.ts b/frontend/src/container/SideNav/menuItems.ts index cc2d2e1ae8..3b6a186b8d 100644 --- a/frontend/src/container/SideNav/menuItems.ts +++ b/frontend/src/container/SideNav/menuItems.ts @@ -35,7 +35,7 @@ const menus: SidebarMenu[] = [ { Icon: BugOutlined, to: ROUTES.ALL_ERROR, - name: 'Errors', + name: 'Exceptions', }, { to: ROUTES.SERVICE_MAP, diff --git a/frontend/src/container/TopNav/Breadcrumbs/index.tsx b/frontend/src/container/TopNav/Breadcrumbs/index.tsx index efa48fbbbe..25ff730711 100644 --- a/frontend/src/container/TopNav/Breadcrumbs/index.tsx +++ b/frontend/src/container/TopNav/Breadcrumbs/index.tsx @@ -11,7 +11,7 @@ const breadcrumbNameMap = { [ROUTES.INSTRUMENTATION]: 'Add instrumentation', [ROUTES.SETTINGS]: 'Settings', [ROUTES.DASHBOARD]: 'Dashboard', - [ROUTES.ALL_ERROR]: 'Errors', + [ROUTES.ALL_ERROR]: 'Exceptions', [ROUTES.VERSION]: 'Status', [ROUTES.ORG_SETTINGS]: 'Organization Settings', [ROUTES.MY_SETTINGS]: 'My Settings',