diff --git a/apps/web/public/static/locales/en/common.json b/apps/web/public/static/locales/en/common.json index 398e85ee7d..6f3fa8f062 100644 --- a/apps/web/public/static/locales/en/common.json +++ b/apps/web/public/static/locales/en/common.json @@ -2044,6 +2044,7 @@ "collect_no_show_fee": "Collect no-show fee", "no_show_fee_charged": "No-show fee charged", "insights": "Insights", + "routing_forms": "Routing Forms", "testing_workflow_info_message": "When testing this workflow, be aware that Emails and SMS can only be scheduled at least 1 hour in advance", "insights_no_data_found_for_filter": "No data found for the selected filter or selected dates.", "acknowledge_booking_no_show_fee": "I acknowledge that if I do not attend this event that a {{amount, currency}} no show fee will be applied to my card.", diff --git a/apps/web/public/static/locales/ko/common.json b/apps/web/public/static/locales/ko/common.json index 887c1214bf..de01a8ff5b 100644 --- a/apps/web/public/static/locales/ko/common.json +++ b/apps/web/public/static/locales/ko/common.json @@ -2043,7 +2043,7 @@ "error_charging_card": "노쇼 수수료를 부과하는 중 문제가 발생했습니다. 나중에 다시 시도해주세요.", "collect_no_show_fee": "노쇼 수수료 청구", "no_show_fee_charged": "노쇼 수수료 부과됨", - "insights": "Insights", + "insights": "인사이트", "testing_workflow_info_message": "이 워크플로를 테스트할 때 이메일 및 SMS는 최소 1시간 전에만 예약할 수 있다는 점에 유의하세요", "insights_no_data_found_for_filter": "선택한 필터 또는 날짜에 대한 데이터를 찾을 수 없습니다.", "acknowledge_booking_no_show_fee": "본인은 이 이벤트에 참석하지 않을 경우 {{amount, currency}}에 대한 노쇼 수수료가 내 카드에 부과됨을 인정합니다.", diff --git a/packages/features/shell/navigation/Navigation.tsx b/packages/features/shell/navigation/Navigation.tsx index 4e5b45bb99..1701aef9b5 100644 --- a/packages/features/shell/navigation/Navigation.tsx +++ b/packages/features/shell/navigation/Navigation.tsx @@ -72,7 +72,7 @@ const navigation: NavigationItemType[] = [ icon: "ellipsis", }, { - name: "Routing Forms", + name: "routing_forms", href: "/apps/routing-forms/forms", icon: "file-text", isCurrent: ({ pathname }) => pathname?.startsWith("/apps/routing-forms/") ?? false,