From 9b28b7f78a461806ca2f40d3a5b2ee517d751d1a Mon Sep 17 00:00:00 2001 From: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Date: Thu, 8 Jun 2023 19:07:54 +0530 Subject: [PATCH] fix: remove duplicate value i18n (#8547) * fix: remove duplicate value i18n Signed-off-by: Udit Takkar * feat: add duplicate check in next config Signed-off-by: Udit Takkar * fix: remove more duplicates Signed-off-by: Udit Takkar * fix: description on two factor page Signed-off-by: Udit Takkar * Update apps/web/next.config.js * Update apps/web/next.config.js --------- Signed-off-by: Udit Takkar Co-authored-by: Hariom Balhara Co-authored-by: Keith Williams Co-authored-by: Peer Richelsen --- .../booking/AvailableEventLocations.tsx | 2 +- .../components/dialog/RescheduleDialog.tsx | 2 +- .../eventtype/EventTypeSingleLayout.tsx | 2 +- apps/web/next.config.js | 16 +++++- apps/web/pages/apps/installed/[category].tsx | 2 +- apps/web/pages/booking/[uid].tsx | 2 +- apps/web/pages/insights/index.tsx | 2 +- apps/web/pages/settings/billing/index.tsx | 6 +-- .../pages/settings/my-account/appearance.tsx | 4 +- .../settings/my-account/conferencing.tsx | 2 +- .../settings/security/two-factor-auth.tsx | 2 +- apps/web/public/static/locales/en/common.json | 50 +------------------ .../caldavcalendar/pages/setup/index.tsx | 2 +- packages/app-store/locations.ts | 2 +- .../AttendeeWasRequestedToRescheduleEmail.tsx | 2 +- .../src/templates/BaseScheduledEmail.tsx | 2 +- .../emails/src/templates/TeamInviteEmail.tsx | 2 +- ...endee-was-requested-to-reschedule-email.ts | 2 +- .../features/bookings/lib/getBookingFields.ts | 2 +- .../calendars/DestinationCalendarSelector.tsx | 6 +-- .../api-keys/components/ApiKeyDialogForm.tsx | 4 +- .../ee/sso/components/SSOConfiguration.tsx | 2 +- .../components/InviteLinkSettingsModal.tsx | 2 +- .../features/ee/teams/components/TeamList.tsx | 2 +- .../ee/teams/pages/team-appearance-view.tsx | 4 +- .../ee/teams/pages/team-billing-view.tsx | 4 +- .../components/EventWorkflowsTab.tsx | 2 +- .../components/WorkflowStepContainer.tsx | 2 +- .../features/form-builder/FormBuilder.tsx | 4 +- .../settings/layouts/SettingsLayout.tsx | 4 +- .../users/components/VerifyEmailBanner.tsx | 2 +- .../features/webhooks/pages/webhooks-view.tsx | 2 +- packages/ui/components/apps/AllApps.tsx | 2 +- 33 files changed, 57 insertions(+), 91 deletions(-) diff --git a/apps/web/components/booking/AvailableEventLocations.tsx b/apps/web/components/booking/AvailableEventLocations.tsx index e03daa0da5..ce7abf7ba3 100644 --- a/apps/web/components/booking/AvailableEventLocations.tsx +++ b/apps/web/components/booking/AvailableEventLocations.tsx @@ -24,7 +24,7 @@ export function AvailableEventLocations({ locations }: { locations: Props["event } const translateAbleKeys = [ - "attendee_in_person", + "in_person_attendee_address", "in_person", "attendee_phone_number", "link_meeting", diff --git a/apps/web/components/dialog/RescheduleDialog.tsx b/apps/web/components/dialog/RescheduleDialog.tsx index a765bab23f..39d27f5af9 100644 --- a/apps/web/components/dialog/RescheduleDialog.tsx +++ b/apps/web/components/dialog/RescheduleDialog.tsx @@ -55,7 +55,7 @@ export const RescheduleDialog = (props: IRescheduleDialog) => {