From 50dabf3f6510636a913450d3e0a0e163e5be23ae Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Wed, 10 Jun 2026 10:14:48 -0700 Subject: [PATCH] Enable Google Translate in post overflow menu (#10849) --- .../PostControls/PostMenu/PostMenuItems.tsx | 12 ++++++++++-- src/components/PostControls/index.tsx | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/components/PostControls/PostMenu/PostMenuItems.tsx b/src/components/PostControls/PostMenu/PostMenuItems.tsx index f34c9a473c..7ed925405a 100644 --- a/src/components/PostControls/PostMenu/PostMenuItems.tsx +++ b/src/components/PostControls/PostMenu/PostMenuItems.tsx @@ -551,9 +551,17 @@ let PostMenuItems = ({ ) : ( - {l`Translate`} + + {forceGoogleTranslate + ? l`Open in Google Translate` + : l`Translate`} + )} diff --git a/src/components/PostControls/index.tsx b/src/components/PostControls/index.tsx index 1f6be5ab6c..a4852b5805 100644 --- a/src/components/PostControls/index.tsx +++ b/src/components/PostControls/index.tsx @@ -54,7 +54,7 @@ let PostControls = ({ onShowLess, viaRepost, variant, - forceGoogleTranslate = false, + forceGoogleTranslate = true, }: { big?: boolean post: Shadow