From 6ba29b3f0c1573abedd567dcff8b82b98d35b06e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9D=9E=E6=B3=95=E6=93=8D=E4=BD=9C?= Date: Wed, 26 Aug 2026 06:47:13 +0000 Subject: [PATCH] chore(web): remove retired forum entry (#41289) --- .../main-nav/__tests__/index.spec.tsx | 5 ++-- .../__tests__/support-menu.spec.tsx | 25 ++++++++----------- .../main-nav/components/support-menu.tsx | 14 +---------- web/i18n/ar-TN/common.json | 2 -- web/i18n/de-DE/common.json | 2 -- web/i18n/en-US/common.json | 2 -- web/i18n/es-ES/common.json | 2 -- web/i18n/fa-IR/common.json | 2 -- web/i18n/fr-FR/common.json | 2 -- web/i18n/hi-IN/common.json | 2 -- web/i18n/id-ID/common.json | 2 -- web/i18n/it-IT/common.json | 2 -- web/i18n/ja-JP/common.json | 2 -- web/i18n/ko-KR/common.json | 2 -- web/i18n/lo-LA/common.json | 2 -- web/i18n/nl-NL/common.json | 2 -- web/i18n/pl-PL/common.json | 2 -- web/i18n/pt-BR/common.json | 2 -- web/i18n/ro-RO/common.json | 2 -- web/i18n/ru-RU/common.json | 2 -- web/i18n/sl-SI/common.json | 2 -- web/i18n/th-TH/common.json | 2 -- web/i18n/tr-TR/common.json | 2 -- web/i18n/uk-UA/common.json | 2 -- web/i18n/vi-VN/common.json | 2 -- web/i18n/zh-Hans/common.json | 2 -- web/i18n/zh-Hant/common.json | 2 -- 27 files changed, 13 insertions(+), 79 deletions(-) diff --git a/web/app/components/main-nav/__tests__/index.spec.tsx b/web/app/components/main-nav/__tests__/index.spec.tsx index 81b11dbd0c2..779762b9e69 100644 --- a/web/app/components/main-nav/__tests__/index.spec.tsx +++ b/web/app/components/main-nav/__tests__/index.spec.tsx @@ -1172,8 +1172,7 @@ describe('MainNav', () => { 'common.mainNav.help.learnDify', 'common.mainNav.help.stepByStepTour', 'common.userProfile.compliance', - 'common.userProfile.forum', - 'common.userProfile.community', + 'Discord', 'common.userProfile.github', 'common.userProfile.about', ] @@ -1256,7 +1255,7 @@ describe('MainNav', () => { fireEvent.click(contactUsItem) await waitFor(() => { - expect(screen.queryByText('common.userProfile.forum')).not.toBeInTheDocument() + expect(screen.queryByText('Discord')).not.toBeInTheDocument() }) expect(mockSetShowPricingModal).toHaveBeenCalled() }) diff --git a/web/app/components/main-nav/components/__tests__/support-menu.spec.tsx b/web/app/components/main-nav/components/__tests__/support-menu.spec.tsx index a67485be957..17f01fe1c3e 100644 --- a/web/app/components/main-nav/components/__tests__/support-menu.spec.tsx +++ b/web/app/components/main-nav/components/__tests__/support-menu.spec.tsx @@ -100,21 +100,16 @@ describe('SupportMenu', () => { ) } - it('renders contact us before community support entries when Zendesk is configured', () => { + it('renders contact us before Discord when Zendesk is configured', () => { renderSupportMenu() expect(screen.getByText('common.userProfile.contactUs')).toBeInTheDocument() - expect(screen.getByText('common.userProfile.forum')).toBeInTheDocument() - expect(screen.getByText('common.userProfile.community')).toBeInTheDocument() + expect(screen.getByText('Discord')).toBeInTheDocument() expect( screen .getByText('common.userProfile.contactUs') - .compareDocumentPosition(screen.getByText('common.userProfile.forum')), + .compareDocumentPosition(screen.getByText('Discord')), ).toBe(Node.DOCUMENT_POSITION_FOLLOWING) - expect(screen.getByRole('menuitem', { name: 'common.userProfile.forum' })).toHaveClass( - 'mx-0', - 'px-3', - ) fireEvent.click(screen.getByRole('menuitem', { name: 'common.userProfile.contactUs' })) @@ -160,7 +155,7 @@ describe('SupportMenu', () => { expect(screen.queryByText('common.userProfile.contactUs')).not.toBeInTheDocument() expect(screen.queryByText('billing.upgradeBtn.encourageShort')).not.toBeInTheDocument() expect(screen.queryByText('common.userProfile.emailSupport')).not.toBeInTheDocument() - expect(screen.getByText('common.userProfile.forum')).toBeInTheDocument() + expect(screen.getByText('Discord')).toBeInTheDocument() }) it('keeps Zendesk contact us for Cloud sandbox plan with support email and Zendesk configured', () => { @@ -212,7 +207,7 @@ describe('SupportMenu', () => { expect(screen.queryByText('common.userProfile.contactUs')).not.toBeInTheDocument() expect(screen.queryByText('common.userProfile.emailSupport')).not.toBeInTheDocument() - expect(screen.getByText('common.userProfile.forum')).toBeInTheDocument() + expect(screen.getByText('Discord')).toBeInTheDocument() }) it('renders email support when Zendesk is not configured for a dedicated support channel', () => { @@ -228,12 +223,12 @@ describe('SupportMenu', () => { ).toHaveAttribute('href', 'mailto:support@example.com') }) - it('has correct forum and community links', () => { + it('has the correct Discord link', () => { renderSupportMenu() - const forumLink = screen.getByText('common.userProfile.forum').closest('a') - const communityLink = screen.getByText('common.userProfile.community').closest('a') - expect(forumLink).toHaveAttribute('href', 'https://forum.dify.ai/') - expect(communityLink).toHaveAttribute('href', 'https://discord.gg/5AEfbxcd9k') + expect(screen.getByRole('menuitem', { name: 'Discord' })).toHaveAttribute( + 'href', + 'https://discord.gg/5AEfbxcd9k', + ) }) }) diff --git a/web/app/components/main-nav/components/support-menu.tsx b/web/app/components/main-nav/components/support-menu.tsx index 49f92d8ffa0..4bb93f0999c 100644 --- a/web/app/components/main-nav/components/support-menu.tsx +++ b/web/app/components/main-nav/components/support-menu.tsx @@ -96,18 +96,6 @@ export default function SupportMenu() { /> )} - - $['userProfile.forum'], { ns: 'common' })} - trailing={} - /> - $['userProfile.community'], { ns: 'common' })} + label="Discord" trailing={} /> diff --git a/web/i18n/ar-TN/common.json b/web/i18n/ar-TN/common.json index c626215cb38..a60ccd28834 100644 --- a/web/i18n/ar-TN/common.json +++ b/web/i18n/ar-TN/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "حوّل أحداث الجهات الخارجية إلى مدخلات يمكن لتطبيقاتك التعرف عليها والتصرف بناءً عليها — لأتمتة workflows بدون تشغيل يدوي.", "unit.char": "أحرف", "userProfile.about": "حول", - "userProfile.community": "المجتمع", "userProfile.compliance": "الامتثال", "userProfile.contactUs": "اتصل بنا", "userProfile.emailSupport": "دعم البريد الإلكتروني", - "userProfile.forum": "المنتدى", "userProfile.github": "GitHub", "userProfile.helpCenter": "عرض المستندات", "userProfile.logout": "تسجيل الخروج", diff --git a/web/i18n/de-DE/common.json b/web/i18n/de-DE/common.json index 08b0fedc73d..52978625901 100644 --- a/web/i18n/de-DE/common.json +++ b/web/i18n/de-DE/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "Wandle Drittanbieter-Ereignisse in Eingaben um, die deine Apps erkennen und verarbeiten können — automatisiere Workflows ohne manuelle Auslöser.", "unit.char": "Zeichen", "userProfile.about": "Über", - "userProfile.community": "Gemeinschaft", "userProfile.compliance": "Einhaltung", "userProfile.contactUs": "Kontaktieren Sie uns", "userProfile.emailSupport": "E-Mail-Support", - "userProfile.forum": "Forum", "userProfile.github": "GitHub", "userProfile.helpCenter": "Hilfe", "userProfile.logout": "Abmelden", diff --git a/web/i18n/en-US/common.json b/web/i18n/en-US/common.json index d8fc3c74617..0fc4518c58f 100644 --- a/web/i18n/en-US/common.json +++ b/web/i18n/en-US/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "Convert third-party events into inputs your apps can recognize and act on — automate workflows without manual triggers.", "unit.char": "chars", "userProfile.about": "About", - "userProfile.community": "Community", "userProfile.compliance": "Compliance", "userProfile.contactUs": "Contact Us", "userProfile.emailSupport": "Email Support", - "userProfile.forum": "Forum", "userProfile.github": "GitHub", "userProfile.helpCenter": "View Docs", "userProfile.logout": "Log out", diff --git a/web/i18n/es-ES/common.json b/web/i18n/es-ES/common.json index 19dad927ab9..5dc1d0bacfe 100644 --- a/web/i18n/es-ES/common.json +++ b/web/i18n/es-ES/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "Convierte eventos de terceros en entradas que tus apps pueden reconocer y ejecutar: automatiza workflows sin disparadores manuales.", "unit.char": "caracteres", "userProfile.about": "Acerca de", - "userProfile.community": "Comunidad", "userProfile.compliance": "Cumplimiento", "userProfile.contactUs": "Contáctenos", "userProfile.emailSupport": "Soporte de Correo Electrónico", - "userProfile.forum": "Foro", "userProfile.github": "GitHub", "userProfile.helpCenter": "Ayuda", "userProfile.logout": "Cerrar sesión", diff --git a/web/i18n/fa-IR/common.json b/web/i18n/fa-IR/common.json index 7a7740d1de8..4ed2f54264d 100644 --- a/web/i18n/fa-IR/common.json +++ b/web/i18n/fa-IR/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "رویدادهای سرویس‌های شخص ثالث را به ورودی‌هایی تبدیل کنید که برنامه‌های شما بتوانند آن‌ها را تشخیص دهند و اجرا کنند — workflowها را بدون محرک دستی خودکار کنید.", "unit.char": "کاراکتر", "userProfile.about": "درباره", - "userProfile.community": "انجمن", "userProfile.compliance": "انطباق", "userProfile.contactUs": "با ما تماس بگیرید", "userProfile.emailSupport": "پشتیبانی ایمیل", - "userProfile.forum": "انجمن", "userProfile.github": "گیت‌هاب", "userProfile.helpCenter": "راهنما", "userProfile.logout": "خروج", diff --git a/web/i18n/fr-FR/common.json b/web/i18n/fr-FR/common.json index 39ab9146dae..b0f8d11a4e3 100644 --- a/web/i18n/fr-FR/common.json +++ b/web/i18n/fr-FR/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "Transformez les événements tiers en entrées que vos apps peuvent reconnaître et exploiter — automatisez les workflows sans déclencheurs manuels.", "unit.char": "caractères", "userProfile.about": "À propos", - "userProfile.community": "Communauté", "userProfile.compliance": "Conformité", "userProfile.contactUs": "Contactez-nous", "userProfile.emailSupport": "Support par courriel", - "userProfile.forum": "Forum", "userProfile.github": "GitHub", "userProfile.helpCenter": "Aide", "userProfile.logout": "Se déconnecter", diff --git a/web/i18n/hi-IN/common.json b/web/i18n/hi-IN/common.json index 46fe82ddc39..cc501813156 100644 --- a/web/i18n/hi-IN/common.json +++ b/web/i18n/hi-IN/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "तृतीय-पक्ष events को ऐसे inputs में बदलें जिन्हें आपके ऐप्स पहचानकर कार्रवाई कर सकें — बिना manual triggers के workflows automate करें।", "unit.char": "वर्ण", "userProfile.about": "के बारे में", - "userProfile.community": "समुदाय", "userProfile.compliance": "अनुपालन", "userProfile.contactUs": "संपर्क करें", "userProfile.emailSupport": "सहायता", - "userProfile.forum": "फोरम", "userProfile.github": "गिटहब", "userProfile.helpCenter": "सहायता", "userProfile.logout": "लॉग आउट", diff --git a/web/i18n/id-ID/common.json b/web/i18n/id-ID/common.json index 8461d113e30..9842b0e73ca 100644 --- a/web/i18n/id-ID/common.json +++ b/web/i18n/id-ID/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "Ubah event pihak ketiga menjadi input yang dapat dikenali dan ditindaklanjuti oleh aplikasi Anda — otomatisasi workflow tanpa trigger manual.", "unit.char": "karakter", "userProfile.about": "Tentang", - "userProfile.community": "Masyarakat", "userProfile.compliance": "Kepatuhan", "userProfile.contactUs": "Hubungi Kami", "userProfile.emailSupport": "Dukungan Email", - "userProfile.forum": "Forum", "userProfile.github": "GitHub", "userProfile.helpCenter": "Docs", "userProfile.logout": "Keluar", diff --git a/web/i18n/it-IT/common.json b/web/i18n/it-IT/common.json index 93b8c885d40..9d39d111543 100644 --- a/web/i18n/it-IT/common.json +++ b/web/i18n/it-IT/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "Converti eventi di terze parti in input che le tue app possono riconoscere e gestire — automatizza i workflow senza trigger manuali.", "unit.char": "caratteri", "userProfile.about": "Informazioni", - "userProfile.community": "Comunità", "userProfile.compliance": "Conformità", "userProfile.contactUs": "Contattaci", "userProfile.emailSupport": "Supporto Email", - "userProfile.forum": "Forum", "userProfile.github": "GitHub", "userProfile.helpCenter": "Aiuto", "userProfile.logout": "Esci", diff --git a/web/i18n/ja-JP/common.json b/web/i18n/ja-JP/common.json index 192be210512..b0c2886fb9e 100644 --- a/web/i18n/ja-JP/common.json +++ b/web/i18n/ja-JP/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "サードパーティのイベントを、アプリが認識・処理できる入力に変換——手動トリガーなしでワークフローを自動化できます。", "unit.char": "文字", "userProfile.about": "Dify について", - "userProfile.community": "コミュニティ", "userProfile.compliance": "コンプライアンス", "userProfile.contactUs": "お問い合わせ", "userProfile.emailSupport": "サポート", - "userProfile.forum": "フォーラム", "userProfile.github": "GitHub", "userProfile.helpCenter": "ドキュメントを見る", "userProfile.logout": "ログアウト", diff --git a/web/i18n/ko-KR/common.json b/web/i18n/ko-KR/common.json index cb1fff9679d..a39e9ed2b6d 100644 --- a/web/i18n/ko-KR/common.json +++ b/web/i18n/ko-KR/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "타사 이벤트를 앱이 인식하고 처리할 수 있는 입력으로 변환하세요. 수동 트리거 없이 workflow를 자동화할 수 있습니다.", "unit.char": "문자", "userProfile.about": "Dify 소개", - "userProfile.community": "커뮤니티", "userProfile.compliance": "컴플라이언스", "userProfile.contactUs": "문의하기", "userProfile.emailSupport": "이메일 지원", - "userProfile.forum": "포럼", "userProfile.github": "깃허브", "userProfile.helpCenter": "도움말 센터", "userProfile.logout": "로그아웃", diff --git a/web/i18n/lo-LA/common.json b/web/i18n/lo-LA/common.json index 6f32e629fb7..8db3d402fd1 100644 --- a/web/i18n/lo-LA/common.json +++ b/web/i18n/lo-LA/common.json @@ -664,11 +664,9 @@ "triggerPage.description": "ປ່ຽນເຫດການຈາກພາກສ່ວນທີສາມໃຫ້ເປັນການປ້ອນຂໍ້ມູນທີ່ແອັບຂອງທ່ານສາມາດຮັບຮູ້ ແລະ ດຳເນີນການໄດ້ — ສ້າງຂະບວນການເຮັດວຽກອັດຕະໂນມັດໂດຍບໍ່ຕ້ອງໃຊ້ຕົວຈຸດຊະນວນດ້ວຍມື.", "unit.char": "ຕົວອັກສອນ", "userProfile.about": "ກ່ຽວກັບ", - "userProfile.community": "ຊຸມຊົນ", "userProfile.compliance": "ການປະຕິບັດຕາມກົດລະບຽບ", "userProfile.contactUs": "ຕິດຕໍ່ພວກເຮົາ", "userProfile.emailSupport": "ການຊ່ວຍເຫຼືອຜ່ານອີເມວ", - "userProfile.forum": "ຟໍຣຳ", "userProfile.github": "GitHub", "userProfile.helpCenter": "ເບິ່ງເອກະສານ", "userProfile.logout": "ອອກຈາກລະບົບ", diff --git a/web/i18n/nl-NL/common.json b/web/i18n/nl-NL/common.json index ec5beb18471..ada2ed37284 100644 --- a/web/i18n/nl-NL/common.json +++ b/web/i18n/nl-NL/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "Zet gebeurtenissen van derden om in invoer die je apps kunnen herkennen en verwerken — automatiseer workflows zonder handmatige triggers.", "unit.char": "chars", "userProfile.about": "About", - "userProfile.community": "Community", "userProfile.compliance": "Compliance", "userProfile.contactUs": "Contact Us", "userProfile.emailSupport": "Email Support", - "userProfile.forum": "Forum", "userProfile.github": "GitHub", "userProfile.helpCenter": "View Docs", "userProfile.logout": "Log out", diff --git a/web/i18n/pl-PL/common.json b/web/i18n/pl-PL/common.json index 7525739a52c..9f0b2616413 100644 --- a/web/i18n/pl-PL/common.json +++ b/web/i18n/pl-PL/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "Zamieniaj zdarzenia z usług zewnętrznych na wejścia rozpoznawane i obsługiwane przez aplikacje — automatyzuj workflowy bez ręcznych wyzwalaczy.", "unit.char": "znaki", "userProfile.about": "O", - "userProfile.community": "Społeczność", "userProfile.compliance": "Zgodność", "userProfile.contactUs": "Skontaktuj się z nami", "userProfile.emailSupport": "Wsparcie e-mail", - "userProfile.forum": "Forum", "userProfile.github": "GitHub", "userProfile.helpCenter": "Pomoc", "userProfile.logout": "Wyloguj się", diff --git a/web/i18n/pt-BR/common.json b/web/i18n/pt-BR/common.json index 488b21e0c1b..e5b19972671 100644 --- a/web/i18n/pt-BR/common.json +++ b/web/i18n/pt-BR/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "Converta eventos de terceiros em entradas que seus apps possam reconhecer e executar — automatize workflows sem acionadores manuais.", "unit.char": "caracteres", "userProfile.about": "Sobre", - "userProfile.community": "Comunidade", "userProfile.compliance": "Conformidade", "userProfile.contactUs": "Contate-Nos", "userProfile.emailSupport": "Suporte por e-mail", - "userProfile.forum": "Fórum", "userProfile.github": "GitHub", "userProfile.helpCenter": "Ajuda", "userProfile.logout": "Sair", diff --git a/web/i18n/ro-RO/common.json b/web/i18n/ro-RO/common.json index f54c3558bf6..c44adecf3cb 100644 --- a/web/i18n/ro-RO/common.json +++ b/web/i18n/ro-RO/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "Transformă evenimentele terților în intrări pe care aplicațiile le pot recunoaște și folosi — automatizează workflowuri fără declanșatoare manuale.", "unit.char": "caractere", "userProfile.about": "Despre", - "userProfile.community": "Comunitate", "userProfile.compliance": "Conformitate", "userProfile.contactUs": "Contactați-ne", "userProfile.emailSupport": "Suport prin email", - "userProfile.forum": "Forum", "userProfile.github": "GitHub", "userProfile.helpCenter": "Ajutor", "userProfile.logout": "Deconectare", diff --git a/web/i18n/ru-RU/common.json b/web/i18n/ru-RU/common.json index ea556046597..06832cdc80f 100644 --- a/web/i18n/ru-RU/common.json +++ b/web/i18n/ru-RU/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "Преобразуйте сторонние события во входные данные, которые приложения могут распознавать и обрабатывать — автоматизируйте workflow без ручных триггеров.", "unit.char": "символов", "userProfile.about": "О нас", - "userProfile.community": "Сообщество", "userProfile.compliance": "Соблюдение", "userProfile.contactUs": "Свяжитесь с нами", "userProfile.emailSupport": "Поддержка по электронной почте", - "userProfile.forum": "Форум", "userProfile.github": "ГитХаб", "userProfile.helpCenter": "Помощь", "userProfile.logout": "Выйти", diff --git a/web/i18n/sl-SI/common.json b/web/i18n/sl-SI/common.json index b899b8d1c3c..5979a3e6743 100644 --- a/web/i18n/sl-SI/common.json +++ b/web/i18n/sl-SI/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "Pretvorite dogodke tretjih oseb v vnose, ki jih aplikacije lahko prepoznajo in obdelajo — avtomatizirajte workflowe brez ročnih sprožilcev.", "unit.char": "znaki", "userProfile.about": "O nas", - "userProfile.community": "Skupnost", "userProfile.compliance": "Skladnost", "userProfile.contactUs": "Kontaktirajte nas", "userProfile.emailSupport": "Podpora po e-pošti", - "userProfile.forum": "Forum", "userProfile.github": "GitHub", "userProfile.helpCenter": "Pomoč", "userProfile.logout": "Odjava", diff --git a/web/i18n/th-TH/common.json b/web/i18n/th-TH/common.json index b1843f849fe..e85c29ff2eb 100644 --- a/web/i18n/th-TH/common.json +++ b/web/i18n/th-TH/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "แปลงเหตุการณ์จากบุคคลที่สามเป็นอินพุตที่แอปของคุณรู้จักและดำเนินการได้ — ทำให้ workflow ทำงานอัตโนมัติโดยไม่ต้อง trigger ด้วยตนเอง", "unit.char": "รถ ถัง", "userProfile.about": "ประมาณ", - "userProfile.community": "ชุมชน", "userProfile.compliance": "การปฏิบัติตามข้อกำหนด", "userProfile.contactUs": "ติดต่อเรา", "userProfile.emailSupport": "การสนับสนุนทางอีเมล", - "userProfile.forum": "ฟอรั่ม", "userProfile.github": "GitHub", "userProfile.helpCenter": "วิธีใช้", "userProfile.logout": "ออกจากระบบ", diff --git a/web/i18n/tr-TR/common.json b/web/i18n/tr-TR/common.json index 25b47a1d66c..bfd30dc5a00 100644 --- a/web/i18n/tr-TR/common.json +++ b/web/i18n/tr-TR/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "Üçüncü taraf olaylarını uygulamalarınızın tanıyıp işleyebileceği girdilere dönüştürün — manuel tetikleyiciler olmadan workflowları otomatikleştirin.", "unit.char": "karakter", "userProfile.about": "Hakkında", - "userProfile.community": "Topluluk", "userProfile.compliance": "Uygunluk", "userProfile.contactUs": "Bize Ulaşın", "userProfile.emailSupport": "E-posta Desteği", - "userProfile.forum": "Forum", "userProfile.github": "GitHub", "userProfile.helpCenter": "Yardım", "userProfile.logout": "Çıkış Yap", diff --git a/web/i18n/uk-UA/common.json b/web/i18n/uk-UA/common.json index 40abd4f7d49..011449c67ab 100644 --- a/web/i18n/uk-UA/common.json +++ b/web/i18n/uk-UA/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "Перетворюйте сторонні події на вхідні дані, які застосунки можуть розпізнавати й обробляти — автоматизуйте workflow без ручних тригерів.", "unit.char": "символів", "userProfile.about": "Про нас", - "userProfile.community": "Спільнота", "userProfile.compliance": "Відповідність", "userProfile.contactUs": "Зв’яжіться з нами", "userProfile.emailSupport": "Підтримка по електронній пошті", - "userProfile.forum": "Форум", "userProfile.github": "Гітхаб", "userProfile.helpCenter": "Довідковий центр", "userProfile.logout": "Вийти", diff --git a/web/i18n/vi-VN/common.json b/web/i18n/vi-VN/common.json index 320170bd93d..267387c547e 100644 --- a/web/i18n/vi-VN/common.json +++ b/web/i18n/vi-VN/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "Chuyển sự kiện bên thứ ba thành đầu vào mà ứng dụng có thể nhận biết và xử lý — tự động hóa workflow mà không cần trigger thủ công.", "unit.char": "ký tự", "userProfile.about": "Về chúng tôi", - "userProfile.community": "Cộng đồng", "userProfile.compliance": "Tuân thủ", "userProfile.contactUs": "Liên hệ với chúng tôi", "userProfile.emailSupport": "Hỗ trợ qua Email", - "userProfile.forum": "Diễn đàn", "userProfile.github": "GitHub", "userProfile.helpCenter": "Trung tâm trợ giúp", "userProfile.logout": "Đăng xuất", diff --git a/web/i18n/zh-Hans/common.json b/web/i18n/zh-Hans/common.json index f0819ec4110..33307528ef9 100644 --- a/web/i18n/zh-Hans/common.json +++ b/web/i18n/zh-Hans/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "将第三方事件转换为应用可识别并响应的输入——无需手动触发,即可自动运行工作流。", "unit.char": "个字符", "userProfile.about": "关于", - "userProfile.community": "社区", "userProfile.compliance": "合规", "userProfile.contactUs": "联系我们", "userProfile.emailSupport": "邮件支持", - "userProfile.forum": "论坛", "userProfile.github": "GitHub", "userProfile.helpCenter": "查看帮助文档", "userProfile.logout": "登出", diff --git a/web/i18n/zh-Hant/common.json b/web/i18n/zh-Hant/common.json index d4b24b1a0e2..43113137c09 100644 --- a/web/i18n/zh-Hant/common.json +++ b/web/i18n/zh-Hant/common.json @@ -667,11 +667,9 @@ "triggerPage.description": "將第三方事件轉換為應用可識別並執行的輸入,無需手動觸發即可自動化工作流程。", "unit.char": "個字元", "userProfile.about": "關於", - "userProfile.community": "社群", "userProfile.compliance": "合規", "userProfile.contactUs": "聯絡我們", "userProfile.emailSupport": "電子郵件支援", - "userProfile.forum": "論壇", "userProfile.github": "GitHub", "userProfile.helpCenter": "查看幫助文件", "userProfile.logout": "登出",