diff options
Diffstat (limited to 'src/view/com/post/Post.tsx')
-rw-r--r-- | src/view/com/post/Post.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx index 614c5ea77..5139d5830 100644 --- a/src/view/com/post/Post.tsx +++ b/src/view/com/post/Post.tsx @@ -170,7 +170,9 @@ const PostLoaded = observer( const onOpenTranslate = React.useCallback(() => { Linking.openURL( encodeURI( - `https://translate.google.com/#auto|en|${record?.text || ''}`, + `https://translate.google.com/?sl=auto&tl=en&text=${ + record?.text || '' + }`, ), ) }, [record]) |