default translate to device language (#1207)

zio/stable
Eric Bailey 2023-08-17 17:45:36 -05:00 committed by GitHub
parent 4a59178cd2
commit 55ad56f689
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 10 deletions

View File

@ -79,8 +79,6 @@ export function isPostInLanguage(
return bcp47Match.basicFilter(lang, targetLangs).length > 0
}
export function getTranslatorLink(lang: string, text: string): string {
return encodeURI(
`https://translate.google.com/?sl=auto&tl=${lang}&text=${text}`,
)
export function getTranslatorLink(text: string): string {
return encodeURI(`https://translate.google.com/?sl=auto&text=${text}`)
}

View File

@ -67,8 +67,7 @@ export const PostThreadItem = observer(function PostThreadItem({
}, [item.post.uri, item.post.author])
const repostsTitle = 'Reposts of this post'
const primaryLanguage = store.preferences.contentLanguages[0] || 'en'
const translatorUrl = getTranslatorLink(primaryLanguage, record?.text || '')
const translatorUrl = getTranslatorLink(record?.text || '')
const needsTranslation = useMemo(
() =>
store.preferences.contentLanguages.length > 0 &&

View File

@ -133,8 +133,7 @@ const PostLoaded = observer(
replyAuthorDid = urip.hostname
}
const primaryLanguage = store.preferences.contentLanguages[0] || 'en'
const translatorUrl = getTranslatorLink(primaryLanguage, record?.text || '')
const translatorUrl = getTranslatorLink(record?.text || '')
const needsTranslation = useMemo(
() =>
store.preferences.contentLanguages.length > 0 &&

View File

@ -60,8 +60,7 @@ export const FeedItem = observer(function ({
const urip = new AtUri(record.reply.parent?.uri || record.reply.root.uri)
return urip.hostname
}, [record?.reply])
const primaryLanguage = store.preferences.contentLanguages[0] || 'en'
const translatorUrl = getTranslatorLink(primaryLanguage, record?.text || '')
const translatorUrl = getTranslatorLink(record?.text || '')
const needsTranslation = useMemo(
() =>
store.preferences.contentLanguages.length > 0 &&