diff --git a/services/web/frontend/extracted-translations.json b/services/web/frontend/extracted-translations.json index 0855c3ddcb..7824543a5a 100644 --- a/services/web/frontend/extracted-translations.json +++ b/services/web/frontend/extracted-translations.json @@ -1076,6 +1076,7 @@ "neither_agree_nor_disagree": "", "new_compile_domain_notice": "", "new_create_tables_and_equations": "", + "new_error_logs_panel": "", "new_file": "", "new_folder": "", "new_font_open_dyslexic": "", diff --git a/services/web/frontend/js/features/ide-redesign/components/switcher-modal/modal.tsx b/services/web/frontend/js/features/ide-redesign/components/switcher-modal/modal.tsx index a9ccda33d9..be3868ed89 100644 --- a/services/web/frontend/js/features/ide-redesign/components/switcher-modal/modal.tsx +++ b/services/web/frontend/js/features/ide-redesign/components/switcher-modal/modal.tsx @@ -15,6 +15,7 @@ import Notification from '@/shared/components/notification' import { useSwitchEnableNewEditorState } from '../../hooks/use-switch-enable-new-editor-state' import { Trans, useTranslation } from 'react-i18next' import { useEditorAnalytics } from '@/shared/hooks/use-editor-analytics' +import { useFeatureFlag } from '@/shared/context/split-test-context' import { useSurveyUrl } from '../../hooks/use-survey-url' export const IdeRedesignSwitcherModal = () => { @@ -160,10 +161,13 @@ const SwitcherModalContentDisabled: FC = ({ const SwitcherWhatsNew = () => { const { t } = useTranslation() + const newErrorlogs = useFeatureFlag('new-editor-error-logs-redesign') + return (

{t('latest_updates')}

diff --git a/services/web/locales/en.json b/services/web/locales/en.json index a8a00fe308..5880b23ee4 100644 --- a/services/web/locales/en.json +++ b/services/web/locales/en.json @@ -1408,6 +1408,7 @@ "neither_agree_nor_disagree": "Neither agree nor disagree", "new_compile_domain_notice": "We’ve recently migrated PDF downloads to a new domain. Something might be blocking your browser from accessing that new domain, <0>__compilesUserContentDomain__. This could be caused by network blocking or a strict browser plugin rule. Please follow our <1>troubleshooting guide.", "new_create_tables_and_equations": "NEW! Create tables and equations in seconds", + "new_error_logs_panel": "New error logs panel. Added ‘Go to location in code’ and ‘Go to location in PDF’ buttons (17 June 2025)", "new_file": "New file", "new_folder": "New folder", "new_font_open_dyslexic": "New font: OpenDyslexic Mono is designed to improve readability for those with dyslexia.",