diff --git a/package.json b/package.json
index 6daa929381..af6b67e8e3 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "bsky.app",
- "version": "1.118.0",
+ "version": "1.118.1",
"private": true,
"engines": {
"node": ">=20"
@@ -235,7 +235,7 @@
"zod": "^3.20.2"
},
"devDependencies": {
- "@atproto/dev-env": "^0.3.209",
+ "@atproto/dev-env": "^0.3.213",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/runtime": "^7.26.0",
diff --git a/src/components/Post/Translated/index.tsx b/src/components/Post/Translated/index.tsx
index 2ad5c74477..fb05fd9d3a 100644
--- a/src/components/Post/Translated/index.tsx
+++ b/src/components/Post/Translated/index.tsx
@@ -5,9 +5,13 @@ import {Trans, useLingui} from '@lingui/react/macro'
import {HITSLOP_30} from '#/lib/constants'
import {useGoogleTranslate} from '#/lib/hooks/useGoogleTranslate'
-import {guessLanguage, useTranslate} from '#/lib/translation'
+import {useTranslate} from '#/lib/translation'
import {type TranslationFunction} from '#/lib/translation'
-import {codeToLanguageName, languageName} from '#/locale/helpers'
+import {
+ codeToLanguageName,
+ isPostInLanguage,
+ languageName,
+} from '#/locale/helpers'
import {LANGUAGES} from '#/locale/languages'
import {useLanguagePrefs} from '#/state/preferences'
import {atoms as a, native, useTheme, web} from '#/alf'
@@ -36,8 +40,10 @@ export function TranslatedPost({
key: post.uri,
})
- const postLanguage = useMemo(() => guessLanguage(postText), [postText])
- const needsTranslation = postLanguage !== langPrefs.primaryLanguage
+ const needsTranslation = useMemo(() => {
+ if (hideTranslateLink) return false
+ return !isPostInLanguage(post, [langPrefs.primaryLanguage])
+ }, [hideTranslateLink, post, langPrefs.primaryLanguage])
switch (translationState.status) {
case 'loading':
@@ -49,7 +55,7 @@ export function TranslatedPost({
translate={translate}
postText={postText}
sourceLanguage={
- translationState.sourceLanguage ?? postLanguage ?? null // Fallback primarily for iOS
+ translationState.sourceLanguage ?? null // Fallback primarily for iOS
}
translatedText={translationState.translatedText}
/>
@@ -65,12 +71,10 @@ export function TranslatedPost({
)
default:
return (
- !hideTranslateLink &&
needsTranslation && (
)
@@ -96,12 +100,10 @@ function TranslationLoading() {
function TranslationLink({
postText,
primaryLanguage,
- sourceLanguage,
translate,
}: {
postText: string
primaryLanguage: string
- sourceLanguage: string | null
translate: TranslationFunction
}) {
const t = useTheme()
@@ -115,11 +117,11 @@ function TranslationLink({
})
ax.metric('translate', {
- sourceLanguages: sourceLanguage ? [sourceLanguage] : [],
+ sourceLanguages: [], // todo: get from post maybe?
targetLanguage: primaryLanguage,
textLength: postText.length,
})
- }, [ax, postText, primaryLanguage, translate, sourceLanguage])
+ }, [ax, postText, primaryLanguage, translate])
return (
) {
const {t: l} = useLingui()
+ const profileURL = makeProfileLink({
+ did: profile.did,
+ handle: profile.handle,
+ })
+
return (
{children}
diff --git a/src/lib/translation/index.tsx b/src/lib/translation/index.tsx
index d6c8a51733..50445767c2 100644
--- a/src/lib/translation/index.tsx
+++ b/src/lib/translation/index.tsx
@@ -9,7 +9,7 @@ import {useFocusEffect} from '@react-navigation/native'
import {useGoogleTranslate} from '#/lib/hooks/useGoogleTranslate'
import {logger} from '#/logger'
import {useAnalytics} from '#/analytics'
-import {HAS_ON_DEVICE_TRANSLATION} from '#/env'
+import {HAS_ON_DEVICE_TRANSLATION, IS_ANDROID, IS_IOS} from '#/env'
import {Context} from './context'
import {type TranslationFunctionParams, type TranslationState} from './types'
import {guessLanguage} from './utils'
@@ -34,18 +34,16 @@ async function attemptTranslation(
// Note that Android only supports two-character language codes and will fail
// on other input.
// https://developers.google.com/android/reference/com/google/mlkit/nl/translate/TranslateLanguage
- let targetLangCode =
- Platform.OS === 'android'
- ? targetLangCodeOriginal.split('-')[0]
- : targetLangCodeOriginal
- const sourceLangCode =
- Platform.OS === 'android'
- ? sourceLangCodeOriginal?.split('-')[0]
- : sourceLangCodeOriginal
+ let targetLangCode = IS_ANDROID
+ ? targetLangCodeOriginal.split('-')[0]
+ : targetLangCodeOriginal
+ const sourceLangCode = IS_ANDROID
+ ? sourceLangCodeOriginal?.split('-')[0]
+ : sourceLangCodeOriginal
// Special cases for regional languages since iOS differentiates and missing
// language packs must be downloaded and installed.
- if (Platform.OS === 'ios') {
+ if (IS_IOS) {
const deviceLocales = getLocales()
const primaryLanguageTag = deviceLocales[0]?.languageTag
switch (targetLangCodeOriginal) {
@@ -192,7 +190,9 @@ export function Provider({children}: React.PropsWithChildren) {
}, [])
const clearTranslation = useCallback((key: string) => {
- LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
+ if (!IS_ANDROID) {
+ LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
+ }
setTranslationState(prev => {
delete prev[key]
return {...prev}
@@ -224,8 +224,9 @@ export function Provider({children}: React.PropsWithChildren) {
return
}
- // Translate after the next state change.
- LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
+ if (!IS_ANDROID) {
+ LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
+ }
setTranslationState(prev => ({
...prev,
[key]: {status: 'loading'},
@@ -242,7 +243,9 @@ export function Provider({children}: React.PropsWithChildren) {
sourceLanguage: result.sourceLanguage,
targetLanguage: result.targetLanguage,
})
- LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
+ if (!IS_ANDROID) {
+ LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
+ }
setTranslationState(prev => ({
...prev,
[key]: {
@@ -263,7 +266,9 @@ export function Provider({children}: React.PropsWithChildren) {
targetLanguage: targetLangCode,
})
let errorMessage = l`Device failed to translate :(`
- LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
+ if (!IS_ANDROID) {
+ LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
+ }
setTranslationState(prev => ({
...prev,
[key]: {status: 'error', message: errorMessage},
diff --git a/src/locale/locales/an/messages.po b/src/locale/locales/an/messages.po
index adb9d51ade..5068f6decd 100644
--- a/src/locale/locales/an/messages.po
+++ b/src/locale/locales/an/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: an\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Aragonese\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Anyadir cuenta"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Sesión ya iniciada como @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Texto alternativo"
msgid "Alt Text"
msgstr "Texto alternativo"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Lo texto alternativo describe imáchens a usuarios ciegos u con baixa visión, y aduya a dar mas contexto a toz."
@@ -1974,7 +1974,7 @@ msgstr "Subtítols y texto alternativo"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Cambiar"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr "Cambiar la razón d'o reporte"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Editar canals"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Editar la imachen"
@@ -4986,8 +4986,8 @@ msgstr "Amagar esta publicación?"
msgid "Hide this reply?"
msgstr "Amagar esta respuesta?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr "Sacar d'as tuyas canals?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Eliminar la imachen"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Triar lo emoji {emojiName} como lo tuyo avatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "Tema"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Traducir"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr ""
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Tornar a intentar"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/ar/messages.po b/src/locale/locales/ar/messages.po
index 6e84337100..3332ee5673 100644
--- a/src/locale/locales/ar/messages.po
+++ b/src/locale/locales/ar/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ar_SA\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Arabic, Saudi Arabia\n"
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
@@ -558,28 +558,28 @@ msgstr ""
#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.likeCount)
#. placeholder {1}: post.likeCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:489
msgid "<0>{0}0> {1, plural, one {like} other {likes}}"
msgstr ""
#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.quoteCount)
#. placeholder {1}: post.quoteCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471
msgid "<0>{0}0> {1, plural, one {quote} other {quotes}}"
msgstr ""
#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.repostCount)
#. placeholder {1}: post.repostCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "<0>{0}0> {1, plural, one {repost} other {reposts}}"
msgstr ""
#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.bookmarkCount)
#. placeholder {1}: post.bookmarkCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:516
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
msgid "<0>{0}0> {1, plural, one {save} other {saves}}"
msgstr ""
@@ -733,7 +733,7 @@ msgstr ""
msgid "Account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:425
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422
#: src/screens/Messages/components/RequestButtons.tsx:97
#: src/view/com/profile/ProfileMenu.tsx:182
msgctxt "toast"
@@ -753,7 +753,7 @@ msgstr ""
msgid "Account is deactivated"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:447
#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account muted"
@@ -792,7 +792,7 @@ msgctxt "toast"
msgid "Account unfollowed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:439
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unmuted"
@@ -844,17 +844,17 @@ msgid "Add a user to this list"
msgstr ""
#: src/components/dialogs/SwitchAccount.tsx:56
-#: src/screens/Deactivated.tsx:186
+#: src/screens/Deactivated.tsx:184
msgid "Add account"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:171
-#: src/view/com/composer/photos/Gallery.tsx:218
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:97
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:105
+#: src/view/com/composer/photos/Gallery.tsx:181
+#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
msgstr ""
@@ -1152,13 +1152,13 @@ msgstr ""
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:189
+#: src/view/com/composer/photos/Gallery.tsx:199
msgid "ALT"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:55
#: src/view/com/composer/GifAltText.tsx:157
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:130
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:132
#: src/view/com/composer/videos/SubtitleDialog.tsx:41
#: src/view/com/composer/videos/SubtitleDialog.tsx:59
#: src/view/com/composer/videos/SubtitleDialog.tsx:110
@@ -1170,13 +1170,13 @@ msgstr ""
msgid "Alt Text"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:262
+#: src/view/com/composer/photos/Gallery.tsx:273
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr ""
#. placeholder {0}: i18n.number(MAX_ALT_TEXT)
#: src/view/com/composer/GifAltText.tsx:182
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:151
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
msgstr ""
@@ -1442,12 +1442,12 @@ msgid "Apply Pull Request"
msgstr ""
#. placeholder {0}: niceDate(i18n, createdAt, 'medium')
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:728
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623
msgid "Archived from {0}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:737
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:594
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
msgid "Archived post"
msgstr ""
@@ -1505,8 +1505,8 @@ msgstr ""
msgid "Artistic or non-erotic nudity."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
msgid "Assign topic for algo"
msgstr ""
@@ -1541,7 +1541,7 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:178
#: src/screens/Messages/components/ChatDisabled.tsx:146
#: src/screens/Messages/components/ChatDisabled.tsx:147
-#: src/screens/Profile/Header/Shell.tsx:179
+#: src/screens/Profile/Header/Shell.tsx:184
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
#: src/screens/Signup/BackNextButtons.tsx:42
@@ -1618,7 +1618,7 @@ msgstr ""
msgid "Birthday"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:826
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:814
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
#: src/view/com/profile/ProfileMenu.tsx:553
msgid "Block"
@@ -1626,8 +1626,8 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:273
#: src/components/dms/ConvoMenu.tsx:276
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:711
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:713
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:716
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:718
#: src/screens/Messages/components/RequestButtons.tsx:150
#: src/screens/Messages/components/RequestButtons.tsx:152
#: src/view/com/profile/ProfileMenu.tsx:459
@@ -1635,7 +1635,7 @@ msgstr ""
msgid "Block account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:821
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
#: src/view/com/profile/ProfileMenu.tsx:536
msgid "Block Account?"
msgstr ""
@@ -1687,7 +1687,7 @@ msgstr ""
msgid "Blocked Accounts"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:823
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812
#: src/view/com/profile/ProfileMenu.tsx:548
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
msgid "Bluesky"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:753
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:648
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr ""
@@ -1921,7 +1921,7 @@ msgstr ""
#: src/features/liveNow/components/GoLiveDialog.tsx:248
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
-#: src/screens/Deactivated.tsx:152
+#: src/screens/Deactivated.tsx:150
#: src/screens/Profile/Header/EditProfileDialog.tsx:219
#: src/screens/Profile/Header/EditProfileDialog.tsx:227
#: src/screens/Search/Shell.tsx:396
@@ -1946,7 +1946,7 @@ msgstr ""
msgid "Cancel quote post"
msgstr ""
-#: src/screens/Deactivated.tsx:146
+#: src/screens/Deactivated.tsx:144
msgid "Cancel reactivation and sign out"
msgstr ""
@@ -1954,9 +1954,9 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:108
-#: src/components/PostControls/index.tsx:139
-#: src/components/PostControls/index.tsx:167
+#: src/components/PostControls/index.tsx:109
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:164
#: src/state/shell/composer/index.tsx:108
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -1974,7 +1974,7 @@ msgstr ""
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:150
+#: src/components/Post/Translated/index.tsx:395
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr ""
@@ -2020,8 +2020,8 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:146
-msgid "Change source language"
+#: src/components/Post/Translated/index.tsx:385
+msgid "Change the source language"
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
@@ -2689,8 +2689,8 @@ msgstr ""
msgid "Copy post at:// URI"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:518
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:531
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Copy post text"
msgstr ""
@@ -2970,7 +2970,7 @@ msgid "Default icons"
msgstr ""
#: src/components/dms/MessageContextMenu.tsx:204
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:772
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3043,8 +3043,8 @@ msgstr ""
msgid "Delete my account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:751
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758
#: src/view/com/composer/Composer.tsx:1430
msgid "Delete post"
msgstr ""
@@ -3062,7 +3062,7 @@ msgstr ""
msgid "Delete this list?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:769
msgid "Delete this post?"
msgstr ""
@@ -3093,16 +3093,16 @@ msgid "Description"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:153
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:126
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128
msgid "Descriptive alt text"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:655
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:670
msgid "Detach quote"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:797
msgid "Detach quote post?"
msgstr ""
@@ -3121,6 +3121,10 @@ msgstr ""
msgid "Developer options"
msgstr ""
+#: src/lib/translation/index.tsx:265
+msgid "Device failed to translate :("
+msgstr ""
+
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
msgstr ""
@@ -3340,7 +3344,7 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1119
+#: src/screens/VideoFeed/index.tsx:1111
msgid "Double tap to like"
msgstr ""
@@ -3442,12 +3446,12 @@ msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:196
+#: src/view/com/composer/photos/Gallery.tsx:206
msgid "Edit image"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750
msgid "Edit interaction settings"
msgstr ""
@@ -3803,7 +3807,7 @@ msgstr ""
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:991
+#: src/screens/VideoFeed/index.tsx:987
msgid "Expands or collapses post text"
msgstr ""
@@ -3846,7 +3850,7 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:808
+#: src/Navigation.tsx:809
#: src/screens/Search/Shell.tsx:354
#: src/view/shell/desktop/LeftNav.tsx:689
#: src/view/shell/Drawer.tsx:417
@@ -3932,7 +3936,7 @@ msgstr ""
msgid "Failed to delete message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:214
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219
msgid "Failed to delete post, please try again"
msgstr ""
@@ -4090,7 +4094,7 @@ msgstr ""
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:247
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:249
msgid "Failed to toggle thread mute, please try again"
msgstr ""
@@ -4181,8 +4185,8 @@ msgstr ""
msgid "Feedback"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:301
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:325
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:326
msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
@@ -4343,7 +4347,7 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:153
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:388
-#: src/screens/VideoFeed/index.tsx:875
+#: src/screens/VideoFeed/index.tsx:870
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
@@ -4355,7 +4359,7 @@ msgstr ""
msgid "Follow {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:852
+#: src/screens/VideoFeed/index.tsx:849
msgid "Follow {handle}"
msgstr ""
@@ -4450,7 +4454,7 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:156
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:384
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/VideoFeed/index.tsx:868
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4471,7 +4475,7 @@ msgstr ""
msgid "Following {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:851
+#: src/screens/VideoFeed/index.tsx:848
msgid "Following {handle}"
msgstr ""
@@ -4680,9 +4684,9 @@ msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/ProfileList/components/ErrorScreen.tsx:41
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1180
-#: src/screens/VideoFeed/index.tsx:1184
-#: src/view/com/auth/LoggedOut.tsx:92
+#: src/screens/VideoFeed/index.tsx:1172
+#: src/screens/VideoFeed/index.tsx:1176
+#: src/view/com/auth/LoggedOut.tsx:93
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
#: src/view/screens/NotFound.tsx:58
@@ -4909,7 +4913,7 @@ msgstr ""
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:648
+#: src/screens/VideoFeed/index.tsx:647
msgid "Hidden by your moderation settings."
msgstr ""
@@ -4922,7 +4926,7 @@ msgstr ""
#: src/components/moderation/ContentHider.tsx:220
#: src/components/moderation/LabelPreference.tsx:141
#: src/components/moderation/PostHider.tsx:140
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:780
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
#: src/lib/moderation/useLabelBehaviorDescription.ts:28
@@ -4949,18 +4953,18 @@ msgstr ""
msgid "Hide lists"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:612
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
msgid "Hide post for me"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:639
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:644
msgid "Hide reply for everyone"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:611
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:617
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
msgid "Hide reply for me"
msgstr ""
@@ -4973,17 +4977,19 @@ msgstr ""
msgid "Hide this event"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
msgid "Hide this post?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:804
msgid "Hide this reply?"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
+#: src/components/Post/Translated/index.tsx:192
+#: src/components/Post/Translated/index.tsx:318
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
msgstr ""
@@ -5050,8 +5056,8 @@ msgstr ""
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/Navigation.tsx:803
-#: src/Navigation.tsx:823
+#: src/Navigation.tsx:804
+#: src/Navigation.tsx:824
#: src/view/shell/bottom-bar/BottomBar.tsx:177
#: src/view/shell/desktop/LeftNav.tsx:671
#: src/view/shell/Drawer.tsx:443
@@ -5152,7 +5158,7 @@ msgstr ""
msgid "If you need to update your email, <0>click here0>."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
@@ -5322,7 +5328,7 @@ msgstr ""
msgid "Invalid handle. Please try a different one."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:397
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:396
msgctxt "toast"
msgid "Invalid interaction settings."
msgstr ""
@@ -5637,7 +5643,7 @@ msgstr ""
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:288
+#: src/components/PostControls/index.tsx:278
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5704,7 +5710,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:499
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr ""
@@ -6051,7 +6057,7 @@ msgstr ""
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:818
+#: src/Navigation.tsx:819
msgid "Messages"
msgstr ""
@@ -6184,8 +6190,8 @@ msgstr ""
msgid "Mute {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705
#: src/view/com/profile/ProfileMenu.tsx:438
#: src/view/com/profile/ProfileMenu.tsx:445
msgid "Mute account"
@@ -6237,13 +6243,13 @@ msgstr ""
msgid "Mute this word until you unmute it"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
msgid "Mute thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:603
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:605
msgid "Mute words & tags"
msgstr ""
@@ -6726,7 +6732,7 @@ msgid "Notification Sounds"
msgstr ""
#: src/Navigation.tsx:575
-#: src/Navigation.tsx:813
+#: src/Navigation.tsx:814
#: src/screens/Notifications/ActivityList.tsx:31
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
#: src/screens/Settings/NotificationSettings/index.tsx:93
@@ -6790,7 +6796,7 @@ msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:759
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:654
msgid "Okay"
msgstr ""
@@ -6928,7 +6934,7 @@ msgstr ""
msgid "Open pack"
msgstr ""
-#: src/components/PostControls/PostMenu/index.tsx:66
+#: src/components/PostControls/PostMenu/index.tsx:67
msgid "Open post options menu"
msgstr ""
@@ -7060,11 +7066,11 @@ msgstr ""
msgid "Options:"
msgstr ""
-#: src/screens/Deactivated.tsx:194
+#: src/screens/Deactivated.tsx:192
msgid "Or, continue with another account."
msgstr ""
-#: src/screens/Deactivated.tsx:181
+#: src/screens/Deactivated.tsx:179
msgid "Or, sign in to one of your other accounts."
msgstr ""
@@ -7260,8 +7266,8 @@ msgstr ""
msgid "Pin to Home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:486
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
msgid "Pin to your profile"
msgstr ""
@@ -7524,7 +7530,7 @@ msgstr ""
msgid "Post by @{0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:194
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199
msgctxt "toast"
msgid "Post deleted"
msgstr ""
@@ -7533,10 +7539,10 @@ msgstr ""
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:143
-#: src/screens/PostThread/components/ThreadItemPost.tsx:112
-#: src/screens/PostThread/components/ThreadItemTreePost.tsx:108
-#: src/screens/VideoFeed/index.tsx:552
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:130
+#: src/screens/PostThread/components/ThreadItemPost.tsx:113
+#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109
+#: src/screens/VideoFeed/index.tsx:551
msgid "Post has been deleted"
msgstr ""
@@ -7705,6 +7711,10 @@ msgstr ""
msgid "Profile"
msgstr ""
+#: src/screens/Profile/Header/Shell.tsx:174
+msgid "Profile banner placeholder"
+msgstr ""
+
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
msgstr ""
@@ -7786,11 +7796,11 @@ msgstr ""
msgid "Quote post"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:346
msgid "Quote post was re-attached"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
msgid "Quote post was successfully detached"
msgstr ""
@@ -7808,7 +7818,7 @@ msgstr ""
msgid "Quotes"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:481
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467
msgid "Quotes of this post"
msgstr ""
@@ -7820,8 +7830,8 @@ msgstr ""
msgid "Rate limit exceeded. Please try again later."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
msgid "Re-attach quote"
msgstr ""
@@ -7829,7 +7839,7 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/screens/Deactivated.tsx:135
+#: src/screens/Deactivated.tsx:133
msgid "Reactivate your account"
msgstr ""
@@ -7848,11 +7858,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:992
+#: src/screens/VideoFeed/index.tsx:988
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:992
+#: src/screens/VideoFeed/index.tsx:988
msgid "Read more"
msgstr ""
@@ -8020,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:205
+#: src/view/com/composer/photos/Gallery.tsx:215
msgid "Remove image"
msgstr ""
@@ -8172,7 +8182,7 @@ msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:242
+#: src/components/PostControls/index.tsx:236
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -8198,12 +8208,12 @@ msgstr ""
msgid "Reply sorting"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384
msgctxt "toast"
msgid "Reply visibility updated"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:382
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
msgid "Reply was successfully hidden"
msgstr ""
@@ -8246,8 +8256,8 @@ msgstr ""
msgid "Report message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:720
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:725
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Report post"
msgstr ""
@@ -8339,7 +8349,7 @@ msgstr ""
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:447
msgid "Reposts of this post"
msgstr ""
@@ -8482,7 +8492,7 @@ msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:579
-#: src/screens/VideoFeed/index.tsx:1181
+#: src/screens/VideoFeed/index.tsx:1173
#: src/view/screens/NotFound.tsx:61
msgid "Returns to previous page"
msgstr ""
@@ -8508,8 +8518,8 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:205
#: src/view/com/composer/photos/EditImageDialog.web.tsx:63
#: src/view/com/composer/photos/EditImageDialog.web.tsx:76
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:165
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:175
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:167
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:177
msgid "Save"
msgstr ""
@@ -8900,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr ""
-#: src/components/Post/Translated/index.tsx:156
+#: src/components/Post/Translated/index.tsx:402
msgid "Select the source language"
msgstr ""
@@ -9199,8 +9209,8 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
#: src/screens/List/ListHiddenScreen.tsx:194
-#: src/screens/VideoFeed/index.tsx:651
-#: src/screens/VideoFeed/index.tsx:657
+#: src/screens/VideoFeed/index.tsx:650
+#: src/screens/VideoFeed/index.tsx:656
msgid "Show anyway"
msgstr ""
@@ -9217,8 +9227,8 @@ msgstr ""
msgid "Show customization options"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:549
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:551
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564
msgid "Show less like this"
msgstr ""
@@ -9239,8 +9249,8 @@ msgstr ""
msgid "Show More"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:541
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556
msgid "Show more like this"
msgstr ""
@@ -9266,8 +9276,8 @@ msgstr ""
msgid "Show replies as"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:628
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643
msgid "Show reply for everyone"
msgstr ""
@@ -9294,7 +9304,7 @@ msgstr ""
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:700
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:595
msgid "Shows information about when this post was created"
msgstr ""
@@ -9340,8 +9350,8 @@ msgstr ""
msgid "Sign in as..."
msgstr ""
-#: src/screens/Deactivated.tsx:197
-#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:195
+#: src/screens/Deactivated.tsx:201
msgid "Sign in or create an account"
msgstr ""
@@ -9357,8 +9367,8 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:529
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:542
msgid "Sign in to view post"
msgstr ""
@@ -9478,7 +9488,7 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
#: src/components/moderation/ReportDialog/index.tsx:273
-#: src/screens/Deactivated.tsx:88
+#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
msgid "Something went wrong, please try again"
@@ -9509,8 +9519,8 @@ msgstr ""
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
-#: src/App.native.tsx:142
-#: src/App.web.tsx:118
+#: src/App.native.tsx:143
+#: src/App.web.tsx:119
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -9896,7 +9906,7 @@ msgstr ""
msgid "That's all, folks!"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1153
+#: src/screens/VideoFeed/index.tsx:1145
msgid "That's everything!"
msgstr ""
@@ -10082,9 +10092,9 @@ msgid "There was an issue updating your feeds, please check your internet connec
msgstr ""
#. placeholder {0}: e.toString()
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:430
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:444
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:441
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:452
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:128
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90
@@ -10309,7 +10319,7 @@ msgstr ""
#. placeholder {0}: niceDate(i18n, createdAt)
#. placeholder {1}: niceDate(i18n, indexedAt)
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:740
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
@@ -10337,7 +10347,7 @@ msgstr ""
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:813
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:805
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr ""
@@ -10414,7 +10424,7 @@ msgstr ""
msgid "This will remove @{0} from the quick access list."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr ""
@@ -10511,23 +10521,20 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:512
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:640
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/components/Post/Translated/index.tsx:139
+#: src/components/Post/Translated/index.tsx:146
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr ""
-#: src/components/Post/Translated/index.tsx:78
+#: src/components/Post/Translated/index.tsx:292
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:76
-msgid "Translated from {langName}"
-msgstr ""
-
-#: src/components/Post/Translated/index.tsx:50
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:626
+#: src/components/Post/Translated/index.tsx:89
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
msgstr ""
@@ -10566,6 +10573,11 @@ msgctxt "action"
msgid "Try again"
msgstr ""
+#: src/components/Post/Translated/index.tsx:205
+#: src/components/Post/Translated/index.tsx:213
+msgid "Try Google Translate"
+msgstr ""
+
#: src/lib/interests.ts:74
msgid "TV"
msgstr ""
@@ -10701,7 +10713,7 @@ msgstr ""
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:856
+#: src/screens/VideoFeed/index.tsx:852
msgid "Unfollows the user"
msgstr ""
@@ -10735,7 +10747,7 @@ msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:278
+#: src/components/PostControls/index.tsx:270
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -10756,8 +10768,8 @@ msgstr ""
msgid "Unmute {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:693
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:698
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:704
#: src/view/com/profile/ProfileMenu.tsx:437
#: src/view/com/profile/ProfileMenu.tsx:443
msgid "Unmute account"
@@ -10772,8 +10784,8 @@ msgstr ""
msgid "Unmute list"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
msgid "Unmute thread"
msgstr ""
@@ -10798,8 +10810,8 @@ msgstr ""
msgid "Unpin from home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:492
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
msgid "Unpin from profile"
msgstr ""
@@ -10872,12 +10884,12 @@ msgstr ""
msgid "Update your email"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:402
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
@@ -11176,7 +11188,7 @@ msgid "Video from {0}: {text}"
msgstr ""
#. placeholder {0}: sanitizeHandle( post.author.handle, '@', )
-#: src/screens/VideoFeed/index.tsx:1114
+#: src/screens/VideoFeed/index.tsx:1107
msgid "Video from {0}. Tap to play or pause the video"
msgstr ""
@@ -11185,11 +11197,11 @@ msgstr ""
msgid "Video Games"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1111
+#: src/screens/VideoFeed/index.tsx:1106
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1111
+#: src/screens/VideoFeed/index.tsx:1106
msgid "Video is playing"
msgstr ""
@@ -11224,7 +11236,7 @@ msgid "View"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Profile/Header/Shell.tsx:262
+#: src/screens/Profile/Header/Shell.tsx:267
msgid "View {0}'s avatar"
msgstr ""
@@ -11233,7 +11245,7 @@ msgstr ""
#. placeholder {0}: profile.handle
#: src/screens/Profile/components/ProfileFeedHeader.tsx:459
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:815
+#: src/screens/VideoFeed/index.tsx:813
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr ""
@@ -11259,8 +11271,8 @@ msgstr ""
msgid "View debug entry"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:679
-#: src/screens/VideoFeed/index.tsx:697
+#: src/screens/VideoFeed/index.tsx:678
+#: src/screens/VideoFeed/index.tsx:696
msgid "View details"
msgstr ""
@@ -11296,6 +11308,10 @@ msgstr ""
msgid "View profile"
msgstr ""
+#: src/screens/Profile/Header/Shell.tsx:173
+msgid "View profile banner"
+msgstr ""
+
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
msgstr ""
@@ -11585,7 +11601,7 @@ msgstr ""
msgid "We've confirmed your age assurance status. You can now close this dialog."
msgstr ""
-#: src/screens/Deactivated.tsx:119
+#: src/screens/Deactivated.tsx:117
msgid "Welcome back!"
msgstr ""
@@ -11733,15 +11749,15 @@ msgstr ""
msgid "Yes, delete this starter pack"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:806
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800
msgid "Yes, detach"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:816
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:807
msgid "Yes, hide"
msgstr ""
-#: src/screens/Deactivated.tsx:141
+#: src/screens/Deactivated.tsx:139
msgid "Yes, reactivate my account"
msgstr ""
@@ -11861,7 +11877,7 @@ msgstr ""
msgid "You can only select one video at a time."
msgstr ""
-#: src/screens/Deactivated.tsx:127
+#: src/screens/Deactivated.tsx:125
msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
msgstr ""
@@ -12059,7 +12075,7 @@ msgid "You need to verify your email address before you can enable email 2FA."
msgstr ""
#. placeholder {0}: currentAccount?.handle
-#: src/screens/Deactivated.tsx:122
+#: src/screens/Deactivated.tsx:120
msgid "You previously deactivated @{0}."
msgstr ""
@@ -12093,11 +12109,11 @@ msgstr ""
msgid "You will no longer receive notifications for {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:239
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:243
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:229
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:234
msgid "You will now receive notifications for this thread"
msgstr ""
@@ -12152,7 +12168,7 @@ msgstr ""
msgid "You're in line"
msgstr ""
-#: src/screens/Deactivated.tsx:83
+#: src/screens/Deactivated.tsx:81
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -12202,7 +12218,7 @@ msgstr ""
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1162
+#: src/screens/VideoFeed/index.tsx:1154
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
diff --git a/src/locale/locales/ast/messages.po b/src/locale/locales/ast/messages.po
index c230eab99d..bab6b3e9ea 100644
--- a/src/locale/locales/ast/messages.po
+++ b/src/locale/locales/ast/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ast\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Asturian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Yá aniciesti la sesión como @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Testu alternativu"
msgid "Alt Text"
msgstr "Testu alternativu"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "El testu alternativu describe imáxenes pa persones ciegues o con problemes de visión y ayuda a dar contestu a tol mundu."
@@ -1974,7 +1974,7 @@ msgstr "Sotítulos y testu alternativu"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr ""
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Editar los feeds"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Editar la imaxe"
@@ -4986,8 +4986,8 @@ msgstr "¿Quies esconder esta publicación?"
msgid "Hide this reply?"
msgstr "¿Quies esconder esta rempuesta?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr ""
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr ""
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "Tema"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Traducir"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr ""
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Retentar"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/az/messages.po b/src/locale/locales/az/messages.po
index 528ff4c208..820ddb39c7 100644
--- a/src/locale/locales/az/messages.po
+++ b/src/locale/locales/az/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: az\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:46\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Azerbaijani\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -558,28 +558,28 @@ msgstr ""
#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.likeCount)
#. placeholder {1}: post.likeCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:489
msgid "<0>{0}0> {1, plural, one {like} other {likes}}"
msgstr ""
#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.quoteCount)
#. placeholder {1}: post.quoteCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471
msgid "<0>{0}0> {1, plural, one {quote} other {quotes}}"
msgstr ""
#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.repostCount)
#. placeholder {1}: post.repostCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "<0>{0}0> {1, plural, one {repost} other {reposts}}"
msgstr ""
#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.bookmarkCount)
#. placeholder {1}: post.bookmarkCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:516
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
msgid "<0>{0}0> {1, plural, one {save} other {saves}}"
msgstr ""
@@ -733,7 +733,7 @@ msgstr ""
msgid "Account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:425
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422
#: src/screens/Messages/components/RequestButtons.tsx:97
#: src/view/com/profile/ProfileMenu.tsx:182
msgctxt "toast"
@@ -753,7 +753,7 @@ msgstr ""
msgid "Account is deactivated"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:447
#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account muted"
@@ -792,7 +792,7 @@ msgctxt "toast"
msgid "Account unfollowed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:439
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unmuted"
@@ -844,17 +844,17 @@ msgid "Add a user to this list"
msgstr ""
#: src/components/dialogs/SwitchAccount.tsx:56
-#: src/screens/Deactivated.tsx:186
+#: src/screens/Deactivated.tsx:184
msgid "Add account"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:171
-#: src/view/com/composer/photos/Gallery.tsx:218
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:97
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:105
+#: src/view/com/composer/photos/Gallery.tsx:181
+#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
msgstr ""
@@ -1152,13 +1152,13 @@ msgstr ""
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:189
+#: src/view/com/composer/photos/Gallery.tsx:199
msgid "ALT"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:55
#: src/view/com/composer/GifAltText.tsx:157
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:130
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:132
#: src/view/com/composer/videos/SubtitleDialog.tsx:41
#: src/view/com/composer/videos/SubtitleDialog.tsx:59
#: src/view/com/composer/videos/SubtitleDialog.tsx:110
@@ -1170,13 +1170,13 @@ msgstr ""
msgid "Alt Text"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:262
+#: src/view/com/composer/photos/Gallery.tsx:273
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr ""
#. placeholder {0}: i18n.number(MAX_ALT_TEXT)
#: src/view/com/composer/GifAltText.tsx:182
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:151
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
msgstr ""
@@ -1442,12 +1442,12 @@ msgid "Apply Pull Request"
msgstr ""
#. placeholder {0}: niceDate(i18n, createdAt, 'medium')
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:728
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623
msgid "Archived from {0}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:737
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:594
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
msgid "Archived post"
msgstr ""
@@ -1505,8 +1505,8 @@ msgstr ""
msgid "Artistic or non-erotic nudity."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
msgid "Assign topic for algo"
msgstr ""
@@ -1541,7 +1541,7 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:178
#: src/screens/Messages/components/ChatDisabled.tsx:146
#: src/screens/Messages/components/ChatDisabled.tsx:147
-#: src/screens/Profile/Header/Shell.tsx:179
+#: src/screens/Profile/Header/Shell.tsx:184
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
#: src/screens/Signup/BackNextButtons.tsx:42
@@ -1618,7 +1618,7 @@ msgstr ""
msgid "Birthday"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:826
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:814
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
#: src/view/com/profile/ProfileMenu.tsx:553
msgid "Block"
@@ -1626,8 +1626,8 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:273
#: src/components/dms/ConvoMenu.tsx:276
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:711
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:713
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:716
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:718
#: src/screens/Messages/components/RequestButtons.tsx:150
#: src/screens/Messages/components/RequestButtons.tsx:152
#: src/view/com/profile/ProfileMenu.tsx:459
@@ -1635,7 +1635,7 @@ msgstr ""
msgid "Block account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:821
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
#: src/view/com/profile/ProfileMenu.tsx:536
msgid "Block Account?"
msgstr ""
@@ -1687,7 +1687,7 @@ msgstr ""
msgid "Blocked Accounts"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:823
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812
#: src/view/com/profile/ProfileMenu.tsx:548
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
msgid "Bluesky"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:753
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:648
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr ""
@@ -1921,7 +1921,7 @@ msgstr ""
#: src/features/liveNow/components/GoLiveDialog.tsx:248
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
-#: src/screens/Deactivated.tsx:152
+#: src/screens/Deactivated.tsx:150
#: src/screens/Profile/Header/EditProfileDialog.tsx:219
#: src/screens/Profile/Header/EditProfileDialog.tsx:227
#: src/screens/Search/Shell.tsx:396
@@ -1946,7 +1946,7 @@ msgstr ""
msgid "Cancel quote post"
msgstr ""
-#: src/screens/Deactivated.tsx:146
+#: src/screens/Deactivated.tsx:144
msgid "Cancel reactivation and sign out"
msgstr ""
@@ -1954,9 +1954,9 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:108
-#: src/components/PostControls/index.tsx:139
-#: src/components/PostControls/index.tsx:167
+#: src/components/PostControls/index.tsx:109
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:164
#: src/state/shell/composer/index.tsx:108
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -1974,7 +1974,7 @@ msgstr ""
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:150
+#: src/components/Post/Translated/index.tsx:395
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr ""
@@ -2020,8 +2020,8 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:146
-msgid "Change source language"
+#: src/components/Post/Translated/index.tsx:385
+msgid "Change the source language"
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
@@ -2689,8 +2689,8 @@ msgstr ""
msgid "Copy post at:// URI"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:518
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:531
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Copy post text"
msgstr ""
@@ -2970,7 +2970,7 @@ msgid "Default icons"
msgstr ""
#: src/components/dms/MessageContextMenu.tsx:204
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:772
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3043,8 +3043,8 @@ msgstr ""
msgid "Delete my account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:751
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758
#: src/view/com/composer/Composer.tsx:1430
msgid "Delete post"
msgstr ""
@@ -3062,7 +3062,7 @@ msgstr ""
msgid "Delete this list?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:769
msgid "Delete this post?"
msgstr ""
@@ -3093,16 +3093,16 @@ msgid "Description"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:153
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:126
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128
msgid "Descriptive alt text"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:655
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:670
msgid "Detach quote"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:797
msgid "Detach quote post?"
msgstr ""
@@ -3121,6 +3121,10 @@ msgstr ""
msgid "Developer options"
msgstr ""
+#: src/lib/translation/index.tsx:265
+msgid "Device failed to translate :("
+msgstr ""
+
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
msgstr ""
@@ -3340,7 +3344,7 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1119
+#: src/screens/VideoFeed/index.tsx:1111
msgid "Double tap to like"
msgstr ""
@@ -3442,12 +3446,12 @@ msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:196
+#: src/view/com/composer/photos/Gallery.tsx:206
msgid "Edit image"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750
msgid "Edit interaction settings"
msgstr ""
@@ -3803,7 +3807,7 @@ msgstr ""
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:991
+#: src/screens/VideoFeed/index.tsx:987
msgid "Expands or collapses post text"
msgstr ""
@@ -3846,7 +3850,7 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:808
+#: src/Navigation.tsx:809
#: src/screens/Search/Shell.tsx:354
#: src/view/shell/desktop/LeftNav.tsx:689
#: src/view/shell/Drawer.tsx:417
@@ -3932,7 +3936,7 @@ msgstr ""
msgid "Failed to delete message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:214
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219
msgid "Failed to delete post, please try again"
msgstr ""
@@ -4090,7 +4094,7 @@ msgstr ""
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:247
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:249
msgid "Failed to toggle thread mute, please try again"
msgstr ""
@@ -4181,8 +4185,8 @@ msgstr ""
msgid "Feedback"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:301
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:325
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:326
msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
@@ -4343,7 +4347,7 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:153
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:388
-#: src/screens/VideoFeed/index.tsx:875
+#: src/screens/VideoFeed/index.tsx:870
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
@@ -4355,7 +4359,7 @@ msgstr ""
msgid "Follow {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:852
+#: src/screens/VideoFeed/index.tsx:849
msgid "Follow {handle}"
msgstr ""
@@ -4450,7 +4454,7 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:156
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:384
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/VideoFeed/index.tsx:868
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4471,7 +4475,7 @@ msgstr ""
msgid "Following {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:851
+#: src/screens/VideoFeed/index.tsx:848
msgid "Following {handle}"
msgstr ""
@@ -4680,9 +4684,9 @@ msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/ProfileList/components/ErrorScreen.tsx:41
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1180
-#: src/screens/VideoFeed/index.tsx:1184
-#: src/view/com/auth/LoggedOut.tsx:92
+#: src/screens/VideoFeed/index.tsx:1172
+#: src/screens/VideoFeed/index.tsx:1176
+#: src/view/com/auth/LoggedOut.tsx:93
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
#: src/view/screens/NotFound.tsx:58
@@ -4909,7 +4913,7 @@ msgstr ""
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:648
+#: src/screens/VideoFeed/index.tsx:647
msgid "Hidden by your moderation settings."
msgstr ""
@@ -4922,7 +4926,7 @@ msgstr ""
#: src/components/moderation/ContentHider.tsx:220
#: src/components/moderation/LabelPreference.tsx:141
#: src/components/moderation/PostHider.tsx:140
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:780
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
#: src/lib/moderation/useLabelBehaviorDescription.ts:28
@@ -4949,18 +4953,18 @@ msgstr ""
msgid "Hide lists"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:612
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
msgid "Hide post for me"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:639
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:644
msgid "Hide reply for everyone"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:611
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:617
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
msgid "Hide reply for me"
msgstr ""
@@ -4973,17 +4977,19 @@ msgstr ""
msgid "Hide this event"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
msgid "Hide this post?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:804
msgid "Hide this reply?"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
+#: src/components/Post/Translated/index.tsx:192
+#: src/components/Post/Translated/index.tsx:318
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
msgstr ""
@@ -5050,8 +5056,8 @@ msgstr ""
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/Navigation.tsx:803
-#: src/Navigation.tsx:823
+#: src/Navigation.tsx:804
+#: src/Navigation.tsx:824
#: src/view/shell/bottom-bar/BottomBar.tsx:177
#: src/view/shell/desktop/LeftNav.tsx:671
#: src/view/shell/Drawer.tsx:443
@@ -5152,7 +5158,7 @@ msgstr ""
msgid "If you need to update your email, <0>click here0>."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
@@ -5322,7 +5328,7 @@ msgstr ""
msgid "Invalid handle. Please try a different one."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:397
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:396
msgctxt "toast"
msgid "Invalid interaction settings."
msgstr ""
@@ -5637,7 +5643,7 @@ msgstr ""
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:288
+#: src/components/PostControls/index.tsx:278
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5704,7 +5710,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:499
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr ""
@@ -6051,7 +6057,7 @@ msgstr ""
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:818
+#: src/Navigation.tsx:819
msgid "Messages"
msgstr ""
@@ -6184,8 +6190,8 @@ msgstr ""
msgid "Mute {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705
#: src/view/com/profile/ProfileMenu.tsx:438
#: src/view/com/profile/ProfileMenu.tsx:445
msgid "Mute account"
@@ -6237,13 +6243,13 @@ msgstr ""
msgid "Mute this word until you unmute it"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
msgid "Mute thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:603
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:605
msgid "Mute words & tags"
msgstr ""
@@ -6726,7 +6732,7 @@ msgid "Notification Sounds"
msgstr ""
#: src/Navigation.tsx:575
-#: src/Navigation.tsx:813
+#: src/Navigation.tsx:814
#: src/screens/Notifications/ActivityList.tsx:31
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
#: src/screens/Settings/NotificationSettings/index.tsx:93
@@ -6790,7 +6796,7 @@ msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:759
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:654
msgid "Okay"
msgstr ""
@@ -6928,7 +6934,7 @@ msgstr ""
msgid "Open pack"
msgstr ""
-#: src/components/PostControls/PostMenu/index.tsx:66
+#: src/components/PostControls/PostMenu/index.tsx:67
msgid "Open post options menu"
msgstr ""
@@ -7060,11 +7066,11 @@ msgstr ""
msgid "Options:"
msgstr ""
-#: src/screens/Deactivated.tsx:194
+#: src/screens/Deactivated.tsx:192
msgid "Or, continue with another account."
msgstr ""
-#: src/screens/Deactivated.tsx:181
+#: src/screens/Deactivated.tsx:179
msgid "Or, sign in to one of your other accounts."
msgstr ""
@@ -7260,8 +7266,8 @@ msgstr ""
msgid "Pin to Home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:486
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
msgid "Pin to your profile"
msgstr ""
@@ -7524,7 +7530,7 @@ msgstr ""
msgid "Post by @{0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:194
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199
msgctxt "toast"
msgid "Post deleted"
msgstr ""
@@ -7533,10 +7539,10 @@ msgstr ""
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:143
-#: src/screens/PostThread/components/ThreadItemPost.tsx:112
-#: src/screens/PostThread/components/ThreadItemTreePost.tsx:108
-#: src/screens/VideoFeed/index.tsx:552
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:130
+#: src/screens/PostThread/components/ThreadItemPost.tsx:113
+#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109
+#: src/screens/VideoFeed/index.tsx:551
msgid "Post has been deleted"
msgstr ""
@@ -7705,6 +7711,10 @@ msgstr ""
msgid "Profile"
msgstr ""
+#: src/screens/Profile/Header/Shell.tsx:174
+msgid "Profile banner placeholder"
+msgstr ""
+
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
msgstr ""
@@ -7786,11 +7796,11 @@ msgstr ""
msgid "Quote post"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:346
msgid "Quote post was re-attached"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
msgid "Quote post was successfully detached"
msgstr ""
@@ -7808,7 +7818,7 @@ msgstr ""
msgid "Quotes"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:481
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467
msgid "Quotes of this post"
msgstr ""
@@ -7820,8 +7830,8 @@ msgstr ""
msgid "Rate limit exceeded. Please try again later."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
msgid "Re-attach quote"
msgstr ""
@@ -7829,7 +7839,7 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/screens/Deactivated.tsx:135
+#: src/screens/Deactivated.tsx:133
msgid "Reactivate your account"
msgstr ""
@@ -7848,11 +7858,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:992
+#: src/screens/VideoFeed/index.tsx:988
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:992
+#: src/screens/VideoFeed/index.tsx:988
msgid "Read more"
msgstr ""
@@ -8020,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:205
+#: src/view/com/composer/photos/Gallery.tsx:215
msgid "Remove image"
msgstr ""
@@ -8172,7 +8182,7 @@ msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:242
+#: src/components/PostControls/index.tsx:236
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -8198,12 +8208,12 @@ msgstr ""
msgid "Reply sorting"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384
msgctxt "toast"
msgid "Reply visibility updated"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:382
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
msgid "Reply was successfully hidden"
msgstr ""
@@ -8246,8 +8256,8 @@ msgstr ""
msgid "Report message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:720
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:725
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Report post"
msgstr ""
@@ -8339,7 +8349,7 @@ msgstr ""
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:447
msgid "Reposts of this post"
msgstr ""
@@ -8482,7 +8492,7 @@ msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:579
-#: src/screens/VideoFeed/index.tsx:1181
+#: src/screens/VideoFeed/index.tsx:1173
#: src/view/screens/NotFound.tsx:61
msgid "Returns to previous page"
msgstr ""
@@ -8508,8 +8518,8 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:205
#: src/view/com/composer/photos/EditImageDialog.web.tsx:63
#: src/view/com/composer/photos/EditImageDialog.web.tsx:76
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:165
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:175
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:167
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:177
msgid "Save"
msgstr ""
@@ -8900,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr ""
-#: src/components/Post/Translated/index.tsx:156
+#: src/components/Post/Translated/index.tsx:402
msgid "Select the source language"
msgstr ""
@@ -9199,8 +9209,8 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
#: src/screens/List/ListHiddenScreen.tsx:194
-#: src/screens/VideoFeed/index.tsx:651
-#: src/screens/VideoFeed/index.tsx:657
+#: src/screens/VideoFeed/index.tsx:650
+#: src/screens/VideoFeed/index.tsx:656
msgid "Show anyway"
msgstr ""
@@ -9217,8 +9227,8 @@ msgstr ""
msgid "Show customization options"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:549
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:551
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564
msgid "Show less like this"
msgstr ""
@@ -9239,8 +9249,8 @@ msgstr ""
msgid "Show More"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:541
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556
msgid "Show more like this"
msgstr ""
@@ -9266,8 +9276,8 @@ msgstr ""
msgid "Show replies as"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:628
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643
msgid "Show reply for everyone"
msgstr ""
@@ -9294,7 +9304,7 @@ msgstr ""
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:700
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:595
msgid "Shows information about when this post was created"
msgstr ""
@@ -9340,8 +9350,8 @@ msgstr ""
msgid "Sign in as..."
msgstr ""
-#: src/screens/Deactivated.tsx:197
-#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:195
+#: src/screens/Deactivated.tsx:201
msgid "Sign in or create an account"
msgstr ""
@@ -9357,8 +9367,8 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:529
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:542
msgid "Sign in to view post"
msgstr ""
@@ -9478,7 +9488,7 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
#: src/components/moderation/ReportDialog/index.tsx:273
-#: src/screens/Deactivated.tsx:88
+#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
msgid "Something went wrong, please try again"
@@ -9509,8 +9519,8 @@ msgstr ""
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
-#: src/App.native.tsx:142
-#: src/App.web.tsx:118
+#: src/App.native.tsx:143
+#: src/App.web.tsx:119
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -9896,7 +9906,7 @@ msgstr ""
msgid "That's all, folks!"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1153
+#: src/screens/VideoFeed/index.tsx:1145
msgid "That's everything!"
msgstr ""
@@ -10082,9 +10092,9 @@ msgid "There was an issue updating your feeds, please check your internet connec
msgstr ""
#. placeholder {0}: e.toString()
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:430
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:444
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:441
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:452
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:128
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90
@@ -10309,7 +10319,7 @@ msgstr ""
#. placeholder {0}: niceDate(i18n, createdAt)
#. placeholder {1}: niceDate(i18n, indexedAt)
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:740
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
@@ -10337,7 +10347,7 @@ msgstr ""
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:813
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:805
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr ""
@@ -10414,7 +10424,7 @@ msgstr ""
msgid "This will remove @{0} from the quick access list."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr ""
@@ -10511,23 +10521,20 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:512
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:640
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/components/Post/Translated/index.tsx:139
+#: src/components/Post/Translated/index.tsx:146
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr ""
-#: src/components/Post/Translated/index.tsx:78
+#: src/components/Post/Translated/index.tsx:292
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:76
-msgid "Translated from {langName}"
-msgstr ""
-
-#: src/components/Post/Translated/index.tsx:50
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:626
+#: src/components/Post/Translated/index.tsx:89
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
msgstr ""
@@ -10566,6 +10573,11 @@ msgctxt "action"
msgid "Try again"
msgstr ""
+#: src/components/Post/Translated/index.tsx:205
+#: src/components/Post/Translated/index.tsx:213
+msgid "Try Google Translate"
+msgstr ""
+
#: src/lib/interests.ts:74
msgid "TV"
msgstr ""
@@ -10701,7 +10713,7 @@ msgstr ""
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:856
+#: src/screens/VideoFeed/index.tsx:852
msgid "Unfollows the user"
msgstr ""
@@ -10735,7 +10747,7 @@ msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:278
+#: src/components/PostControls/index.tsx:270
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -10756,8 +10768,8 @@ msgstr ""
msgid "Unmute {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:693
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:698
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:704
#: src/view/com/profile/ProfileMenu.tsx:437
#: src/view/com/profile/ProfileMenu.tsx:443
msgid "Unmute account"
@@ -10772,8 +10784,8 @@ msgstr ""
msgid "Unmute list"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
msgid "Unmute thread"
msgstr ""
@@ -10798,8 +10810,8 @@ msgstr ""
msgid "Unpin from home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:492
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
msgid "Unpin from profile"
msgstr ""
@@ -10872,12 +10884,12 @@ msgstr ""
msgid "Update your email"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:402
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
@@ -11176,7 +11188,7 @@ msgid "Video from {0}: {text}"
msgstr ""
#. placeholder {0}: sanitizeHandle( post.author.handle, '@', )
-#: src/screens/VideoFeed/index.tsx:1114
+#: src/screens/VideoFeed/index.tsx:1107
msgid "Video from {0}. Tap to play or pause the video"
msgstr ""
@@ -11185,11 +11197,11 @@ msgstr ""
msgid "Video Games"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1111
+#: src/screens/VideoFeed/index.tsx:1106
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1111
+#: src/screens/VideoFeed/index.tsx:1106
msgid "Video is playing"
msgstr ""
@@ -11224,7 +11236,7 @@ msgid "View"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Profile/Header/Shell.tsx:262
+#: src/screens/Profile/Header/Shell.tsx:267
msgid "View {0}'s avatar"
msgstr ""
@@ -11233,7 +11245,7 @@ msgstr ""
#. placeholder {0}: profile.handle
#: src/screens/Profile/components/ProfileFeedHeader.tsx:459
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:815
+#: src/screens/VideoFeed/index.tsx:813
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr ""
@@ -11259,8 +11271,8 @@ msgstr ""
msgid "View debug entry"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:679
-#: src/screens/VideoFeed/index.tsx:697
+#: src/screens/VideoFeed/index.tsx:678
+#: src/screens/VideoFeed/index.tsx:696
msgid "View details"
msgstr ""
@@ -11296,6 +11308,10 @@ msgstr ""
msgid "View profile"
msgstr ""
+#: src/screens/Profile/Header/Shell.tsx:173
+msgid "View profile banner"
+msgstr ""
+
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
msgstr ""
@@ -11585,7 +11601,7 @@ msgstr ""
msgid "We've confirmed your age assurance status. You can now close this dialog."
msgstr ""
-#: src/screens/Deactivated.tsx:119
+#: src/screens/Deactivated.tsx:117
msgid "Welcome back!"
msgstr ""
@@ -11733,15 +11749,15 @@ msgstr ""
msgid "Yes, delete this starter pack"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:806
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800
msgid "Yes, detach"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:816
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:807
msgid "Yes, hide"
msgstr ""
-#: src/screens/Deactivated.tsx:141
+#: src/screens/Deactivated.tsx:139
msgid "Yes, reactivate my account"
msgstr ""
@@ -11861,7 +11877,7 @@ msgstr ""
msgid "You can only select one video at a time."
msgstr ""
-#: src/screens/Deactivated.tsx:127
+#: src/screens/Deactivated.tsx:125
msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
msgstr ""
@@ -12059,7 +12075,7 @@ msgid "You need to verify your email address before you can enable email 2FA."
msgstr ""
#. placeholder {0}: currentAccount?.handle
-#: src/screens/Deactivated.tsx:122
+#: src/screens/Deactivated.tsx:120
msgid "You previously deactivated @{0}."
msgstr ""
@@ -12093,11 +12109,11 @@ msgstr ""
msgid "You will no longer receive notifications for {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:239
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:243
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:229
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:234
msgid "You will now receive notifications for this thread"
msgstr ""
@@ -12152,7 +12168,7 @@ msgstr ""
msgid "You're in line"
msgstr ""
-#: src/screens/Deactivated.tsx:83
+#: src/screens/Deactivated.tsx:81
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -12202,7 +12218,7 @@ msgstr ""
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1162
+#: src/screens/VideoFeed/index.tsx:1154
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
diff --git a/src/locale/locales/bn/messages.po b/src/locale/locales/bn/messages.po
index 6a9885be5c..908ec7b976 100644
--- a/src/locale/locales/bn/messages.po
+++ b/src/locale/locales/bn/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: bn\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Bengali\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -558,28 +558,28 @@ msgstr ""
#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.likeCount)
#. placeholder {1}: post.likeCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:489
msgid "<0>{0}0> {1, plural, one {like} other {likes}}"
msgstr ""
#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.quoteCount)
#. placeholder {1}: post.quoteCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471
msgid "<0>{0}0> {1, plural, one {quote} other {quotes}}"
msgstr ""
#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.repostCount)
#. placeholder {1}: post.repostCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "<0>{0}0> {1, plural, one {repost} other {reposts}}"
msgstr ""
#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.bookmarkCount)
#. placeholder {1}: post.bookmarkCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:516
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
msgid "<0>{0}0> {1, plural, one {save} other {saves}}"
msgstr ""
@@ -733,7 +733,7 @@ msgstr ""
msgid "Account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:425
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422
#: src/screens/Messages/components/RequestButtons.tsx:97
#: src/view/com/profile/ProfileMenu.tsx:182
msgctxt "toast"
@@ -753,7 +753,7 @@ msgstr ""
msgid "Account is deactivated"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:447
#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account muted"
@@ -792,7 +792,7 @@ msgctxt "toast"
msgid "Account unfollowed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:439
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unmuted"
@@ -844,17 +844,17 @@ msgid "Add a user to this list"
msgstr ""
#: src/components/dialogs/SwitchAccount.tsx:56
-#: src/screens/Deactivated.tsx:186
+#: src/screens/Deactivated.tsx:184
msgid "Add account"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:171
-#: src/view/com/composer/photos/Gallery.tsx:218
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:97
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:105
+#: src/view/com/composer/photos/Gallery.tsx:181
+#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
msgstr ""
@@ -1152,13 +1152,13 @@ msgstr ""
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:189
+#: src/view/com/composer/photos/Gallery.tsx:199
msgid "ALT"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:55
#: src/view/com/composer/GifAltText.tsx:157
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:130
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:132
#: src/view/com/composer/videos/SubtitleDialog.tsx:41
#: src/view/com/composer/videos/SubtitleDialog.tsx:59
#: src/view/com/composer/videos/SubtitleDialog.tsx:110
@@ -1170,13 +1170,13 @@ msgstr ""
msgid "Alt Text"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:262
+#: src/view/com/composer/photos/Gallery.tsx:273
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr ""
#. placeholder {0}: i18n.number(MAX_ALT_TEXT)
#: src/view/com/composer/GifAltText.tsx:182
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:151
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
msgstr ""
@@ -1442,12 +1442,12 @@ msgid "Apply Pull Request"
msgstr ""
#. placeholder {0}: niceDate(i18n, createdAt, 'medium')
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:728
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623
msgid "Archived from {0}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:737
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:594
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
msgid "Archived post"
msgstr ""
@@ -1505,8 +1505,8 @@ msgstr ""
msgid "Artistic or non-erotic nudity."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
msgid "Assign topic for algo"
msgstr ""
@@ -1541,7 +1541,7 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:178
#: src/screens/Messages/components/ChatDisabled.tsx:146
#: src/screens/Messages/components/ChatDisabled.tsx:147
-#: src/screens/Profile/Header/Shell.tsx:179
+#: src/screens/Profile/Header/Shell.tsx:184
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
#: src/screens/Signup/BackNextButtons.tsx:42
@@ -1618,7 +1618,7 @@ msgstr ""
msgid "Birthday"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:826
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:814
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
#: src/view/com/profile/ProfileMenu.tsx:553
msgid "Block"
@@ -1626,8 +1626,8 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:273
#: src/components/dms/ConvoMenu.tsx:276
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:711
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:713
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:716
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:718
#: src/screens/Messages/components/RequestButtons.tsx:150
#: src/screens/Messages/components/RequestButtons.tsx:152
#: src/view/com/profile/ProfileMenu.tsx:459
@@ -1635,7 +1635,7 @@ msgstr ""
msgid "Block account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:821
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
#: src/view/com/profile/ProfileMenu.tsx:536
msgid "Block Account?"
msgstr ""
@@ -1687,7 +1687,7 @@ msgstr ""
msgid "Blocked Accounts"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:823
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812
#: src/view/com/profile/ProfileMenu.tsx:548
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
msgid "Bluesky"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:753
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:648
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr ""
@@ -1921,7 +1921,7 @@ msgstr ""
#: src/features/liveNow/components/GoLiveDialog.tsx:248
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
-#: src/screens/Deactivated.tsx:152
+#: src/screens/Deactivated.tsx:150
#: src/screens/Profile/Header/EditProfileDialog.tsx:219
#: src/screens/Profile/Header/EditProfileDialog.tsx:227
#: src/screens/Search/Shell.tsx:396
@@ -1946,7 +1946,7 @@ msgstr ""
msgid "Cancel quote post"
msgstr ""
-#: src/screens/Deactivated.tsx:146
+#: src/screens/Deactivated.tsx:144
msgid "Cancel reactivation and sign out"
msgstr ""
@@ -1954,9 +1954,9 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:108
-#: src/components/PostControls/index.tsx:139
-#: src/components/PostControls/index.tsx:167
+#: src/components/PostControls/index.tsx:109
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:164
#: src/state/shell/composer/index.tsx:108
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -1974,7 +1974,7 @@ msgstr ""
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:150
+#: src/components/Post/Translated/index.tsx:395
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr ""
@@ -2020,8 +2020,8 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:146
-msgid "Change source language"
+#: src/components/Post/Translated/index.tsx:385
+msgid "Change the source language"
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
@@ -2689,8 +2689,8 @@ msgstr ""
msgid "Copy post at:// URI"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:518
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:531
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Copy post text"
msgstr ""
@@ -2970,7 +2970,7 @@ msgid "Default icons"
msgstr ""
#: src/components/dms/MessageContextMenu.tsx:204
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:772
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3043,8 +3043,8 @@ msgstr ""
msgid "Delete my account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:751
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758
#: src/view/com/composer/Composer.tsx:1430
msgid "Delete post"
msgstr ""
@@ -3062,7 +3062,7 @@ msgstr ""
msgid "Delete this list?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:769
msgid "Delete this post?"
msgstr ""
@@ -3093,16 +3093,16 @@ msgid "Description"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:153
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:126
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128
msgid "Descriptive alt text"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:655
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:670
msgid "Detach quote"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:797
msgid "Detach quote post?"
msgstr ""
@@ -3121,6 +3121,10 @@ msgstr ""
msgid "Developer options"
msgstr ""
+#: src/lib/translation/index.tsx:265
+msgid "Device failed to translate :("
+msgstr ""
+
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
msgstr ""
@@ -3340,7 +3344,7 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1119
+#: src/screens/VideoFeed/index.tsx:1111
msgid "Double tap to like"
msgstr ""
@@ -3442,12 +3446,12 @@ msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:196
+#: src/view/com/composer/photos/Gallery.tsx:206
msgid "Edit image"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750
msgid "Edit interaction settings"
msgstr ""
@@ -3803,7 +3807,7 @@ msgstr ""
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:991
+#: src/screens/VideoFeed/index.tsx:987
msgid "Expands or collapses post text"
msgstr ""
@@ -3846,7 +3850,7 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:808
+#: src/Navigation.tsx:809
#: src/screens/Search/Shell.tsx:354
#: src/view/shell/desktop/LeftNav.tsx:689
#: src/view/shell/Drawer.tsx:417
@@ -3932,7 +3936,7 @@ msgstr ""
msgid "Failed to delete message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:214
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219
msgid "Failed to delete post, please try again"
msgstr ""
@@ -4090,7 +4094,7 @@ msgstr ""
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:247
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:249
msgid "Failed to toggle thread mute, please try again"
msgstr ""
@@ -4181,8 +4185,8 @@ msgstr ""
msgid "Feedback"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:301
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:325
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:326
msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
@@ -4343,7 +4347,7 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:153
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:388
-#: src/screens/VideoFeed/index.tsx:875
+#: src/screens/VideoFeed/index.tsx:870
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
@@ -4355,7 +4359,7 @@ msgstr ""
msgid "Follow {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:852
+#: src/screens/VideoFeed/index.tsx:849
msgid "Follow {handle}"
msgstr ""
@@ -4450,7 +4454,7 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:156
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:384
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/VideoFeed/index.tsx:868
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4471,7 +4475,7 @@ msgstr ""
msgid "Following {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:851
+#: src/screens/VideoFeed/index.tsx:848
msgid "Following {handle}"
msgstr ""
@@ -4680,9 +4684,9 @@ msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/ProfileList/components/ErrorScreen.tsx:41
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1180
-#: src/screens/VideoFeed/index.tsx:1184
-#: src/view/com/auth/LoggedOut.tsx:92
+#: src/screens/VideoFeed/index.tsx:1172
+#: src/screens/VideoFeed/index.tsx:1176
+#: src/view/com/auth/LoggedOut.tsx:93
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
#: src/view/screens/NotFound.tsx:58
@@ -4909,7 +4913,7 @@ msgstr ""
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:648
+#: src/screens/VideoFeed/index.tsx:647
msgid "Hidden by your moderation settings."
msgstr ""
@@ -4922,7 +4926,7 @@ msgstr ""
#: src/components/moderation/ContentHider.tsx:220
#: src/components/moderation/LabelPreference.tsx:141
#: src/components/moderation/PostHider.tsx:140
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:780
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
#: src/lib/moderation/useLabelBehaviorDescription.ts:28
@@ -4949,18 +4953,18 @@ msgstr ""
msgid "Hide lists"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:612
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
msgid "Hide post for me"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:639
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:644
msgid "Hide reply for everyone"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:611
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:617
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
msgid "Hide reply for me"
msgstr ""
@@ -4973,17 +4977,19 @@ msgstr ""
msgid "Hide this event"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
msgid "Hide this post?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:804
msgid "Hide this reply?"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
+#: src/components/Post/Translated/index.tsx:192
+#: src/components/Post/Translated/index.tsx:318
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
msgstr ""
@@ -5050,8 +5056,8 @@ msgstr ""
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/Navigation.tsx:803
-#: src/Navigation.tsx:823
+#: src/Navigation.tsx:804
+#: src/Navigation.tsx:824
#: src/view/shell/bottom-bar/BottomBar.tsx:177
#: src/view/shell/desktop/LeftNav.tsx:671
#: src/view/shell/Drawer.tsx:443
@@ -5152,7 +5158,7 @@ msgstr ""
msgid "If you need to update your email, <0>click here0>."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
@@ -5322,7 +5328,7 @@ msgstr ""
msgid "Invalid handle. Please try a different one."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:397
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:396
msgctxt "toast"
msgid "Invalid interaction settings."
msgstr ""
@@ -5637,7 +5643,7 @@ msgstr ""
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:288
+#: src/components/PostControls/index.tsx:278
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5704,7 +5710,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:499
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr ""
@@ -6051,7 +6057,7 @@ msgstr ""
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:818
+#: src/Navigation.tsx:819
msgid "Messages"
msgstr ""
@@ -6184,8 +6190,8 @@ msgstr ""
msgid "Mute {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705
#: src/view/com/profile/ProfileMenu.tsx:438
#: src/view/com/profile/ProfileMenu.tsx:445
msgid "Mute account"
@@ -6237,13 +6243,13 @@ msgstr ""
msgid "Mute this word until you unmute it"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
msgid "Mute thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:603
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:605
msgid "Mute words & tags"
msgstr ""
@@ -6726,7 +6732,7 @@ msgid "Notification Sounds"
msgstr ""
#: src/Navigation.tsx:575
-#: src/Navigation.tsx:813
+#: src/Navigation.tsx:814
#: src/screens/Notifications/ActivityList.tsx:31
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
#: src/screens/Settings/NotificationSettings/index.tsx:93
@@ -6790,7 +6796,7 @@ msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:759
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:654
msgid "Okay"
msgstr ""
@@ -6928,7 +6934,7 @@ msgstr ""
msgid "Open pack"
msgstr ""
-#: src/components/PostControls/PostMenu/index.tsx:66
+#: src/components/PostControls/PostMenu/index.tsx:67
msgid "Open post options menu"
msgstr ""
@@ -7060,11 +7066,11 @@ msgstr ""
msgid "Options:"
msgstr ""
-#: src/screens/Deactivated.tsx:194
+#: src/screens/Deactivated.tsx:192
msgid "Or, continue with another account."
msgstr ""
-#: src/screens/Deactivated.tsx:181
+#: src/screens/Deactivated.tsx:179
msgid "Or, sign in to one of your other accounts."
msgstr ""
@@ -7260,8 +7266,8 @@ msgstr ""
msgid "Pin to Home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:486
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
msgid "Pin to your profile"
msgstr ""
@@ -7524,7 +7530,7 @@ msgstr ""
msgid "Post by @{0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:194
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199
msgctxt "toast"
msgid "Post deleted"
msgstr ""
@@ -7533,10 +7539,10 @@ msgstr ""
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:143
-#: src/screens/PostThread/components/ThreadItemPost.tsx:112
-#: src/screens/PostThread/components/ThreadItemTreePost.tsx:108
-#: src/screens/VideoFeed/index.tsx:552
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:130
+#: src/screens/PostThread/components/ThreadItemPost.tsx:113
+#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109
+#: src/screens/VideoFeed/index.tsx:551
msgid "Post has been deleted"
msgstr ""
@@ -7705,6 +7711,10 @@ msgstr ""
msgid "Profile"
msgstr ""
+#: src/screens/Profile/Header/Shell.tsx:174
+msgid "Profile banner placeholder"
+msgstr ""
+
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
msgstr ""
@@ -7786,11 +7796,11 @@ msgstr ""
msgid "Quote post"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:346
msgid "Quote post was re-attached"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
msgid "Quote post was successfully detached"
msgstr ""
@@ -7808,7 +7818,7 @@ msgstr ""
msgid "Quotes"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:481
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467
msgid "Quotes of this post"
msgstr ""
@@ -7820,8 +7830,8 @@ msgstr ""
msgid "Rate limit exceeded. Please try again later."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
msgid "Re-attach quote"
msgstr ""
@@ -7829,7 +7839,7 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/screens/Deactivated.tsx:135
+#: src/screens/Deactivated.tsx:133
msgid "Reactivate your account"
msgstr ""
@@ -7848,11 +7858,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:992
+#: src/screens/VideoFeed/index.tsx:988
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:992
+#: src/screens/VideoFeed/index.tsx:988
msgid "Read more"
msgstr ""
@@ -8020,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:205
+#: src/view/com/composer/photos/Gallery.tsx:215
msgid "Remove image"
msgstr ""
@@ -8172,7 +8182,7 @@ msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:242
+#: src/components/PostControls/index.tsx:236
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -8198,12 +8208,12 @@ msgstr ""
msgid "Reply sorting"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384
msgctxt "toast"
msgid "Reply visibility updated"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:382
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
msgid "Reply was successfully hidden"
msgstr ""
@@ -8246,8 +8256,8 @@ msgstr ""
msgid "Report message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:720
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:725
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Report post"
msgstr ""
@@ -8339,7 +8349,7 @@ msgstr ""
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:447
msgid "Reposts of this post"
msgstr ""
@@ -8482,7 +8492,7 @@ msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:579
-#: src/screens/VideoFeed/index.tsx:1181
+#: src/screens/VideoFeed/index.tsx:1173
#: src/view/screens/NotFound.tsx:61
msgid "Returns to previous page"
msgstr ""
@@ -8508,8 +8518,8 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:205
#: src/view/com/composer/photos/EditImageDialog.web.tsx:63
#: src/view/com/composer/photos/EditImageDialog.web.tsx:76
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:165
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:175
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:167
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:177
msgid "Save"
msgstr ""
@@ -8900,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr ""
-#: src/components/Post/Translated/index.tsx:156
+#: src/components/Post/Translated/index.tsx:402
msgid "Select the source language"
msgstr ""
@@ -9199,8 +9209,8 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
#: src/screens/List/ListHiddenScreen.tsx:194
-#: src/screens/VideoFeed/index.tsx:651
-#: src/screens/VideoFeed/index.tsx:657
+#: src/screens/VideoFeed/index.tsx:650
+#: src/screens/VideoFeed/index.tsx:656
msgid "Show anyway"
msgstr ""
@@ -9217,8 +9227,8 @@ msgstr ""
msgid "Show customization options"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:549
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:551
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564
msgid "Show less like this"
msgstr ""
@@ -9239,8 +9249,8 @@ msgstr ""
msgid "Show More"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:541
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556
msgid "Show more like this"
msgstr ""
@@ -9266,8 +9276,8 @@ msgstr ""
msgid "Show replies as"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:628
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643
msgid "Show reply for everyone"
msgstr ""
@@ -9294,7 +9304,7 @@ msgstr ""
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:700
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:595
msgid "Shows information about when this post was created"
msgstr ""
@@ -9340,8 +9350,8 @@ msgstr ""
msgid "Sign in as..."
msgstr ""
-#: src/screens/Deactivated.tsx:197
-#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:195
+#: src/screens/Deactivated.tsx:201
msgid "Sign in or create an account"
msgstr ""
@@ -9357,8 +9367,8 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:529
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:542
msgid "Sign in to view post"
msgstr ""
@@ -9478,7 +9488,7 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
#: src/components/moderation/ReportDialog/index.tsx:273
-#: src/screens/Deactivated.tsx:88
+#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
msgid "Something went wrong, please try again"
@@ -9509,8 +9519,8 @@ msgstr ""
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
-#: src/App.native.tsx:142
-#: src/App.web.tsx:118
+#: src/App.native.tsx:143
+#: src/App.web.tsx:119
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -9896,7 +9906,7 @@ msgstr ""
msgid "That's all, folks!"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1153
+#: src/screens/VideoFeed/index.tsx:1145
msgid "That's everything!"
msgstr ""
@@ -10082,9 +10092,9 @@ msgid "There was an issue updating your feeds, please check your internet connec
msgstr ""
#. placeholder {0}: e.toString()
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:430
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:444
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:441
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:452
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:128
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90
@@ -10309,7 +10319,7 @@ msgstr ""
#. placeholder {0}: niceDate(i18n, createdAt)
#. placeholder {1}: niceDate(i18n, indexedAt)
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:740
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
@@ -10337,7 +10347,7 @@ msgstr ""
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:813
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:805
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr ""
@@ -10414,7 +10424,7 @@ msgstr ""
msgid "This will remove @{0} from the quick access list."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr ""
@@ -10511,23 +10521,20 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:512
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:640
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/components/Post/Translated/index.tsx:139
+#: src/components/Post/Translated/index.tsx:146
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr ""
-#: src/components/Post/Translated/index.tsx:78
+#: src/components/Post/Translated/index.tsx:292
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:76
-msgid "Translated from {langName}"
-msgstr ""
-
-#: src/components/Post/Translated/index.tsx:50
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:626
+#: src/components/Post/Translated/index.tsx:89
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
msgstr ""
@@ -10566,6 +10573,11 @@ msgctxt "action"
msgid "Try again"
msgstr ""
+#: src/components/Post/Translated/index.tsx:205
+#: src/components/Post/Translated/index.tsx:213
+msgid "Try Google Translate"
+msgstr ""
+
#: src/lib/interests.ts:74
msgid "TV"
msgstr ""
@@ -10701,7 +10713,7 @@ msgstr ""
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:856
+#: src/screens/VideoFeed/index.tsx:852
msgid "Unfollows the user"
msgstr ""
@@ -10735,7 +10747,7 @@ msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:278
+#: src/components/PostControls/index.tsx:270
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -10756,8 +10768,8 @@ msgstr ""
msgid "Unmute {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:693
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:698
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:704
#: src/view/com/profile/ProfileMenu.tsx:437
#: src/view/com/profile/ProfileMenu.tsx:443
msgid "Unmute account"
@@ -10772,8 +10784,8 @@ msgstr ""
msgid "Unmute list"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
msgid "Unmute thread"
msgstr ""
@@ -10798,8 +10810,8 @@ msgstr ""
msgid "Unpin from home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:492
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
msgid "Unpin from profile"
msgstr ""
@@ -10872,12 +10884,12 @@ msgstr ""
msgid "Update your email"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:402
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
@@ -11176,7 +11188,7 @@ msgid "Video from {0}: {text}"
msgstr ""
#. placeholder {0}: sanitizeHandle( post.author.handle, '@', )
-#: src/screens/VideoFeed/index.tsx:1114
+#: src/screens/VideoFeed/index.tsx:1107
msgid "Video from {0}. Tap to play or pause the video"
msgstr ""
@@ -11185,11 +11197,11 @@ msgstr ""
msgid "Video Games"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1111
+#: src/screens/VideoFeed/index.tsx:1106
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1111
+#: src/screens/VideoFeed/index.tsx:1106
msgid "Video is playing"
msgstr ""
@@ -11224,7 +11236,7 @@ msgid "View"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Profile/Header/Shell.tsx:262
+#: src/screens/Profile/Header/Shell.tsx:267
msgid "View {0}'s avatar"
msgstr ""
@@ -11233,7 +11245,7 @@ msgstr ""
#. placeholder {0}: profile.handle
#: src/screens/Profile/components/ProfileFeedHeader.tsx:459
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:815
+#: src/screens/VideoFeed/index.tsx:813
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr ""
@@ -11259,8 +11271,8 @@ msgstr ""
msgid "View debug entry"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:679
-#: src/screens/VideoFeed/index.tsx:697
+#: src/screens/VideoFeed/index.tsx:678
+#: src/screens/VideoFeed/index.tsx:696
msgid "View details"
msgstr ""
@@ -11296,6 +11308,10 @@ msgstr ""
msgid "View profile"
msgstr ""
+#: src/screens/Profile/Header/Shell.tsx:173
+msgid "View profile banner"
+msgstr ""
+
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
msgstr ""
@@ -11585,7 +11601,7 @@ msgstr ""
msgid "We've confirmed your age assurance status. You can now close this dialog."
msgstr ""
-#: src/screens/Deactivated.tsx:119
+#: src/screens/Deactivated.tsx:117
msgid "Welcome back!"
msgstr ""
@@ -11733,15 +11749,15 @@ msgstr ""
msgid "Yes, delete this starter pack"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:806
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800
msgid "Yes, detach"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:816
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:807
msgid "Yes, hide"
msgstr ""
-#: src/screens/Deactivated.tsx:141
+#: src/screens/Deactivated.tsx:139
msgid "Yes, reactivate my account"
msgstr ""
@@ -11861,7 +11877,7 @@ msgstr ""
msgid "You can only select one video at a time."
msgstr ""
-#: src/screens/Deactivated.tsx:127
+#: src/screens/Deactivated.tsx:125
msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
msgstr ""
@@ -12059,7 +12075,7 @@ msgid "You need to verify your email address before you can enable email 2FA."
msgstr ""
#. placeholder {0}: currentAccount?.handle
-#: src/screens/Deactivated.tsx:122
+#: src/screens/Deactivated.tsx:120
msgid "You previously deactivated @{0}."
msgstr ""
@@ -12093,11 +12109,11 @@ msgstr ""
msgid "You will no longer receive notifications for {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:239
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:243
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:229
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:234
msgid "You will now receive notifications for this thread"
msgstr ""
@@ -12152,7 +12168,7 @@ msgstr ""
msgid "You're in line"
msgstr ""
-#: src/screens/Deactivated.tsx:83
+#: src/screens/Deactivated.tsx:81
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -12202,7 +12218,7 @@ msgstr ""
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1162
+#: src/screens/VideoFeed/index.tsx:1154
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po
index 39c9c40977..7dd57b8954 100644
--- a/src/locale/locales/ca/messages.po
+++ b/src/locale/locales/ca/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ca\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Catalan\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Afegeix un compte"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Ja estàs registrat com a @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Text alternatiu"
msgid "Alt Text"
msgstr "Text alternatiu"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "El text alternatiu descriu les imatges per a les persones cegues o amb problemes de visió, i ajuda donar context a tothom."
@@ -1974,7 +1974,7 @@ msgstr "Subtítols i text alternatiu"
msgid "Cashtag {tag}"
msgstr "Cashtag {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Canvia"
@@ -2020,9 +2020,9 @@ msgstr "Canvia la categoria de l'informe"
msgid "Change report reason"
msgstr "Canvia"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
-msgstr ""
+msgstr "Canvia l'idioma d'origen"
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
msgid "Change your password"
@@ -3123,7 +3123,7 @@ msgstr "Opcions de desenvolupador"
#: src/lib/translation/index.tsx:265
msgid "Device failed to translate :("
-msgstr ""
+msgstr "El dispositiu no ha pogut traduir :("
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
@@ -3446,7 +3446,7 @@ msgstr "Edita els canals"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Edita la imatge"
@@ -4986,8 +4986,8 @@ msgstr "Vols amagar aquesta entrada?"
msgid "Hide this reply?"
msgstr "Vols amagar aquesta resposta?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -7713,7 +7713,7 @@ msgstr "Perfil"
#: src/screens/Profile/Header/Shell.tsx:174
msgid "Profile banner placeholder"
-msgstr ""
+msgstr "Marcador de posició del bàner de perfil"
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
@@ -8030,7 +8030,7 @@ msgstr "Elimina de les publicacions desades"
msgid "Remove from your feeds?"
msgstr "Vols eliminar-lo dels teus canals?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Elimina la imatge"
@@ -8910,7 +8910,7 @@ msgstr "Tria el codi de telèfon"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Selecciona el {emojiName} emoji com al teu avatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "Selecciona l'idioma d'origen"
@@ -10521,18 +10521,18 @@ msgstr "Tema"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Tradueix"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "Traduït"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,18 +10565,18 @@ msgstr "La confiança sorgeix de les relacions, les comunitats i el context comp
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
-msgstr "Prova un terme de cerca diferent o <0>consulta com utilitzar els filtres de cerca.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
+msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
msgctxt "action"
msgid "Try again"
msgstr "Torna-ho a provar"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
-msgstr ""
+msgstr "Prova el traductor de Google"
#: src/lib/interests.ts:74
msgid "TV"
@@ -11310,7 +11310,7 @@ msgstr "Veure el perfil"
#: src/screens/Profile/Header/Shell.tsx:173
msgid "View profile banner"
-msgstr ""
+msgstr "Mostra el bàner del perfil"
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
diff --git a/src/locale/locales/cy/messages.po b/src/locale/locales/cy/messages.po
index c8be750814..48cde18fbc 100644
--- a/src/locale/locales/cy/messages.po
+++ b/src/locale/locales/cy/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: cy\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:46\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Welsh\n"
"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))));\n"
@@ -851,8 +851,8 @@ msgstr "Ychwanegu cyfrif"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Eisoes wedi mewngofnodi fel @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "AMGEN"
@@ -1170,7 +1170,7 @@ msgstr "Testun amgen"
msgid "Alt Text"
msgstr "Testun Amgen"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Mae testun amgan yn disgrifio delweddau ar gyfer defnyddwyr dall a rhai â golwg gwan, ac yn helpu i roi cyd-destun i bawb."
@@ -1974,7 +1974,7 @@ msgstr "Capsiynau a thestun amgen"
msgid "Cashtag {tag}"
msgstr "Cashtag {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Newid"
@@ -2020,7 +2020,7 @@ msgstr "Newid categori adrodd"
msgid "Change report reason"
msgstr "Newid y rheswm am adrodd"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Golygu Ffrydiau"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Golygu delwedd"
@@ -4986,8 +4986,8 @@ msgstr "Cuddio'r postiad hwn?"
msgid "Hide this reply?"
msgstr "Cuddio'r ateb hwn?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr "Tynnu o'r postiadau wedi'u cadw"
msgid "Remove from your feeds?"
msgstr "Tynnu o'ch ffrydiau?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Tynnu delwedd"
@@ -8910,7 +8910,7 @@ msgstr "Dewis cod ffôn"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Dewiswch yr emoji {emojiName} fel eich afatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "Dewis yr iaith wreiddiol"
@@ -10521,18 +10521,18 @@ msgstr "Pwnc"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Cyfieithu"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "Wedi cyfieithu"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "Mae ymddiriedaeth yn deillio o berthnasoedd, cymunedau, a chyd-destun sy
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Ceisia eto"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/da/messages.po b/src/locale/locales/da/messages.po
index 9bd1bbbb53..ef380bef9d 100644
--- a/src/locale/locales/da/messages.po
+++ b/src/locale/locales/da/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: da\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Tilføj konto"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -908,7 +908,7 @@ msgstr "Tilføj yderligere oplysninger (valgfrit)"
#: src/screens/Settings/LanguageSettings.tsx:201
#: src/screens/Settings/LanguageSettings.tsx:206
msgid "Add more languages…"
-msgstr ""
+msgstr "Tilføj flere sprog …"
#: src/components/dialogs/MutedWords.tsx:330
msgid "Add mute word with chosen settings"
@@ -1152,7 +1152,7 @@ msgstr "Allerede logget ind som @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Alt-tekst"
msgid "Alt Text"
msgstr "Alt-tekst"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alt-tekst beskriver billeder for blinde og svagtseende brugere og bidrager med kontekst til glæde for alle."
@@ -1974,7 +1974,7 @@ msgstr "Undertekster og alt-tekst"
msgid "Cashtag {tag}"
msgstr "Cashtag {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Skift"
@@ -2020,9 +2020,9 @@ msgstr "Skift anmeldelseskategori"
msgid "Change report reason"
msgstr "Skift årsag til anmeldelse"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
-msgstr ""
+msgstr "Skift kildesproget"
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
msgid "Change your password"
@@ -3123,7 +3123,7 @@ msgstr "Udviklingerindstillinger"
#: src/lib/translation/index.tsx:265
msgid "Device failed to translate :("
-msgstr ""
+msgstr "Enhed kunne ikke oversætte :("
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
@@ -3446,7 +3446,7 @@ msgstr "Rediger feeds"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Rediger billede"
@@ -4986,12 +4986,12 @@ msgstr "Skjul dette opslag?"
msgid "Hide this reply?"
msgstr "Skjul dette svar?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
-msgstr ""
+msgstr "Skjul oversættelse"
#: src/components/interstitials/Trending.tsx:115
msgid "Hide trending topics"
@@ -6622,7 +6622,7 @@ msgstr "Ingen resultater fundet for \"{query}\""
#: src/screens/Search/SearchResults.tsx:178
msgid "No results found for “<0>{query}0>”."
-msgstr ""
+msgstr "Ingen resultater fundet for “<0>{query}0>”."
#: src/screens/Search/Explore.tsx:830
msgid "No results."
@@ -7911,7 +7911,7 @@ msgstr "Modtag push-notifikationer"
#: src/screens/Search/components/SearchHistory.tsx:50
msgid "Recent searches"
-msgstr ""
+msgstr "Seneste søgninger"
#: src/components/dialogs/LanguageSelectDialog.tsx:257
msgid "Recently used"
@@ -8030,7 +8030,7 @@ msgstr "Fjern fra gemte opslag"
msgid "Remove from your feeds?"
msgstr "Fjern fra dine feeds?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Fjern billede"
@@ -8910,9 +8910,9 @@ msgstr "Vælg landekode"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Vælg emojien {emojiName} som din avatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
-msgstr ""
+msgstr "Vælg kildesprog"
#: src/view/com/composer/select-language/PostLanguageSelect.tsx:59
#: src/view/com/composer/select-language/PostLanguageSelect.tsx:115
@@ -10269,7 +10269,7 @@ msgstr "Dette handle er reserveret. Prøv et andet."
#: src/screens/Onboarding/StepProfile/index.tsx:133
msgid "This image could not be used. Try a different format like .jpg or .png."
-msgstr ""
+msgstr "Dette billede kunne ikke bruges. Prøv et andet format som .jpg eller .png."
#: src/components/dialogs/BirthDateSettings.tsx:56
msgid "This information is private and not shared with other users."
@@ -10521,22 +10521,22 @@ msgstr "Emne"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Oversæt"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
-msgstr ""
+msgstr "Oversat"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
-msgstr ""
+msgstr "Oversætter …"
#: src/screens/Settings/ThreadPreferences.tsx:87
#: src/screens/Settings/ThreadPreferences.tsx:92
@@ -10565,7 +10565,7 @@ msgstr "Tillid opstår gennem forbindelser, fællesskaber og delt indhold, så v
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,10 +10573,10 @@ msgctxt "action"
msgid "Try again"
msgstr "Prøv igen"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
-msgstr ""
+msgstr "Prøv Google Translate"
#: src/lib/interests.ts:74
msgid "TV"
@@ -11253,7 +11253,7 @@ msgstr "Se {0}s profil"
#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle)
#: src/components/ProfileCard.tsx:143
msgid "View {0}’s profile"
-msgstr ""
+msgstr "Se {0}s profil"
#: src/components/dms/MessagesListHeader.tsx:142
msgid "View {displayName}'s profile"
@@ -11310,7 +11310,7 @@ msgstr "Vis profil"
#: src/screens/Profile/Header/Shell.tsx:173
msgid "View profile banner"
-msgstr ""
+msgstr "Se profilbanner"
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
@@ -11561,7 +11561,7 @@ msgstr "Beklager, men vi kunne ikke indlæse dine skjulte ord. Prøv igen."
#: src/screens/Search/SearchResults.tsx:339
#: src/screens/Search/SearchResults.tsx:472
msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes."
-msgstr ""
+msgstr "Beklager, men din søgning kunne ikke gennemføres. Prøv igen om lidt."
#: src/components/ageAssurance/AgeRestrictedScreen.tsx:62
msgid "We're sorry, you cannot access this screen at this time."
diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po
index c314bd59f9..5b2cc6d434 100644
--- a/src/locale/locales/de/messages.po
+++ b/src/locale/locales/de/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: de\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Account hinzufügen"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Bereits als @{0} eingeloggt"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Alt-Text"
msgid "Alt Text"
msgstr "Alt-Text"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alt-Text beschreibt Bilder für blinde und sehbehinderte Leser und hilft, den Kontext für alle zu vermitteln."
@@ -1974,7 +1974,7 @@ msgstr "Untertitel und Alt-Text"
msgid "Cashtag {tag}"
msgstr "Cashtag {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Ändern"
@@ -2020,9 +2020,9 @@ msgstr "Kategorie der Meldung ändern"
msgid "Change report reason"
msgstr "Grund für Meldung ändern"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
-msgstr ""
+msgstr "Originalsprache ändern"
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
msgid "Change your password"
@@ -3123,7 +3123,7 @@ msgstr "Entwickleroptionen"
#: src/lib/translation/index.tsx:265
msgid "Device failed to translate :("
-msgstr ""
+msgstr "Übersetzung auf dem Gerät fehlgeschlagen :("
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
@@ -3446,7 +3446,7 @@ msgstr "Feeds bearbeiten"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Bild bearbeiten"
@@ -4986,8 +4986,8 @@ msgstr "Diesen Post ausblenden?"
msgid "Hide this reply?"
msgstr "Diese Antwort ausblenden?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -7713,7 +7713,7 @@ msgstr "Profil"
#: src/screens/Profile/Header/Shell.tsx:174
msgid "Profile banner placeholder"
-msgstr ""
+msgstr "Platzhalter für Profilbanner"
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
@@ -8030,7 +8030,7 @@ msgstr "Aus gespeicherten Posts entfernen"
msgid "Remove from your feeds?"
msgstr "Aus deinen Feeds entfernen?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Bild entfernen"
@@ -8910,7 +8910,7 @@ msgstr "Landesvorwahl auswählen"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Wähle das {emojiName}-Emoji als deinen Avatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "Originalsprache auswählen"
@@ -10521,18 +10521,18 @@ msgstr "Thema"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Übersetzen"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "Übersetzt"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,18 +10565,18 @@ msgstr "Vertrauen entsteht durch Beziehungen, Communitys und einem gemeinsamen K
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
-msgstr "Versuche einen anderen Suchbegriff oder <0> erfahre, wie du Suchfilter verwendest (auf Englisch).0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
+msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
msgctxt "action"
msgid "Try again"
msgstr "Erneut versuchen"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
-msgstr ""
+msgstr "Google Übersetzer versuchen"
#: src/lib/interests.ts:74
msgid "TV"
@@ -11310,7 +11310,7 @@ msgstr "Profil ansehen"
#: src/screens/Profile/Header/Shell.tsx:173
msgid "View profile banner"
-msgstr ""
+msgstr "Profilbanner ansehen"
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
diff --git a/src/locale/locales/el/messages.po b/src/locale/locales/el/messages.po
index e9e770ed58..2be70b4c3b 100644
--- a/src/locale/locales/el/messages.po
+++ b/src/locale/locales/el/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: el\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Greek\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Προσθήκη λογαριασμού"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Ήδη συνδεδεμένος ως @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr ""
@@ -1170,7 +1170,7 @@ msgstr "Εναλλακτικό κείμενο"
msgid "Alt Text"
msgstr "Εναλλακτικό κείμενο"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Το εναλλακτικό κείμενο περιγράφει εικόνες για τυφλούς και με χαμηλή όραση χρήστες και βοηθάει να γίνει ξεκάθαρο το περιεχόμενο σε όλους."
@@ -1974,7 +1974,7 @@ msgstr "Υπότιτλοι & εναλλακτικό κείμενο"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Αλλαγή"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr "Αλλαγή αιτίας αναφοράς"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Επεξεργασία ροών"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Επεξεργασία εικόνας"
@@ -4986,8 +4986,8 @@ msgstr "Απόκρυψη αυτής της ανάρτησης;"
msgid "Hide this reply?"
msgstr "Απόκρυψη αυτής της απάντησης;"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Αφαίρεση εικόνας"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Επιλέξτε το emoji {emojiName} ως εικόνα προφίλ σας"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Μετάφραση"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr ""
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Προσπαθήστε ξανά"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/en-GB/messages.po b/src/locale/locales/en-GB/messages.po
index d32476517e..dbd6a5be39 100644
--- a/src/locale/locales/en-GB/messages.po
+++ b/src/locale/locales/en-GB/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: en_GB\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: English, United Kingdom\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Add account"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Already signed in as @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Alt text"
msgid "Alt Text"
msgstr "Alt Text"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alt text describes images for blind and low-vision users and helps give context to everyone."
@@ -1974,7 +1974,7 @@ msgstr "Subtitles & alt text"
msgid "Cashtag {tag}"
msgstr "Cashtag {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Change"
@@ -2020,9 +2020,9 @@ msgstr "Change report category"
msgid "Change report reason"
msgstr "Change report reason"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
-msgstr ""
+msgstr "Change the source language"
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
msgid "Change your password"
@@ -3123,7 +3123,7 @@ msgstr "Developer options"
#: src/lib/translation/index.tsx:265
msgid "Device failed to translate :("
-msgstr ""
+msgstr "Device failed to translate :("
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
@@ -3446,7 +3446,7 @@ msgstr "Edit Feeds"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Edit image"
@@ -4986,8 +4986,8 @@ msgstr "Hide this post?"
msgid "Hide this reply?"
msgstr "Hide this reply?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -7713,7 +7713,7 @@ msgstr "Profile"
#: src/screens/Profile/Header/Shell.tsx:174
msgid "Profile banner placeholder"
-msgstr ""
+msgstr "Profile banner placeholder"
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
@@ -8030,7 +8030,7 @@ msgstr "Remove from saved posts"
msgid "Remove from your feeds?"
msgstr "Remove from your feeds?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Remove image"
@@ -8910,7 +8910,7 @@ msgstr "Select telephone code"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Select the {emojiName} emoji as your avatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "Select the source language"
@@ -10521,18 +10521,18 @@ msgstr "Topic"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Translate"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "Translated"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,18 +10565,18 @@ msgstr "Trust emerges from relationships, communities and shared context, so we
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
-msgstr "Try a different search term, or <0>read about how to use search filters0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
+msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
msgctxt "action"
msgid "Try again"
msgstr "Try again"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
-msgstr ""
+msgstr "Try Google Translate"
#: src/lib/interests.ts:74
msgid "TV"
@@ -11310,7 +11310,7 @@ msgstr "View profile"
#: src/screens/Profile/Header/Shell.tsx:173
msgid "View profile banner"
-msgstr ""
+msgstr "View profile banner"
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po
index 58dea46a21..4c97b8273a 100644
--- a/src/locale/locales/en/messages.po
+++ b/src/locale/locales/en/messages.po
@@ -846,8 +846,8 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1147,7 +1147,7 @@ msgstr ""
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr ""
@@ -1165,7 +1165,7 @@ msgstr ""
msgid "Alt Text"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr ""
@@ -1277,8 +1277,8 @@ msgstr ""
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:518
-#: src/components/ProfileCard.tsx:538
+#: src/components/ProfileCard.tsx:521
+#: src/components/ProfileCard.tsx:541
#: src/view/com/notifications/NotificationFeedItem.tsx:779
#: src/view/com/notifications/NotificationFeedItem.tsx:799
msgid "An issue occurred, please try again."
@@ -1969,7 +1969,7 @@ msgstr ""
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr ""
@@ -2015,7 +2015,7 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr "Change the source language"
@@ -3116,7 +3116,7 @@ msgstr ""
msgid "Developer options"
msgstr ""
-#: src/lib/translation/index.tsx:265
+#: src/lib/translation/index.tsx:268
msgid "Device failed to translate :("
msgstr "Device failed to translate :("
@@ -3441,7 +3441,7 @@ msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr ""
@@ -4337,7 +4337,7 @@ msgid "Focus code input"
msgstr ""
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:552
+#: src/components/ProfileCard.tsx:555
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:153
@@ -4392,7 +4392,7 @@ msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
-#: src/components/ProfileCard.tsx:548
+#: src/components/ProfileCard.tsx:551
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:151
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:386
#: src/view/com/notifications/NotificationFeedItem.tsx:841
@@ -4444,7 +4444,7 @@ msgstr ""
#. User is following this account, click to unfollow
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:543
+#: src/components/ProfileCard.tsx:546
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:156
@@ -4464,7 +4464,7 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), )
-#: src/components/ProfileCard.tsx:508
+#: src/components/ProfileCard.tsx:511
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:251
#: src/view/com/notifications/NotificationFeedItem.tsx:772
msgid "Following {0}"
@@ -4981,8 +4981,8 @@ msgstr ""
msgid "Hide this reply?"
msgstr ""
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -6527,7 +6527,7 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), )
-#: src/components/ProfileCard.tsx:529
+#: src/components/ProfileCard.tsx:532
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:276
#: src/view/com/notifications/NotificationFeedItem.tsx:792
msgid "No longer following {0}"
@@ -8025,7 +8025,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr ""
@@ -8905,7 +8905,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr ""
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "Select the source language"
@@ -10516,18 +10516,18 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr ""
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "Translated"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10560,16 +10560,16 @@ msgstr ""
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
-msgstr "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
+msgstr "Try a different search term, or <0>read about how to use search filters0>."
#: src/view/com/util/error/ErrorScreen.tsx:104
msgctxt "action"
msgid "Try again"
msgstr ""
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr "Try Google Translate"
@@ -11246,7 +11246,7 @@ msgid "View {0}'s profile"
msgstr ""
#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle)
-#: src/components/ProfileCard.tsx:143
+#: src/components/ProfileCard.tsx:149
msgid "View {0}’s profile"
msgstr "View {0}’s profile"
diff --git a/src/locale/locales/eo/messages.po b/src/locale/locales/eo/messages.po
index aa27ab2cd3..b890661d93 100644
--- a/src/locale/locales/eo/messages.po
+++ b/src/locale/locales/eo/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: eo\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Esperanto\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Aldoni konton"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Jam ensalutinta kiel @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Alternativa teksto"
msgid "Alt Text"
msgstr "Alternativa teksto"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alternativa teksto priskribas bildojn por blindaj kaj vide handikapitaj uzantoj, kaj helpas doni kuntekston por ĉiuj."
@@ -1974,7 +1974,7 @@ msgstr "Subtekstoj kaj alternativa teksto"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Ŝanĝi"
@@ -2020,7 +2020,7 @@ msgstr "Ŝanĝi kategorion de raporto"
msgid "Change report reason"
msgstr "Ŝanĝi kialon de raporto"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Redakti fluojn"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Redakti bildon"
@@ -4986,8 +4986,8 @@ msgstr "Ĉu kaŝi ĉi tiun afiŝon?"
msgid "Hide this reply?"
msgstr "Ĉu kaŝi ĉi tiun respondon?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr "Forigi el konservitaj afiŝoj"
msgid "Remove from your feeds?"
msgstr "Ĉu forigi el viaj fluoj?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Forigi bildon"
@@ -8910,7 +8910,7 @@ msgstr "Elektu telefonkodon"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Elekti emoĝion {emojiName} kiel profilbildon"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "Temo"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Traduki"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "Fido aperas per interrilatoj, komunumoj kaj komunaj kuntekstoj, do ni an
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Reprovi"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po
index 98d461e7bd..705a5f96b0 100644
--- a/src/locale/locales/es/messages.po
+++ b/src/locale/locales/es/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: es\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Añadir una cuenta"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Ya has iniciado sesión como @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Texto alternativo"
msgid "Alt Text"
msgstr "Texto alternativo"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "El texto alternativo permite describir las imágenes para los usuarios ciegos o con problemas de visión. Además, ayuda a dar más contexto para todas las personas."
@@ -1974,7 +1974,7 @@ msgstr "Subtítulos y texto alternativo"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Cambiar"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr "Cambiar la razón de la denuncia"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Editar Feeds"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Editar la imagen"
@@ -4986,8 +4986,8 @@ msgstr "¿Ocultar esta publicación?"
msgid "Hide this reply?"
msgstr "¿Ocultar esta respuesta?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr "¿Eliminar de tus feeds?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Eliminar la imagen"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Seleccionar el emoji {emojiName} como tu avatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "Tema"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Traducir"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "La confianza se construye a partir de las relaciones, las comunidades y
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Intentar de nuevo"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/eu/messages.po b/src/locale/locales/eu/messages.po
index a0159cf7c0..2b579e050d 100644
--- a/src/locale/locales/eu/messages.po
+++ b/src/locale/locales/eu/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: eu\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Basque\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Gehitu kontua"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Dagoeneko izena emanda @{0} bezala"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "AUKERAZKO TESTUA"
@@ -1170,7 +1170,7 @@ msgstr "Aukerazko testua"
msgid "Alt Text"
msgstr "Aukerazko Testua"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Aukerazko testuak itsu eta ikusmen urriko erabiltzaileentzako irudiak deskribatzen ditu eta guztientzako testuingurua ematen laguntzen du."
@@ -1974,7 +1974,7 @@ msgstr "Epigrafeak eta aukerazko testua"
msgid "Cashtag {tag}"
msgstr "{tag} diru-etiketa"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Aldatu"
@@ -2020,7 +2020,7 @@ msgstr "Txostenaren kategoria aldatu"
msgid "Change report reason"
msgstr "Aldatu salaketa arrazoia"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Editatu Feedak"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Editatu irudia"
@@ -4986,8 +4986,8 @@ msgstr "Ezkutatu post hau?"
msgid "Hide this reply?"
msgstr "Ezkutatu erantzun hau?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr "Kendu gordetako postetatik"
msgid "Remove from your feeds?"
msgstr "Zure feedetatik kendu?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Kendu irudia"
@@ -8910,7 +8910,7 @@ msgstr "Hautatu telefono kodea"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Aukeratu {emojiName} emojia zure abatar gisa"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "Hautatu iturburu-hizkuntza"
@@ -10521,18 +10521,18 @@ msgstr "Gaia"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Itzuli"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "Itzulia"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,16 +10565,16 @@ msgstr "Konfiantza harremanetatik, komunitateetatik eta partekatutako testuingur
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
-msgstr "Saiatu beste bilaketa-termino batekin edo <0>irakurri bilaketa-iragazkiak nola erabili0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
+msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
msgctxt "action"
msgid "Try again"
msgstr "Saiatu berriro"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/fi/messages.po b/src/locale/locales/fi/messages.po
index 312d246857..47b04125bb 100644
--- a/src/locale/locales/fi/messages.po
+++ b/src/locale/locales/fi/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: fi\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Lisää tili"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Kirjautuneena jo sisään käyttäjänä @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Tekstivastine"
msgid "Alt Text"
msgstr "Tekstivastine"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Tekstivastine kuvailee kuvia sokeille ja heikkonäköisille käyttäjille sekä lisää kontekstia kaikille."
@@ -1974,7 +1974,7 @@ msgstr "Tekstitykset ja tekstivastine"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Vaihda"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Muokkaa syötteitä"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Muokkaa kuvaa"
@@ -4986,8 +4986,8 @@ msgstr "Piilotetaanko tämä julkaisu?"
msgid "Hide this reply?"
msgstr "Piilotetaanko tämä vastaus?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Poista kuva"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Valitse emoji {emojiName} profiikuvaksesi"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "Aihe"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Käännä"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr ""
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Yritä uudelleen"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po
index a3a9c7d0c4..853d3d515d 100644
--- a/src/locale/locales/fr/messages.po
+++ b/src/locale/locales/fr/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: fr\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -851,8 +851,8 @@ msgstr "Ajouter un compte"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Déjà connecté·e en tant que @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Texte alt"
msgid "Alt Text"
msgstr "Texte alt"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Le texte alt décrit les images pour les personnes aveugles et malvoyantes, et aide à donner un contexte à tout le monde."
@@ -1974,7 +1974,7 @@ msgstr "Sous-titres et texte alt"
msgid "Cashtag {tag}"
msgstr "Mot-blé {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Modifier"
@@ -2020,9 +2020,9 @@ msgstr "Changer de catégorie de rapport"
msgid "Change report reason"
msgstr "Changer la raison du signalement"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
-msgstr ""
+msgstr "Changer la langue d’origine"
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
msgid "Change your password"
@@ -3123,7 +3123,7 @@ msgstr "Options pour développeurs"
#: src/lib/translation/index.tsx:265
msgid "Device failed to translate :("
-msgstr ""
+msgstr "L’appareil n’arrive pas à traduire :("
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
@@ -3446,7 +3446,7 @@ msgstr "Modifier les fils d’actu"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Modifier l’image"
@@ -4986,8 +4986,8 @@ msgstr "Cacher ce post ?"
msgid "Hide this reply?"
msgstr "Cacher cette réponse ?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -7713,7 +7713,7 @@ msgstr "Profil"
#: src/screens/Profile/Header/Shell.tsx:174
msgid "Profile banner placeholder"
-msgstr ""
+msgstr "Bannière de profil vide"
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
@@ -8030,7 +8030,7 @@ msgstr "Retirer des posts conservés"
msgid "Remove from your feeds?"
msgstr "Supprimer de vos fils d’actu ?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Supprimer l’image"
@@ -8910,7 +8910,7 @@ msgstr "Sélectionner un code téléphonique"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Sélectionner l’emoji {emojiName} comme avatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "Sélectionner la langue source"
@@ -10521,18 +10521,18 @@ msgstr "Sujet"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Traduire"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "Traduction"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,18 +10565,18 @@ msgstr "La confiance émerge de relations, de communautés et d’un contexte pa
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
-msgstr "Essayez avec une autre recherche, ou <0>découvrez-en plus sur les filtres de recherche (en anglais)0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
+msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
msgctxt "action"
msgid "Try again"
msgstr "Réessayer"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
-msgstr ""
+msgstr "Essayer avec Google Traduction"
#: src/lib/interests.ts:74
msgid "TV"
@@ -11310,7 +11310,7 @@ msgstr "Voir le profil"
#: src/screens/Profile/Header/Shell.tsx:173
msgid "View profile banner"
-msgstr ""
+msgstr "Voir la bannière du profil"
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
diff --git a/src/locale/locales/fy/messages.po b/src/locale/locales/fy/messages.po
index 3c391f944d..7bb97a22ad 100644
--- a/src/locale/locales/fy/messages.po
+++ b/src/locale/locales/fy/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: fy\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Frisian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Account tafoegje"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Al oanmeld as @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Alt-tekst"
msgid "Alt Text"
msgstr "Alt-tekst"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alt-tekst beskriuwt ôfbyldingen foar bline en fisueel beheinde brûkers en biedt elkenien kontekst."
@@ -1974,7 +1974,7 @@ msgstr "Undertitels & alt-tekst"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Wizigje"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr "Rapportearreden wizigje"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Feeds bewurkje"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Ofbylding bewurkje"
@@ -4986,8 +4986,8 @@ msgstr "Dit berjocht ferstopje?"
msgid "Hide this reply?"
msgstr "Dizze reaksje ferstopje?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr "Ut myn feeds fuortsmite?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Ofbylding fuortsmite"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Dyn avatar as de {emojiName}-emoji selektearje"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "Underwerp"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Oersette"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "Fertrouwen ûntstiet út relaasjes, mienskippen en dielde kontekst, dus
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Probearje opnij"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po
index db2ae332c3..0fa6fed343 100644
--- a/src/locale/locales/ga/messages.po
+++ b/src/locale/locales/ga/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ga\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Irish\n"
"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n"
@@ -851,8 +851,8 @@ msgstr "Cuir cuntas leis seo"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Logáilte isteach cheana mar @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Téacs malartach"
msgid "Alt Text"
msgstr "Téacs Malartach"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Cuireann an téacs malartach síos ar na híomhánna do dhaoine atá dall nó a bhfuil lagú radhairc orthu agus cuireann sé an comhthéacs ar fáil do chuile dhuine."
@@ -1974,7 +1974,7 @@ msgstr "Fotheidil agus téacs malartach"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Athraigh"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Cuir Fothaí in Eagar"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Cuir an íomhá seo in eagar"
@@ -4986,8 +4986,8 @@ msgstr "An bhfuil fonn ort an phostáil seo a chur i bhfolach?"
msgid "Hide this reply?"
msgstr "An bhfuil fonn ort an freagra seo a chur i bhfolach?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Bain an íomhá de"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Roghnaigh an emoji {emojiName} mar abhatár"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "Ábhar"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Aistrigh"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr ""
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Bain triail eile as"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/gd/messages.po b/src/locale/locales/gd/messages.po
index d989ea15d5..bf252fc881 100644
--- a/src/locale/locales/gd/messages.po
+++ b/src/locale/locales/gd/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: gd\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:46\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Scottish Gaelic\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n>2 && n<20) ? 2 : 3;\n"
@@ -851,8 +851,8 @@ msgstr "Cuir cunntas ris"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Air clàradh a-steach mar @{0} mu thràth"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "Roghainn teacsa"
@@ -1170,7 +1170,7 @@ msgstr "Roghainn teacsa"
msgid "Alt Text"
msgstr "Roghainn teacsa"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Mìnichidh roghainn teacsa na tha san dealbh do dhaoine a tha dall no air beag-lèirsinn is bheir e co-theacsa dhan a h-uile duine."
@@ -1974,7 +1974,7 @@ msgstr "Caipseanan ⁊ roghainn teacsa"
msgid "Cashtag {tag}"
msgstr "Cashtag {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Atharraich"
@@ -2020,7 +2020,7 @@ msgstr "Atharraich roinn-seòrsa na h-aithisg"
msgid "Change report reason"
msgstr "Atharraich adhbhar na h-aithrise"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Deasaich na h-inbhirean"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Deasaich an dealbh"
@@ -4986,8 +4986,8 @@ msgstr "A bheil thu airson am post seo a chur am falach?"
msgid "Hide this reply?"
msgstr "A bheil thu airson an fhreagairt seo a chur am falach?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr "Air a thoirt air falbh o na puist a shàbhail thu"
msgid "Remove from your feeds?"
msgstr "A bheil thu airson a thoirt air falbh o na h-inbhirean agad?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Thoir an dealbh air falbh"
@@ -8910,7 +8910,7 @@ msgstr "Tagh còd fòn"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Cleachd an emoji {emojiName} mar avatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "Cuspair"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Eadar-theangaich"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "Èiridh earbsa à dàimhean, coimhearsnachdan is co-chomann agus ri linn
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Feuch ris a-rithist"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/gl/messages.po b/src/locale/locales/gl/messages.po
index f799e6553c..dbfe360ee5 100644
--- a/src/locale/locales/gl/messages.po
+++ b/src/locale/locales/gl/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: gl\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Galician\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Engadir conta"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Sesión iniciada como @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Texto alternativo"
msgid "Alt Text"
msgstr "Texto alternativo"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "O texto alternativo describe imaxes a persoas cegas ou con baixa visión e axuda a dar máis contexto."
@@ -1974,7 +1974,7 @@ msgstr "Lexendaxe e texto alternativo"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Cambiar"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Editar Canles"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Editar imaxe"
@@ -4986,8 +4986,8 @@ msgstr "Ocultar este chío?"
msgid "Hide this reply?"
msgstr "Ocultar este rechouchío?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr "Eliminar das túas canles?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Eliminar a imaxe"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Seleccionar o emoji {emojiName} como o teu avatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "Tema"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Traducir"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr ""
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Intentar de novo"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po
index 191ab8d67b..254518c0c2 100644
--- a/src/locale/locales/hi/messages.po
+++ b/src/locale/locales/hi/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: hi\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Hindi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "खाता जोड़ें"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "@{0} द्वारा पहले से साइन इन कि
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "वैकल्पिक पाठ"
msgid "Alt Text"
msgstr "वैकल्पिक पाठ"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "वैकल्पिक पाठ अंधे और कम दृश्य लोगों के लिए छवियों का वर्णन करता है, और सब को संदर्भ देने में मदद करता है।"
@@ -1974,7 +1974,7 @@ msgstr "अनुशीर्षक और वैकल्पिक पाठ"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "बदलें"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "फ़ीड संपादित करें"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "छवि संपादित करें"
@@ -4986,8 +4986,8 @@ msgstr "यह पोस्ट छिपाएँ"
msgid "Hide this reply?"
msgstr "यह पोस्ट छिपाएँ?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "छवि हटाएँ"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "{emojiName} इमोजी को अपने अवतार के रूप में चुनें"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "विषय"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "अनुवाद करें"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr ""
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "फिर प्रयास करें"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/hu/messages.po b/src/locale/locales/hu/messages.po
index 975dbf9365..c103882fd4 100644
--- a/src/locale/locales/hu/messages.po
+++ b/src/locale/locales/hu/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: hu\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Fiók felvétele a listára"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Már bejelentkeztél, mint @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "HLYT"
@@ -1170,7 +1170,7 @@ msgstr "Helyettesítő szöveg"
msgid "Alt Text"
msgstr "Helyettesítő szöveg"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "A helyettesítő szöveg segít leírni egy képet vak vagy gyengén látó felhasználók számára, és mindenki más számára is további információval szolgálhat."
@@ -1974,7 +1974,7 @@ msgstr "Feliratok és helyettesítő szöveg"
msgid "Cashtag {tag}"
msgstr "Pénzcímke: {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Megváltoztatás"
@@ -2020,9 +2020,9 @@ msgstr "Jelentési kategória megváltoztatása"
msgid "Change report reason"
msgstr "Jelentési ok megváltoztatása"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
-msgstr ""
+msgstr "Forrásnyelv megváltoztatása"
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
msgid "Change your password"
@@ -3123,7 +3123,7 @@ msgstr "Fejlesztői beállítások"
#: src/lib/translation/index.tsx:265
msgid "Device failed to translate :("
-msgstr ""
+msgstr "Az eszköz nem tudta lefordítani a szöveget :("
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
@@ -3446,7 +3446,7 @@ msgstr "Hírfolyamok szerkesztése"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Kép szerkesztése"
@@ -4986,8 +4986,8 @@ msgstr "Bejegyzés elrejtése"
msgid "Hide this reply?"
msgstr "Válasz elrejtése"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -6809,7 +6809,7 @@ msgstr "A legrégebbi válaszok elöl"
#: src/components/StarterPack/QrCode.tsx:86
msgid "on<0><1/><2><3/>2>0>"
-msgstr "a<0><1/>0>Blueskyon"
+msgstr "a <0><1/>0> Blueskyon"
#: src/screens/Settings/Settings.tsx:405
msgid "Onboarding reset"
@@ -7713,7 +7713,7 @@ msgstr "Profil"
#: src/screens/Profile/Header/Shell.tsx:174
msgid "Profile banner placeholder"
-msgstr ""
+msgstr "Borítókép helyőrzője"
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
@@ -8030,7 +8030,7 @@ msgstr "Eltávolítás a mentett bejegyzések közül"
msgid "Remove from your feeds?"
msgstr "Eltávolítás a hírfolyamgyűjteményből"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Kép eltávolítása"
@@ -8910,7 +8910,7 @@ msgstr "Országhívószám megadása"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "A(z) {emojiName} emoji kiválasztása profilképként"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "Forrásnyelv kiválasztása"
@@ -10523,18 +10523,18 @@ msgstr "Témakör"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Fordítás"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "Lefordítva"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10567,18 +10567,18 @@ msgstr "A bizalom kapcsolatok, közösségek és egy megosztott környezet útj
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
-msgstr "Próbálkozz másmilyen kifejezésekkel. <0>További információ a keresésszűrőkről (angol nyelven)0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
+msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
msgctxt "action"
msgid "Try again"
msgstr "Újra"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
-msgstr ""
+msgstr "Újrapróbálkozás a Google Fordítóval"
#: src/lib/interests.ts:74
msgid "TV"
@@ -11312,7 +11312,7 @@ msgstr "Profil megtekintése"
#: src/screens/Profile/Header/Shell.tsx:173
msgid "View profile banner"
-msgstr ""
+msgstr "Borítókép megtekintése"
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
diff --git a/src/locale/locales/ia/messages.po b/src/locale/locales/ia/messages.po
index c01a88c3ee..f5415a0b95 100644
--- a/src/locale/locales/ia/messages.po
+++ b/src/locale/locales/ia/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ia\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Interlingua\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -851,8 +851,8 @@ msgstr "Adder conto"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Tu es ja in session como @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Texto alternative"
msgid "Alt Text"
msgstr "Texto alternative"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Le texto alternative describe imagines pro usatores cec o con problemas de vision, e adjuta a dar contexto a totes."
@@ -1974,7 +1974,7 @@ msgstr "Subtitulos e texto alternative"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Cambiar"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr "Cambiar ration de signalamento"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Modificar canales"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Modificar imagine"
@@ -4986,8 +4986,8 @@ msgstr "Occultar iste publication?"
msgid "Hide this reply?"
msgstr "Occultar iste responsa?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr "Remover de tu canales?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Remover imagine"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Seliger le emoji {emojiName} como tu avatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "Topico"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Traducer"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "Le confidentia emerge del relationes, del communitates e de un contexto
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Retenta"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po
index 2b98f573b2..b432572874 100644
--- a/src/locale/locales/id/messages.po
+++ b/src/locale/locales/id/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: id\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -851,8 +851,8 @@ msgstr "Tambahkan akun"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Sudah masuk sebagai @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Teks alt"
msgid "Alt Text"
msgstr "Teks Alt"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Teks alt menjelaskan gambar untuk pengguna tunanetra dan pengguna dengan penglihatan rendah, serta membantu memberikan konteks kepada semua orang."
@@ -1974,7 +1974,7 @@ msgstr "Subtitel & teks alt"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Ubah"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr "Ubah alasan melapor"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Ubah Daftar Feed"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Edit gambar"
@@ -4986,8 +4986,8 @@ msgstr "Sembunyikan postingan ini?"
msgid "Hide this reply?"
msgstr "Sembunyikan balasan ini?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr "Hapus dari feed Anda?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Hapus gambar"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Pilih emoji {emojiName} sebagai avatar Anda"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "Topik"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Terjemahkan"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "Percaya muncul dari hubungan, komunitas, dan konteks bersama, oleh karen
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Coba lagi"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po
index 4895bd25ad..52f2951c18 100644
--- a/src/locale/locales/it/messages.po
+++ b/src/locale/locales/it/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: it\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Aggiungi account"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Hai effettuato l'accesso come @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Testo alternativo"
msgid "Alt Text"
msgstr "Testo alternativo"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Il testo alternativo descrive le immagini per gli utenti non vedenti ed ipovedenti, fornendo un contesto a tutti."
@@ -1974,7 +1974,7 @@ msgstr "Sottotitoli e testo alternativo"
msgid "Cashtag {tag}"
msgstr "Cashtag {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Cambia"
@@ -2020,9 +2020,9 @@ msgstr "Cambia categoria segnalazione"
msgid "Change report reason"
msgstr "Modifica motivo della segnalazione"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
-msgstr ""
+msgstr "Cambia la lingua di origine"
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
msgid "Change your password"
@@ -3123,7 +3123,7 @@ msgstr "Opzioni sviluppatore"
#: src/lib/translation/index.tsx:265
msgid "Device failed to translate :("
-msgstr ""
+msgstr "Il dispositivo non è riuscito a tradurre :("
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
@@ -3446,7 +3446,7 @@ msgstr "Modifica i feed"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Modifica immagine"
@@ -4986,8 +4986,8 @@ msgstr "Nascondere questo post?"
msgid "Hide this reply?"
msgstr "Nascondere questa risposta?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -7713,7 +7713,7 @@ msgstr "Profilo"
#: src/screens/Profile/Header/Shell.tsx:174
msgid "Profile banner placeholder"
-msgstr ""
+msgstr "Segnaposto banner del profilo"
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
@@ -8030,7 +8030,7 @@ msgstr "Rimuovi dai post salvati"
msgid "Remove from your feeds?"
msgstr "Rimuovere dai tuoi feed?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Rimuovi immagine"
@@ -8910,7 +8910,7 @@ msgstr "Seleziona codice telefonico"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Scegli la {emojiName} emoji come tuo avatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "Seleziona la lingua di origine"
@@ -10521,18 +10521,18 @@ msgstr "Argomento"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Traduci"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "Tradotto"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "La fiducia nasce dalle relazioni, dalle comunità e dal contesto condivi
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,10 +10573,10 @@ msgctxt "action"
msgid "Try again"
msgstr "Riprova"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
-msgstr ""
+msgstr "Prova con Google Translate"
#: src/lib/interests.ts:74
msgid "TV"
@@ -11310,7 +11310,7 @@ msgstr "Vedi il profilo"
#: src/screens/Profile/Header/Shell.tsx:173
msgid "View profile banner"
-msgstr ""
+msgstr "Vedi banner del profilo"
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po
index 0c0f15b4b1..21d0ce4131 100644
--- a/src/locale/locales/ja/messages.po
+++ b/src/locale/locales/ja/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ja\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -851,8 +851,8 @@ msgstr "アカウントを追加"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "@{0}としてすでにサインイン済み"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "ALTテキスト"
msgid "Alt Text"
msgstr "ALTテキスト"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "ALTテキストは、すべての人が文脈を理解できるようにするために、視覚障害者や低視力者向けに提供する画像の説明文です。"
@@ -1974,7 +1974,7 @@ msgstr "キャプション&ALTテキスト"
msgid "Cashtag {tag}"
msgstr "キャッシュタグ {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "変更"
@@ -2020,9 +2020,9 @@ msgstr "レポートカテゴリの変更"
msgid "Change report reason"
msgstr "報告の理由を変更"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
-msgstr ""
+msgstr "翻訳元の言語を変更"
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
msgid "Change your password"
@@ -3123,7 +3123,7 @@ msgstr "開発者用オプション"
#: src/lib/translation/index.tsx:265
msgid "Device failed to translate :("
-msgstr ""
+msgstr "デバイスによる翻訳に失敗しました :("
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
@@ -3446,7 +3446,7 @@ msgstr "フィードを編集"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "画像を編集"
@@ -4986,8 +4986,8 @@ msgstr "この投稿を非表示にしますか?"
msgid "Hide this reply?"
msgstr "この返信を非表示にしますか?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -7713,7 +7713,7 @@ msgstr "プロフィール"
#: src/screens/Profile/Header/Shell.tsx:174
msgid "Profile banner placeholder"
-msgstr ""
+msgstr "プロファイルバナーのプレースホルダー"
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
@@ -7911,7 +7911,7 @@ msgstr "プッシュ通知を受け取る"
#: src/screens/Search/components/SearchHistory.tsx:50
msgid "Recent searches"
-msgstr ""
+msgstr "検索履歴"
#: src/components/dialogs/LanguageSelectDialog.tsx:257
msgid "Recently used"
@@ -8030,7 +8030,7 @@ msgstr "保存済投稿から削除"
msgid "Remove from your feeds?"
msgstr "フィードから削除しますか?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "イメージを削除"
@@ -8910,7 +8910,7 @@ msgstr "電話の国番号を選択"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "絵文字{emojiName}をアバターとして選択"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "翻訳元の言語を選択"
@@ -10521,18 +10521,18 @@ msgstr "トピック"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "翻訳"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "翻訳"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "信頼は人間関係、コミュニティ、共有されている文脈
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,10 +10573,10 @@ msgctxt "action"
msgid "Try again"
msgstr "再試行"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
-msgstr ""
+msgstr "Google翻訳を試す"
#: src/lib/interests.ts:74
msgid "TV"
@@ -11253,7 +11253,7 @@ msgstr "{0}のプロフィールを表示"
#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle)
#: src/components/ProfileCard.tsx:143
msgid "View {0}’s profile"
-msgstr ""
+msgstr "{0}のプロフィールを見る"
#: src/components/dms/MessagesListHeader.tsx:142
msgid "View {displayName}'s profile"
@@ -11310,7 +11310,7 @@ msgstr "プロフィールを表示"
#: src/screens/Profile/Header/Shell.tsx:173
msgid "View profile banner"
-msgstr ""
+msgstr "プロフィールのバナーを見る"
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
diff --git a/src/locale/locales/kab/messages.po b/src/locale/locales/kab/messages.po
index f4dc10fdb7..eaf7209997 100644
--- a/src/locale/locales/kab/messages.po
+++ b/src/locale/locales/kab/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: kab\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Kabyle\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -558,28 +558,28 @@ msgstr ""
#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.likeCount)
#. placeholder {1}: post.likeCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:489
msgid "<0>{0}0> {1, plural, one {like} other {likes}}"
msgstr ""
#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.quoteCount)
#. placeholder {1}: post.quoteCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471
msgid "<0>{0}0> {1, plural, one {quote} other {quotes}}"
msgstr ""
#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.repostCount)
#. placeholder {1}: post.repostCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "<0>{0}0> {1, plural, one {repost} other {reposts}}"
msgstr ""
#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.bookmarkCount)
#. placeholder {1}: post.bookmarkCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:516
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
msgid "<0>{0}0> {1, plural, one {save} other {saves}}"
msgstr ""
@@ -733,7 +733,7 @@ msgstr ""
msgid "Account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:425
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422
#: src/screens/Messages/components/RequestButtons.tsx:97
#: src/view/com/profile/ProfileMenu.tsx:182
msgctxt "toast"
@@ -753,7 +753,7 @@ msgstr ""
msgid "Account is deactivated"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:447
#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account muted"
@@ -792,7 +792,7 @@ msgctxt "toast"
msgid "Account unfollowed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:439
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unmuted"
@@ -844,17 +844,17 @@ msgid "Add a user to this list"
msgstr ""
#: src/components/dialogs/SwitchAccount.tsx:56
-#: src/screens/Deactivated.tsx:186
+#: src/screens/Deactivated.tsx:184
msgid "Add account"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:171
-#: src/view/com/composer/photos/Gallery.tsx:218
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:97
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:105
+#: src/view/com/composer/photos/Gallery.tsx:181
+#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
msgstr ""
@@ -1152,13 +1152,13 @@ msgstr ""
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:189
+#: src/view/com/composer/photos/Gallery.tsx:199
msgid "ALT"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:55
#: src/view/com/composer/GifAltText.tsx:157
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:130
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:132
#: src/view/com/composer/videos/SubtitleDialog.tsx:41
#: src/view/com/composer/videos/SubtitleDialog.tsx:59
#: src/view/com/composer/videos/SubtitleDialog.tsx:110
@@ -1170,13 +1170,13 @@ msgstr ""
msgid "Alt Text"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:262
+#: src/view/com/composer/photos/Gallery.tsx:273
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr ""
#. placeholder {0}: i18n.number(MAX_ALT_TEXT)
#: src/view/com/composer/GifAltText.tsx:182
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:151
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
msgstr ""
@@ -1442,12 +1442,12 @@ msgid "Apply Pull Request"
msgstr ""
#. placeholder {0}: niceDate(i18n, createdAt, 'medium')
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:728
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623
msgid "Archived from {0}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:737
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:594
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
msgid "Archived post"
msgstr ""
@@ -1505,8 +1505,8 @@ msgstr ""
msgid "Artistic or non-erotic nudity."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
msgid "Assign topic for algo"
msgstr ""
@@ -1541,7 +1541,7 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:178
#: src/screens/Messages/components/ChatDisabled.tsx:146
#: src/screens/Messages/components/ChatDisabled.tsx:147
-#: src/screens/Profile/Header/Shell.tsx:179
+#: src/screens/Profile/Header/Shell.tsx:184
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
#: src/screens/Signup/BackNextButtons.tsx:42
@@ -1618,7 +1618,7 @@ msgstr ""
msgid "Birthday"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:826
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:814
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
#: src/view/com/profile/ProfileMenu.tsx:553
msgid "Block"
@@ -1626,8 +1626,8 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:273
#: src/components/dms/ConvoMenu.tsx:276
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:711
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:713
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:716
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:718
#: src/screens/Messages/components/RequestButtons.tsx:150
#: src/screens/Messages/components/RequestButtons.tsx:152
#: src/view/com/profile/ProfileMenu.tsx:459
@@ -1635,7 +1635,7 @@ msgstr ""
msgid "Block account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:821
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
#: src/view/com/profile/ProfileMenu.tsx:536
msgid "Block Account?"
msgstr ""
@@ -1687,7 +1687,7 @@ msgstr ""
msgid "Blocked Accounts"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:823
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812
#: src/view/com/profile/ProfileMenu.tsx:548
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
msgid "Bluesky"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:753
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:648
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr ""
@@ -1921,7 +1921,7 @@ msgstr ""
#: src/features/liveNow/components/GoLiveDialog.tsx:248
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
-#: src/screens/Deactivated.tsx:152
+#: src/screens/Deactivated.tsx:150
#: src/screens/Profile/Header/EditProfileDialog.tsx:219
#: src/screens/Profile/Header/EditProfileDialog.tsx:227
#: src/screens/Search/Shell.tsx:396
@@ -1946,7 +1946,7 @@ msgstr ""
msgid "Cancel quote post"
msgstr ""
-#: src/screens/Deactivated.tsx:146
+#: src/screens/Deactivated.tsx:144
msgid "Cancel reactivation and sign out"
msgstr ""
@@ -1954,9 +1954,9 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:108
-#: src/components/PostControls/index.tsx:139
-#: src/components/PostControls/index.tsx:167
+#: src/components/PostControls/index.tsx:109
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:164
#: src/state/shell/composer/index.tsx:108
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -1974,7 +1974,7 @@ msgstr ""
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:150
+#: src/components/Post/Translated/index.tsx:395
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr ""
@@ -2020,8 +2020,8 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:146
-msgid "Change source language"
+#: src/components/Post/Translated/index.tsx:385
+msgid "Change the source language"
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
@@ -2689,8 +2689,8 @@ msgstr ""
msgid "Copy post at:// URI"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:518
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:531
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Copy post text"
msgstr ""
@@ -2970,7 +2970,7 @@ msgid "Default icons"
msgstr ""
#: src/components/dms/MessageContextMenu.tsx:204
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:772
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3043,8 +3043,8 @@ msgstr ""
msgid "Delete my account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:751
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758
#: src/view/com/composer/Composer.tsx:1430
msgid "Delete post"
msgstr ""
@@ -3062,7 +3062,7 @@ msgstr ""
msgid "Delete this list?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:769
msgid "Delete this post?"
msgstr ""
@@ -3093,16 +3093,16 @@ msgid "Description"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:153
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:126
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128
msgid "Descriptive alt text"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:655
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:670
msgid "Detach quote"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:797
msgid "Detach quote post?"
msgstr ""
@@ -3121,6 +3121,10 @@ msgstr ""
msgid "Developer options"
msgstr ""
+#: src/lib/translation/index.tsx:265
+msgid "Device failed to translate :("
+msgstr ""
+
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
msgstr ""
@@ -3340,7 +3344,7 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1119
+#: src/screens/VideoFeed/index.tsx:1111
msgid "Double tap to like"
msgstr ""
@@ -3442,12 +3446,12 @@ msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:196
+#: src/view/com/composer/photos/Gallery.tsx:206
msgid "Edit image"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750
msgid "Edit interaction settings"
msgstr ""
@@ -3803,7 +3807,7 @@ msgstr ""
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:991
+#: src/screens/VideoFeed/index.tsx:987
msgid "Expands or collapses post text"
msgstr ""
@@ -3846,7 +3850,7 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:808
+#: src/Navigation.tsx:809
#: src/screens/Search/Shell.tsx:354
#: src/view/shell/desktop/LeftNav.tsx:689
#: src/view/shell/Drawer.tsx:417
@@ -3932,7 +3936,7 @@ msgstr ""
msgid "Failed to delete message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:214
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219
msgid "Failed to delete post, please try again"
msgstr ""
@@ -4090,7 +4094,7 @@ msgstr ""
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:247
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:249
msgid "Failed to toggle thread mute, please try again"
msgstr ""
@@ -4181,8 +4185,8 @@ msgstr ""
msgid "Feedback"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:301
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:325
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:326
msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
@@ -4343,7 +4347,7 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:153
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:388
-#: src/screens/VideoFeed/index.tsx:875
+#: src/screens/VideoFeed/index.tsx:870
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
@@ -4355,7 +4359,7 @@ msgstr ""
msgid "Follow {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:852
+#: src/screens/VideoFeed/index.tsx:849
msgid "Follow {handle}"
msgstr ""
@@ -4450,7 +4454,7 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:156
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:384
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/VideoFeed/index.tsx:868
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4471,7 +4475,7 @@ msgstr ""
msgid "Following {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:851
+#: src/screens/VideoFeed/index.tsx:848
msgid "Following {handle}"
msgstr ""
@@ -4680,9 +4684,9 @@ msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/ProfileList/components/ErrorScreen.tsx:41
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1180
-#: src/screens/VideoFeed/index.tsx:1184
-#: src/view/com/auth/LoggedOut.tsx:92
+#: src/screens/VideoFeed/index.tsx:1172
+#: src/screens/VideoFeed/index.tsx:1176
+#: src/view/com/auth/LoggedOut.tsx:93
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
#: src/view/screens/NotFound.tsx:58
@@ -4909,7 +4913,7 @@ msgstr ""
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:648
+#: src/screens/VideoFeed/index.tsx:647
msgid "Hidden by your moderation settings."
msgstr ""
@@ -4922,7 +4926,7 @@ msgstr ""
#: src/components/moderation/ContentHider.tsx:220
#: src/components/moderation/LabelPreference.tsx:141
#: src/components/moderation/PostHider.tsx:140
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:780
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
#: src/lib/moderation/useLabelBehaviorDescription.ts:28
@@ -4949,18 +4953,18 @@ msgstr ""
msgid "Hide lists"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:612
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
msgid "Hide post for me"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:639
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:644
msgid "Hide reply for everyone"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:611
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:617
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
msgid "Hide reply for me"
msgstr ""
@@ -4973,17 +4977,19 @@ msgstr ""
msgid "Hide this event"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
msgid "Hide this post?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:804
msgid "Hide this reply?"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
+#: src/components/Post/Translated/index.tsx:192
+#: src/components/Post/Translated/index.tsx:318
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
msgstr ""
@@ -5050,8 +5056,8 @@ msgstr ""
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/Navigation.tsx:803
-#: src/Navigation.tsx:823
+#: src/Navigation.tsx:804
+#: src/Navigation.tsx:824
#: src/view/shell/bottom-bar/BottomBar.tsx:177
#: src/view/shell/desktop/LeftNav.tsx:671
#: src/view/shell/Drawer.tsx:443
@@ -5152,7 +5158,7 @@ msgstr ""
msgid "If you need to update your email, <0>click here0>."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
@@ -5322,7 +5328,7 @@ msgstr ""
msgid "Invalid handle. Please try a different one."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:397
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:396
msgctxt "toast"
msgid "Invalid interaction settings."
msgstr ""
@@ -5637,7 +5643,7 @@ msgstr ""
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:288
+#: src/components/PostControls/index.tsx:278
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5704,7 +5710,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:499
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr ""
@@ -6051,7 +6057,7 @@ msgstr ""
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:818
+#: src/Navigation.tsx:819
msgid "Messages"
msgstr ""
@@ -6184,8 +6190,8 @@ msgstr ""
msgid "Mute {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705
#: src/view/com/profile/ProfileMenu.tsx:438
#: src/view/com/profile/ProfileMenu.tsx:445
msgid "Mute account"
@@ -6237,13 +6243,13 @@ msgstr ""
msgid "Mute this word until you unmute it"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
msgid "Mute thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:603
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:605
msgid "Mute words & tags"
msgstr ""
@@ -6726,7 +6732,7 @@ msgid "Notification Sounds"
msgstr ""
#: src/Navigation.tsx:575
-#: src/Navigation.tsx:813
+#: src/Navigation.tsx:814
#: src/screens/Notifications/ActivityList.tsx:31
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
#: src/screens/Settings/NotificationSettings/index.tsx:93
@@ -6790,7 +6796,7 @@ msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:759
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:654
msgid "Okay"
msgstr ""
@@ -6928,7 +6934,7 @@ msgstr ""
msgid "Open pack"
msgstr ""
-#: src/components/PostControls/PostMenu/index.tsx:66
+#: src/components/PostControls/PostMenu/index.tsx:67
msgid "Open post options menu"
msgstr ""
@@ -7060,11 +7066,11 @@ msgstr ""
msgid "Options:"
msgstr ""
-#: src/screens/Deactivated.tsx:194
+#: src/screens/Deactivated.tsx:192
msgid "Or, continue with another account."
msgstr ""
-#: src/screens/Deactivated.tsx:181
+#: src/screens/Deactivated.tsx:179
msgid "Or, sign in to one of your other accounts."
msgstr ""
@@ -7260,8 +7266,8 @@ msgstr ""
msgid "Pin to Home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:486
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
msgid "Pin to your profile"
msgstr ""
@@ -7524,7 +7530,7 @@ msgstr ""
msgid "Post by @{0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:194
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199
msgctxt "toast"
msgid "Post deleted"
msgstr ""
@@ -7533,10 +7539,10 @@ msgstr ""
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:143
-#: src/screens/PostThread/components/ThreadItemPost.tsx:112
-#: src/screens/PostThread/components/ThreadItemTreePost.tsx:108
-#: src/screens/VideoFeed/index.tsx:552
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:130
+#: src/screens/PostThread/components/ThreadItemPost.tsx:113
+#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109
+#: src/screens/VideoFeed/index.tsx:551
msgid "Post has been deleted"
msgstr ""
@@ -7705,6 +7711,10 @@ msgstr ""
msgid "Profile"
msgstr ""
+#: src/screens/Profile/Header/Shell.tsx:174
+msgid "Profile banner placeholder"
+msgstr ""
+
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
msgstr ""
@@ -7786,11 +7796,11 @@ msgstr ""
msgid "Quote post"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:346
msgid "Quote post was re-attached"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
msgid "Quote post was successfully detached"
msgstr ""
@@ -7808,7 +7818,7 @@ msgstr ""
msgid "Quotes"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:481
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467
msgid "Quotes of this post"
msgstr ""
@@ -7820,8 +7830,8 @@ msgstr ""
msgid "Rate limit exceeded. Please try again later."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
msgid "Re-attach quote"
msgstr ""
@@ -7829,7 +7839,7 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/screens/Deactivated.tsx:135
+#: src/screens/Deactivated.tsx:133
msgid "Reactivate your account"
msgstr ""
@@ -7848,11 +7858,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:992
+#: src/screens/VideoFeed/index.tsx:988
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:992
+#: src/screens/VideoFeed/index.tsx:988
msgid "Read more"
msgstr ""
@@ -8020,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:205
+#: src/view/com/composer/photos/Gallery.tsx:215
msgid "Remove image"
msgstr ""
@@ -8172,7 +8182,7 @@ msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:242
+#: src/components/PostControls/index.tsx:236
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -8198,12 +8208,12 @@ msgstr ""
msgid "Reply sorting"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384
msgctxt "toast"
msgid "Reply visibility updated"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:382
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
msgid "Reply was successfully hidden"
msgstr ""
@@ -8246,8 +8256,8 @@ msgstr ""
msgid "Report message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:720
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:725
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Report post"
msgstr ""
@@ -8339,7 +8349,7 @@ msgstr ""
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:447
msgid "Reposts of this post"
msgstr ""
@@ -8482,7 +8492,7 @@ msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:579
-#: src/screens/VideoFeed/index.tsx:1181
+#: src/screens/VideoFeed/index.tsx:1173
#: src/view/screens/NotFound.tsx:61
msgid "Returns to previous page"
msgstr ""
@@ -8508,8 +8518,8 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:205
#: src/view/com/composer/photos/EditImageDialog.web.tsx:63
#: src/view/com/composer/photos/EditImageDialog.web.tsx:76
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:165
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:175
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:167
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:177
msgid "Save"
msgstr ""
@@ -8900,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr ""
-#: src/components/Post/Translated/index.tsx:156
+#: src/components/Post/Translated/index.tsx:402
msgid "Select the source language"
msgstr ""
@@ -9199,8 +9209,8 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
#: src/screens/List/ListHiddenScreen.tsx:194
-#: src/screens/VideoFeed/index.tsx:651
-#: src/screens/VideoFeed/index.tsx:657
+#: src/screens/VideoFeed/index.tsx:650
+#: src/screens/VideoFeed/index.tsx:656
msgid "Show anyway"
msgstr ""
@@ -9217,8 +9227,8 @@ msgstr ""
msgid "Show customization options"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:549
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:551
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564
msgid "Show less like this"
msgstr ""
@@ -9239,8 +9249,8 @@ msgstr ""
msgid "Show More"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:541
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556
msgid "Show more like this"
msgstr ""
@@ -9266,8 +9276,8 @@ msgstr ""
msgid "Show replies as"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:628
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643
msgid "Show reply for everyone"
msgstr ""
@@ -9294,7 +9304,7 @@ msgstr ""
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:700
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:595
msgid "Shows information about when this post was created"
msgstr ""
@@ -9340,8 +9350,8 @@ msgstr ""
msgid "Sign in as..."
msgstr ""
-#: src/screens/Deactivated.tsx:197
-#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:195
+#: src/screens/Deactivated.tsx:201
msgid "Sign in or create an account"
msgstr ""
@@ -9357,8 +9367,8 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:529
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:542
msgid "Sign in to view post"
msgstr ""
@@ -9478,7 +9488,7 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
#: src/components/moderation/ReportDialog/index.tsx:273
-#: src/screens/Deactivated.tsx:88
+#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
msgid "Something went wrong, please try again"
@@ -9509,8 +9519,8 @@ msgstr ""
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
-#: src/App.native.tsx:142
-#: src/App.web.tsx:118
+#: src/App.native.tsx:143
+#: src/App.web.tsx:119
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -9896,7 +9906,7 @@ msgstr ""
msgid "That's all, folks!"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1153
+#: src/screens/VideoFeed/index.tsx:1145
msgid "That's everything!"
msgstr ""
@@ -10082,9 +10092,9 @@ msgid "There was an issue updating your feeds, please check your internet connec
msgstr ""
#. placeholder {0}: e.toString()
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:430
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:444
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:441
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:452
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:128
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90
@@ -10309,7 +10319,7 @@ msgstr ""
#. placeholder {0}: niceDate(i18n, createdAt)
#. placeholder {1}: niceDate(i18n, indexedAt)
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:740
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
@@ -10337,7 +10347,7 @@ msgstr ""
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:813
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:805
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr ""
@@ -10414,7 +10424,7 @@ msgstr ""
msgid "This will remove @{0} from the quick access list."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr ""
@@ -10511,23 +10521,20 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:512
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:640
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/components/Post/Translated/index.tsx:139
+#: src/components/Post/Translated/index.tsx:146
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr ""
-#: src/components/Post/Translated/index.tsx:78
+#: src/components/Post/Translated/index.tsx:292
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:76
-msgid "Translated from {langName}"
-msgstr ""
-
-#: src/components/Post/Translated/index.tsx:50
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:626
+#: src/components/Post/Translated/index.tsx:89
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
msgstr ""
@@ -10566,6 +10573,11 @@ msgctxt "action"
msgid "Try again"
msgstr ""
+#: src/components/Post/Translated/index.tsx:205
+#: src/components/Post/Translated/index.tsx:213
+msgid "Try Google Translate"
+msgstr ""
+
#: src/lib/interests.ts:74
msgid "TV"
msgstr ""
@@ -10701,7 +10713,7 @@ msgstr ""
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:856
+#: src/screens/VideoFeed/index.tsx:852
msgid "Unfollows the user"
msgstr ""
@@ -10735,7 +10747,7 @@ msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:278
+#: src/components/PostControls/index.tsx:270
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -10756,8 +10768,8 @@ msgstr ""
msgid "Unmute {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:693
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:698
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:704
#: src/view/com/profile/ProfileMenu.tsx:437
#: src/view/com/profile/ProfileMenu.tsx:443
msgid "Unmute account"
@@ -10772,8 +10784,8 @@ msgstr ""
msgid "Unmute list"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
msgid "Unmute thread"
msgstr ""
@@ -10798,8 +10810,8 @@ msgstr ""
msgid "Unpin from home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:492
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
msgid "Unpin from profile"
msgstr ""
@@ -10872,12 +10884,12 @@ msgstr ""
msgid "Update your email"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:402
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
@@ -11176,7 +11188,7 @@ msgid "Video from {0}: {text}"
msgstr ""
#. placeholder {0}: sanitizeHandle( post.author.handle, '@', )
-#: src/screens/VideoFeed/index.tsx:1114
+#: src/screens/VideoFeed/index.tsx:1107
msgid "Video from {0}. Tap to play or pause the video"
msgstr ""
@@ -11185,11 +11197,11 @@ msgstr ""
msgid "Video Games"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1111
+#: src/screens/VideoFeed/index.tsx:1106
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1111
+#: src/screens/VideoFeed/index.tsx:1106
msgid "Video is playing"
msgstr ""
@@ -11224,7 +11236,7 @@ msgid "View"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Profile/Header/Shell.tsx:262
+#: src/screens/Profile/Header/Shell.tsx:267
msgid "View {0}'s avatar"
msgstr ""
@@ -11233,7 +11245,7 @@ msgstr ""
#. placeholder {0}: profile.handle
#: src/screens/Profile/components/ProfileFeedHeader.tsx:459
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:815
+#: src/screens/VideoFeed/index.tsx:813
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr ""
@@ -11259,8 +11271,8 @@ msgstr ""
msgid "View debug entry"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:679
-#: src/screens/VideoFeed/index.tsx:697
+#: src/screens/VideoFeed/index.tsx:678
+#: src/screens/VideoFeed/index.tsx:696
msgid "View details"
msgstr ""
@@ -11296,6 +11308,10 @@ msgstr ""
msgid "View profile"
msgstr ""
+#: src/screens/Profile/Header/Shell.tsx:173
+msgid "View profile banner"
+msgstr ""
+
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
msgstr ""
@@ -11585,7 +11601,7 @@ msgstr ""
msgid "We've confirmed your age assurance status. You can now close this dialog."
msgstr ""
-#: src/screens/Deactivated.tsx:119
+#: src/screens/Deactivated.tsx:117
msgid "Welcome back!"
msgstr ""
@@ -11733,15 +11749,15 @@ msgstr ""
msgid "Yes, delete this starter pack"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:806
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800
msgid "Yes, detach"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:816
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:807
msgid "Yes, hide"
msgstr ""
-#: src/screens/Deactivated.tsx:141
+#: src/screens/Deactivated.tsx:139
msgid "Yes, reactivate my account"
msgstr ""
@@ -11861,7 +11877,7 @@ msgstr ""
msgid "You can only select one video at a time."
msgstr ""
-#: src/screens/Deactivated.tsx:127
+#: src/screens/Deactivated.tsx:125
msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
msgstr ""
@@ -12059,7 +12075,7 @@ msgid "You need to verify your email address before you can enable email 2FA."
msgstr ""
#. placeholder {0}: currentAccount?.handle
-#: src/screens/Deactivated.tsx:122
+#: src/screens/Deactivated.tsx:120
msgid "You previously deactivated @{0}."
msgstr ""
@@ -12093,11 +12109,11 @@ msgstr ""
msgid "You will no longer receive notifications for {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:239
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:243
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:229
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:234
msgid "You will now receive notifications for this thread"
msgstr ""
@@ -12152,7 +12168,7 @@ msgstr ""
msgid "You're in line"
msgstr ""
-#: src/screens/Deactivated.tsx:83
+#: src/screens/Deactivated.tsx:81
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -12202,7 +12218,7 @@ msgstr ""
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1162
+#: src/screens/VideoFeed/index.tsx:1154
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
diff --git a/src/locale/locales/km/messages.po b/src/locale/locales/km/messages.po
index 7d572bb48a..6632ac896f 100644
--- a/src/locale/locales/km/messages.po
+++ b/src/locale/locales/km/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: km\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Khmer\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -851,8 +851,8 @@ msgstr "បន្ថែមគណនី"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "បានចូលជា @{0} រួចហើយ"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ជំនួស"
@@ -1170,7 +1170,7 @@ msgstr "អត្ថបទជំនួស"
msgid "Alt Text"
msgstr "អត្ថបទជំនួស"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "អត្ថបទជំនួសពិពណ៌នារូបភាពសម្រាប់អ្នកប្រើប្រាស់ពិការភ្នែក និងភ្នែកទាប និងជួយផ្តល់បរិបទដល់មនុស្សគ្រប់គ្នា"
@@ -1974,7 +1974,7 @@ msgstr "ចំណងជើង និងអត្ថបទជំនួស"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "ផ្លាស់ប្តូរ"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "កែសម្រួលមតិព័ត៌មាន"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "កែរូបភាព"
@@ -4986,8 +4986,8 @@ msgstr "លាក់ការបង្ហោះនេះ?"
msgid "Hide this reply?"
msgstr "លាក់ការឆ្លើយតបនេះ?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "លុបរូបភាព"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "ជ្រើសរើសរូបអារម្មណ៍ {emojiName} ជារូបតំណាងរបស់អ្នក"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "បកប្រែ"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr ""
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "ព្យាយាមម្តងទៀត"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po
index 1a99239eae..5c8f3e4e90 100644
--- a/src/locale/locales/ko/messages.po
+++ b/src/locale/locales/ko/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ko\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -851,8 +851,8 @@ msgstr "계정 추가"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "이미 @{0}(으)로 로그인했습니다"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "대체 텍스트"
msgid "Alt Text"
msgstr "대체 텍스트"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "대체 텍스트는 시각장애인과 저시력 사용자를 위해 이미지를 설명하며 모든 사용자의 이해를 돕습니다."
@@ -1974,7 +1974,7 @@ msgstr "자막 및 대체 텍스트"
msgid "Cashtag {tag}"
msgstr "캐시태그 {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "변경"
@@ -2020,9 +2020,9 @@ msgstr "신고 카테고리 변경"
msgid "Change report reason"
msgstr "신고 이유 변경"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
-msgstr ""
+msgstr "출발어 변경"
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
msgid "Change your password"
@@ -3123,7 +3123,7 @@ msgstr "개발자 옵션"
#: src/lib/translation/index.tsx:265
msgid "Device failed to translate :("
-msgstr ""
+msgstr "기기에서 번역하지 못했습니다."
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
@@ -3446,7 +3446,7 @@ msgstr "피드 편집하기"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "이미지 편집하기"
@@ -4986,8 +4986,8 @@ msgstr "이 게시물을 숨기시겠습니까?"
msgid "Hide this reply?"
msgstr "이 답글을 숨기시겠습니까?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -7713,7 +7713,7 @@ msgstr "프로필"
#: src/screens/Profile/Header/Shell.tsx:174
msgid "Profile banner placeholder"
-msgstr ""
+msgstr "프로필 배너 자리 표시자"
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
@@ -8030,7 +8030,7 @@ msgstr "저장된 게시물에서 제거"
msgid "Remove from your feeds?"
msgstr "내 피드에서 제거하시겠습니까?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "이미지 제거"
@@ -8910,7 +8910,7 @@ msgstr "국가 코드 선택"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "{emojiName} 이모티콘을 아바타로 선택하기"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "출발어 선택"
@@ -10521,18 +10521,18 @@ msgstr "주제"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "번역"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "번역됨"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,18 +10565,18 @@ msgstr "신뢰는 관계, 커뮤니티, 공유된 맥락에서 비롯되므로
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
-msgstr "다른 검색어를 사용해 보거나 <0>검색 필터 사용 방법(영어)0>에 대해 읽어보세요."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
+msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
msgctxt "action"
msgid "Try again"
msgstr "다시 시도"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
-msgstr ""
+msgstr "Google 번역 사용"
#: src/lib/interests.ts:74
msgid "TV"
@@ -11310,7 +11310,7 @@ msgstr "프로필 보기"
#: src/screens/Profile/Header/Shell.tsx:173
msgid "View profile banner"
-msgstr ""
+msgstr "프로필 배너 보기"
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
diff --git a/src/locale/locales/lt/messages.po b/src/locale/locales/lt/messages.po
index 3f911344de..7bd3216e26 100644
--- a/src/locale/locales/lt/messages.po
+++ b/src/locale/locales/lt/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: lt\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Lithuanian\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n"
@@ -558,28 +558,28 @@ msgstr ""
#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.likeCount)
#. placeholder {1}: post.likeCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:489
msgid "<0>{0}0> {1, plural, one {like} other {likes}}"
msgstr ""
#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.quoteCount)
#. placeholder {1}: post.quoteCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471
msgid "<0>{0}0> {1, plural, one {quote} other {quotes}}"
msgstr ""
#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.repostCount)
#. placeholder {1}: post.repostCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "<0>{0}0> {1, plural, one {repost} other {reposts}}"
msgstr ""
#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0)
#. placeholder {0}: formatPostStatCount(post.bookmarkCount)
#. placeholder {1}: post.bookmarkCount
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:516
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
msgid "<0>{0}0> {1, plural, one {save} other {saves}}"
msgstr ""
@@ -733,7 +733,7 @@ msgstr ""
msgid "Account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:425
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422
#: src/screens/Messages/components/RequestButtons.tsx:97
#: src/view/com/profile/ProfileMenu.tsx:182
msgctxt "toast"
@@ -753,7 +753,7 @@ msgstr ""
msgid "Account is deactivated"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:447
#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account muted"
@@ -792,7 +792,7 @@ msgctxt "toast"
msgid "Account unfollowed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:439
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unmuted"
@@ -844,17 +844,17 @@ msgid "Add a user to this list"
msgstr ""
#: src/components/dialogs/SwitchAccount.tsx:56
-#: src/screens/Deactivated.tsx:186
+#: src/screens/Deactivated.tsx:184
msgid "Add account"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:171
-#: src/view/com/composer/photos/Gallery.tsx:218
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:97
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:105
+#: src/view/com/composer/photos/Gallery.tsx:181
+#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
msgstr ""
@@ -1152,13 +1152,13 @@ msgstr ""
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:189
+#: src/view/com/composer/photos/Gallery.tsx:199
msgid "ALT"
msgstr ""
#: src/screens/Settings/AccessibilitySettings.tsx:55
#: src/view/com/composer/GifAltText.tsx:157
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:130
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:132
#: src/view/com/composer/videos/SubtitleDialog.tsx:41
#: src/view/com/composer/videos/SubtitleDialog.tsx:59
#: src/view/com/composer/videos/SubtitleDialog.tsx:110
@@ -1170,13 +1170,13 @@ msgstr ""
msgid "Alt Text"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:262
+#: src/view/com/composer/photos/Gallery.tsx:273
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr ""
#. placeholder {0}: i18n.number(MAX_ALT_TEXT)
#: src/view/com/composer/GifAltText.tsx:182
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:151
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
msgstr ""
@@ -1442,12 +1442,12 @@ msgid "Apply Pull Request"
msgstr ""
#. placeholder {0}: niceDate(i18n, createdAt, 'medium')
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:728
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623
msgid "Archived from {0}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:737
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:594
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
msgid "Archived post"
msgstr ""
@@ -1505,8 +1505,8 @@ msgstr ""
msgid "Artistic or non-erotic nudity."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:576
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
msgid "Assign topic for algo"
msgstr ""
@@ -1541,7 +1541,7 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:178
#: src/screens/Messages/components/ChatDisabled.tsx:146
#: src/screens/Messages/components/ChatDisabled.tsx:147
-#: src/screens/Profile/Header/Shell.tsx:179
+#: src/screens/Profile/Header/Shell.tsx:184
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
#: src/screens/Signup/BackNextButtons.tsx:42
@@ -1618,7 +1618,7 @@ msgstr ""
msgid "Birthday"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:826
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:814
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
#: src/view/com/profile/ProfileMenu.tsx:553
msgid "Block"
@@ -1626,8 +1626,8 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:273
#: src/components/dms/ConvoMenu.tsx:276
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:711
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:713
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:716
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:718
#: src/screens/Messages/components/RequestButtons.tsx:150
#: src/screens/Messages/components/RequestButtons.tsx:152
#: src/view/com/profile/ProfileMenu.tsx:459
@@ -1635,7 +1635,7 @@ msgstr ""
msgid "Block account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:821
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
#: src/view/com/profile/ProfileMenu.tsx:536
msgid "Block Account?"
msgstr ""
@@ -1687,7 +1687,7 @@ msgstr ""
msgid "Blocked Accounts"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:823
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812
#: src/view/com/profile/ProfileMenu.tsx:548
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
msgid "Bluesky"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:753
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:648
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr ""
@@ -1921,7 +1921,7 @@ msgstr ""
#: src/features/liveNow/components/GoLiveDialog.tsx:248
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
-#: src/screens/Deactivated.tsx:152
+#: src/screens/Deactivated.tsx:150
#: src/screens/Profile/Header/EditProfileDialog.tsx:219
#: src/screens/Profile/Header/EditProfileDialog.tsx:227
#: src/screens/Search/Shell.tsx:396
@@ -1946,7 +1946,7 @@ msgstr ""
msgid "Cancel quote post"
msgstr ""
-#: src/screens/Deactivated.tsx:146
+#: src/screens/Deactivated.tsx:144
msgid "Cancel reactivation and sign out"
msgstr ""
@@ -1954,9 +1954,9 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:108
-#: src/components/PostControls/index.tsx:139
-#: src/components/PostControls/index.tsx:167
+#: src/components/PostControls/index.tsx:109
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:164
#: src/state/shell/composer/index.tsx:108
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -1974,7 +1974,7 @@ msgstr ""
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:150
+#: src/components/Post/Translated/index.tsx:395
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr ""
@@ -2020,8 +2020,8 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:146
-msgid "Change source language"
+#: src/components/Post/Translated/index.tsx:385
+msgid "Change the source language"
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
@@ -2689,8 +2689,8 @@ msgstr ""
msgid "Copy post at:// URI"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:518
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:531
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
msgid "Copy post text"
msgstr ""
@@ -2970,7 +2970,7 @@ msgid "Default icons"
msgstr ""
#: src/components/dms/MessageContextMenu.tsx:204
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:772
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3043,8 +3043,8 @@ msgstr ""
msgid "Delete my account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:751
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758
#: src/view/com/composer/Composer.tsx:1430
msgid "Delete post"
msgstr ""
@@ -3062,7 +3062,7 @@ msgstr ""
msgid "Delete this list?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:769
msgid "Delete this post?"
msgstr ""
@@ -3093,16 +3093,16 @@ msgid "Description"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:153
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:126
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128
msgid "Descriptive alt text"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:655
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:670
msgid "Detach quote"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:797
msgid "Detach quote post?"
msgstr ""
@@ -3121,6 +3121,10 @@ msgstr ""
msgid "Developer options"
msgstr ""
+#: src/lib/translation/index.tsx:265
+msgid "Device failed to translate :("
+msgstr ""
+
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
msgstr ""
@@ -3340,7 +3344,7 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1119
+#: src/screens/VideoFeed/index.tsx:1111
msgid "Double tap to like"
msgstr ""
@@ -3442,12 +3446,12 @@ msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:196
+#: src/view/com/composer/photos/Gallery.tsx:206
msgid "Edit image"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750
msgid "Edit interaction settings"
msgstr ""
@@ -3803,7 +3807,7 @@ msgstr ""
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:991
+#: src/screens/VideoFeed/index.tsx:987
msgid "Expands or collapses post text"
msgstr ""
@@ -3846,7 +3850,7 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:808
+#: src/Navigation.tsx:809
#: src/screens/Search/Shell.tsx:354
#: src/view/shell/desktop/LeftNav.tsx:689
#: src/view/shell/Drawer.tsx:417
@@ -3932,7 +3936,7 @@ msgstr ""
msgid "Failed to delete message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:214
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219
msgid "Failed to delete post, please try again"
msgstr ""
@@ -4090,7 +4094,7 @@ msgstr ""
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:247
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:249
msgid "Failed to toggle thread mute, please try again"
msgstr ""
@@ -4181,8 +4185,8 @@ msgstr ""
msgid "Feedback"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:301
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:325
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:326
msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
@@ -4343,7 +4347,7 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:153
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:388
-#: src/screens/VideoFeed/index.tsx:875
+#: src/screens/VideoFeed/index.tsx:870
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
@@ -4355,7 +4359,7 @@ msgstr ""
msgid "Follow {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:852
+#: src/screens/VideoFeed/index.tsx:849
msgid "Follow {handle}"
msgstr ""
@@ -4450,7 +4454,7 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:156
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:384
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/VideoFeed/index.tsx:868
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4471,7 +4475,7 @@ msgstr ""
msgid "Following {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:851
+#: src/screens/VideoFeed/index.tsx:848
msgid "Following {handle}"
msgstr ""
@@ -4680,9 +4684,9 @@ msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/ProfileList/components/ErrorScreen.tsx:41
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1180
-#: src/screens/VideoFeed/index.tsx:1184
-#: src/view/com/auth/LoggedOut.tsx:92
+#: src/screens/VideoFeed/index.tsx:1172
+#: src/screens/VideoFeed/index.tsx:1176
+#: src/view/com/auth/LoggedOut.tsx:93
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
#: src/view/screens/NotFound.tsx:58
@@ -4909,7 +4913,7 @@ msgstr ""
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:648
+#: src/screens/VideoFeed/index.tsx:647
msgid "Hidden by your moderation settings."
msgstr ""
@@ -4922,7 +4926,7 @@ msgstr ""
#: src/components/moderation/ContentHider.tsx:220
#: src/components/moderation/LabelPreference.tsx:141
#: src/components/moderation/PostHider.tsx:140
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:780
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
#: src/lib/moderation/useLabelBehaviorDescription.ts:28
@@ -4949,18 +4953,18 @@ msgstr ""
msgid "Hide lists"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:612
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
msgid "Hide post for me"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:639
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:644
msgid "Hide reply for everyone"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:611
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:617
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
msgid "Hide reply for me"
msgstr ""
@@ -4973,17 +4977,19 @@ msgstr ""
msgid "Hide this event"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
msgid "Hide this post?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:804
msgid "Hide this reply?"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
+#: src/components/Post/Translated/index.tsx:192
+#: src/components/Post/Translated/index.tsx:318
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
msgstr ""
@@ -5050,8 +5056,8 @@ msgstr ""
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/Navigation.tsx:803
-#: src/Navigation.tsx:823
+#: src/Navigation.tsx:804
+#: src/Navigation.tsx:824
#: src/view/shell/bottom-bar/BottomBar.tsx:177
#: src/view/shell/desktop/LeftNav.tsx:671
#: src/view/shell/Drawer.tsx:443
@@ -5152,7 +5158,7 @@ msgstr ""
msgid "If you need to update your email, <0>click here0>."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
@@ -5322,7 +5328,7 @@ msgstr ""
msgid "Invalid handle. Please try a different one."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:397
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:396
msgctxt "toast"
msgid "Invalid interaction settings."
msgstr ""
@@ -5637,7 +5643,7 @@ msgstr ""
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:288
+#: src/components/PostControls/index.tsx:278
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5704,7 +5710,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:499
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr ""
@@ -6051,7 +6057,7 @@ msgstr ""
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:818
+#: src/Navigation.tsx:819
msgid "Messages"
msgstr ""
@@ -6184,8 +6190,8 @@ msgstr ""
msgid "Mute {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705
#: src/view/com/profile/ProfileMenu.tsx:438
#: src/view/com/profile/ProfileMenu.tsx:445
msgid "Mute account"
@@ -6237,13 +6243,13 @@ msgstr ""
msgid "Mute this word until you unmute it"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
msgid "Mute thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:603
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:605
msgid "Mute words & tags"
msgstr ""
@@ -6726,7 +6732,7 @@ msgid "Notification Sounds"
msgstr ""
#: src/Navigation.tsx:575
-#: src/Navigation.tsx:813
+#: src/Navigation.tsx:814
#: src/screens/Notifications/ActivityList.tsx:31
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
#: src/screens/Settings/NotificationSettings/index.tsx:93
@@ -6790,7 +6796,7 @@ msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:759
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:654
msgid "Okay"
msgstr ""
@@ -6928,7 +6934,7 @@ msgstr ""
msgid "Open pack"
msgstr ""
-#: src/components/PostControls/PostMenu/index.tsx:66
+#: src/components/PostControls/PostMenu/index.tsx:67
msgid "Open post options menu"
msgstr ""
@@ -7060,11 +7066,11 @@ msgstr ""
msgid "Options:"
msgstr ""
-#: src/screens/Deactivated.tsx:194
+#: src/screens/Deactivated.tsx:192
msgid "Or, continue with another account."
msgstr ""
-#: src/screens/Deactivated.tsx:181
+#: src/screens/Deactivated.tsx:179
msgid "Or, sign in to one of your other accounts."
msgstr ""
@@ -7260,8 +7266,8 @@ msgstr ""
msgid "Pin to Home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:486
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
msgid "Pin to your profile"
msgstr ""
@@ -7524,7 +7530,7 @@ msgstr ""
msgid "Post by @{0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:194
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199
msgctxt "toast"
msgid "Post deleted"
msgstr ""
@@ -7533,10 +7539,10 @@ msgstr ""
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:143
-#: src/screens/PostThread/components/ThreadItemPost.tsx:112
-#: src/screens/PostThread/components/ThreadItemTreePost.tsx:108
-#: src/screens/VideoFeed/index.tsx:552
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:130
+#: src/screens/PostThread/components/ThreadItemPost.tsx:113
+#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109
+#: src/screens/VideoFeed/index.tsx:551
msgid "Post has been deleted"
msgstr ""
@@ -7705,6 +7711,10 @@ msgstr ""
msgid "Profile"
msgstr ""
+#: src/screens/Profile/Header/Shell.tsx:174
+msgid "Profile banner placeholder"
+msgstr ""
+
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
msgstr ""
@@ -7786,11 +7796,11 @@ msgstr ""
msgid "Quote post"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:346
msgid "Quote post was re-attached"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
msgid "Quote post was successfully detached"
msgstr ""
@@ -7808,7 +7818,7 @@ msgstr ""
msgid "Quotes"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:481
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467
msgid "Quotes of this post"
msgstr ""
@@ -7820,8 +7830,8 @@ msgstr ""
msgid "Rate limit exceeded. Please try again later."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
msgid "Re-attach quote"
msgstr ""
@@ -7829,7 +7839,7 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/screens/Deactivated.tsx:135
+#: src/screens/Deactivated.tsx:133
msgid "Reactivate your account"
msgstr ""
@@ -7848,11 +7858,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:992
+#: src/screens/VideoFeed/index.tsx:988
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:992
+#: src/screens/VideoFeed/index.tsx:988
msgid "Read more"
msgstr ""
@@ -8020,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:205
+#: src/view/com/composer/photos/Gallery.tsx:215
msgid "Remove image"
msgstr ""
@@ -8172,7 +8182,7 @@ msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:242
+#: src/components/PostControls/index.tsx:236
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -8198,12 +8208,12 @@ msgstr ""
msgid "Reply sorting"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384
msgctxt "toast"
msgid "Reply visibility updated"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:382
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
msgid "Reply was successfully hidden"
msgstr ""
@@ -8246,8 +8256,8 @@ msgstr ""
msgid "Report message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:720
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:725
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
msgid "Report post"
msgstr ""
@@ -8339,7 +8349,7 @@ msgstr ""
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:447
msgid "Reposts of this post"
msgstr ""
@@ -8482,7 +8492,7 @@ msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:579
-#: src/screens/VideoFeed/index.tsx:1181
+#: src/screens/VideoFeed/index.tsx:1173
#: src/view/screens/NotFound.tsx:61
msgid "Returns to previous page"
msgstr ""
@@ -8508,8 +8518,8 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:205
#: src/view/com/composer/photos/EditImageDialog.web.tsx:63
#: src/view/com/composer/photos/EditImageDialog.web.tsx:76
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:165
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:175
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:167
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:177
msgid "Save"
msgstr ""
@@ -8900,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr ""
-#: src/components/Post/Translated/index.tsx:156
+#: src/components/Post/Translated/index.tsx:402
msgid "Select the source language"
msgstr ""
@@ -9199,8 +9209,8 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
#: src/screens/List/ListHiddenScreen.tsx:194
-#: src/screens/VideoFeed/index.tsx:651
-#: src/screens/VideoFeed/index.tsx:657
+#: src/screens/VideoFeed/index.tsx:650
+#: src/screens/VideoFeed/index.tsx:656
msgid "Show anyway"
msgstr ""
@@ -9217,8 +9227,8 @@ msgstr ""
msgid "Show customization options"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:549
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:551
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564
msgid "Show less like this"
msgstr ""
@@ -9239,8 +9249,8 @@ msgstr ""
msgid "Show More"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:541
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556
msgid "Show more like this"
msgstr ""
@@ -9266,8 +9276,8 @@ msgstr ""
msgid "Show replies as"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:628
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643
msgid "Show reply for everyone"
msgstr ""
@@ -9294,7 +9304,7 @@ msgstr ""
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:700
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:595
msgid "Shows information about when this post was created"
msgstr ""
@@ -9340,8 +9350,8 @@ msgstr ""
msgid "Sign in as..."
msgstr ""
-#: src/screens/Deactivated.tsx:197
-#: src/screens/Deactivated.tsx:203
+#: src/screens/Deactivated.tsx:195
+#: src/screens/Deactivated.tsx:201
msgid "Sign in or create an account"
msgstr ""
@@ -9357,8 +9367,8 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:529
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:542
msgid "Sign in to view post"
msgstr ""
@@ -9478,7 +9488,7 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
#: src/components/moderation/ReportDialog/index.tsx:273
-#: src/screens/Deactivated.tsx:88
+#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
msgid "Something went wrong, please try again"
@@ -9509,8 +9519,8 @@ msgstr ""
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
-#: src/App.native.tsx:142
-#: src/App.web.tsx:118
+#: src/App.native.tsx:143
+#: src/App.web.tsx:119
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -9896,7 +9906,7 @@ msgstr ""
msgid "That's all, folks!"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1153
+#: src/screens/VideoFeed/index.tsx:1145
msgid "That's everything!"
msgstr ""
@@ -10082,9 +10092,9 @@ msgid "There was an issue updating your feeds, please check your internet connec
msgstr ""
#. placeholder {0}: e.toString()
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:430
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:444
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:441
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:452
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:128
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90
@@ -10309,7 +10319,7 @@ msgstr ""
#. placeholder {0}: niceDate(i18n, createdAt)
#. placeholder {1}: niceDate(i18n, indexedAt)
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:740
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
@@ -10337,7 +10347,7 @@ msgstr ""
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:813
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:805
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr ""
@@ -10414,7 +10424,7 @@ msgstr ""
msgid "This will remove @{0} from the quick access list."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr ""
@@ -10511,23 +10521,20 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:512
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:640
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/components/Post/Translated/index.tsx:139
+#: src/components/Post/Translated/index.tsx:146
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr ""
-#: src/components/Post/Translated/index.tsx:78
+#: src/components/Post/Translated/index.tsx:292
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:76
-msgid "Translated from {langName}"
-msgstr ""
-
-#: src/components/Post/Translated/index.tsx:50
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:626
+#: src/components/Post/Translated/index.tsx:89
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
msgstr ""
@@ -10566,6 +10573,11 @@ msgctxt "action"
msgid "Try again"
msgstr ""
+#: src/components/Post/Translated/index.tsx:205
+#: src/components/Post/Translated/index.tsx:213
+msgid "Try Google Translate"
+msgstr ""
+
#: src/lib/interests.ts:74
msgid "TV"
msgstr ""
@@ -10701,7 +10713,7 @@ msgstr ""
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:856
+#: src/screens/VideoFeed/index.tsx:852
msgid "Unfollows the user"
msgstr ""
@@ -10735,7 +10747,7 @@ msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:278
+#: src/components/PostControls/index.tsx:270
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -10756,8 +10768,8 @@ msgstr ""
msgid "Unmute {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:693
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:698
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:704
#: src/view/com/profile/ProfileMenu.tsx:437
#: src/view/com/profile/ProfileMenu.tsx:443
msgid "Unmute account"
@@ -10772,8 +10784,8 @@ msgstr ""
msgid "Unmute list"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
msgid "Unmute thread"
msgstr ""
@@ -10798,8 +10810,8 @@ msgstr ""
msgid "Unpin from home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:492
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
msgid "Unpin from profile"
msgstr ""
@@ -10872,12 +10884,12 @@ msgstr ""
msgid "Update your email"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:402
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
@@ -11176,7 +11188,7 @@ msgid "Video from {0}: {text}"
msgstr ""
#. placeholder {0}: sanitizeHandle( post.author.handle, '@', )
-#: src/screens/VideoFeed/index.tsx:1114
+#: src/screens/VideoFeed/index.tsx:1107
msgid "Video from {0}. Tap to play or pause the video"
msgstr ""
@@ -11185,11 +11197,11 @@ msgstr ""
msgid "Video Games"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1111
+#: src/screens/VideoFeed/index.tsx:1106
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1111
+#: src/screens/VideoFeed/index.tsx:1106
msgid "Video is playing"
msgstr ""
@@ -11224,7 +11236,7 @@ msgid "View"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Profile/Header/Shell.tsx:262
+#: src/screens/Profile/Header/Shell.tsx:267
msgid "View {0}'s avatar"
msgstr ""
@@ -11233,7 +11245,7 @@ msgstr ""
#. placeholder {0}: profile.handle
#: src/screens/Profile/components/ProfileFeedHeader.tsx:459
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:815
+#: src/screens/VideoFeed/index.tsx:813
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr ""
@@ -11259,8 +11271,8 @@ msgstr ""
msgid "View debug entry"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:679
-#: src/screens/VideoFeed/index.tsx:697
+#: src/screens/VideoFeed/index.tsx:678
+#: src/screens/VideoFeed/index.tsx:696
msgid "View details"
msgstr ""
@@ -11296,6 +11308,10 @@ msgstr ""
msgid "View profile"
msgstr ""
+#: src/screens/Profile/Header/Shell.tsx:173
+msgid "View profile banner"
+msgstr ""
+
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
msgstr ""
@@ -11585,7 +11601,7 @@ msgstr ""
msgid "We've confirmed your age assurance status. You can now close this dialog."
msgstr ""
-#: src/screens/Deactivated.tsx:119
+#: src/screens/Deactivated.tsx:117
msgid "Welcome back!"
msgstr ""
@@ -11733,15 +11749,15 @@ msgstr ""
msgid "Yes, delete this starter pack"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:806
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800
msgid "Yes, detach"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:816
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:807
msgid "Yes, hide"
msgstr ""
-#: src/screens/Deactivated.tsx:141
+#: src/screens/Deactivated.tsx:139
msgid "Yes, reactivate my account"
msgstr ""
@@ -11861,7 +11877,7 @@ msgstr ""
msgid "You can only select one video at a time."
msgstr ""
-#: src/screens/Deactivated.tsx:127
+#: src/screens/Deactivated.tsx:125
msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
msgstr ""
@@ -12059,7 +12075,7 @@ msgid "You need to verify your email address before you can enable email 2FA."
msgstr ""
#. placeholder {0}: currentAccount?.handle
-#: src/screens/Deactivated.tsx:122
+#: src/screens/Deactivated.tsx:120
msgid "You previously deactivated @{0}."
msgstr ""
@@ -12093,11 +12109,11 @@ msgstr ""
msgid "You will no longer receive notifications for {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:239
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:243
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:229
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:234
msgid "You will now receive notifications for this thread"
msgstr ""
@@ -12152,7 +12168,7 @@ msgstr ""
msgid "You're in line"
msgstr ""
-#: src/screens/Deactivated.tsx:83
+#: src/screens/Deactivated.tsx:81
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -12202,7 +12218,7 @@ msgstr ""
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1162
+#: src/screens/VideoFeed/index.tsx:1154
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
diff --git a/src/locale/locales/ne/messages.po b/src/locale/locales/ne/messages.po
index 8faeb95d71..7965521071 100644
--- a/src/locale/locales/ne/messages.po
+++ b/src/locale/locales/ne/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ne\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Nepali\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "खाता थप्नुहोस्"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "पहिले नै @{0} को रूपमा साइन इन
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "वैकल्पिक"
@@ -1170,7 +1170,7 @@ msgstr "वैकल्पिक पाठ"
msgid "Alt Text"
msgstr "वैकल्पिक पाठ"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "वैकल्पिक पाठले दृष्टिहीन र कमजोर दृष्टि भएका प्रयोगकर्ताहरूका लागि चित्रहरू वर्णन गर्छ, र सबैलाई सन्दर्भ दिन मद्दत गर्दछ।"
@@ -1974,7 +1974,7 @@ msgstr "उपशीर्षक र वैकल्पिक पाठ"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "परिवर्तन गर्नुहोस्"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "फिड सम्पादन गर्नुहोस्"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "चित्र सम्पादन गर्नुहोस्"
@@ -4986,8 +4986,8 @@ msgstr "यो पोस्ट लुकाउनुहोस्?"
msgid "Hide this reply?"
msgstr "यो उत्तर लुकाउनुहोस्?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "तस्बिर हटाउनुहोस्"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "{emojiName} इमोजीलाई आफ्नो अवतारको रूपमा चयन गर्नुहोस्"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "अनुवाद गर्नुहोस्"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr ""
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "पुनः प्रयास गर्नुहोस्"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/nl/messages.po b/src/locale/locales/nl/messages.po
index 1a6f5e2a6c..fa727ca221 100644
--- a/src/locale/locales/nl/messages.po
+++ b/src/locale/locales/nl/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: nl\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Account toevoegen"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Al aangemeld als @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Alt-tekst"
msgid "Alt Text"
msgstr "Alt-tekst"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alt-tekst beschrijft afbeeldingen voor blinde en slechtziende gebruikers en biedt iedereen context."
@@ -1974,7 +1974,7 @@ msgstr "Ondertiteling en alt-tekst"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Wijzigen"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr "Reden van melding wijzigen"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Feeds bewerken"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Afbeelding bewerken"
@@ -4986,8 +4986,8 @@ msgstr "Dit bericht verbergen?"
msgid "Hide this reply?"
msgstr "Deze reactie verbergen?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Afbeelding verwijderen"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Selecteer de {emojiName}-emoji als je avatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Vertalen"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr ""
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Opnieuw proberen"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/pl/messages.po b/src/locale/locales/pl/messages.po
index b9adda006e..c1657e0790 100644
--- a/src/locale/locales/pl/messages.po
+++ b/src/locale/locales/pl/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: pl\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
@@ -851,8 +851,8 @@ msgstr "Dodaj konto"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Już zalogowano jako @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Tekst alternatywny"
msgid "Alt Text"
msgstr "Tekst alternatywny"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Tekst alternatywny opisuje zdjęcia dla użytkowników niewidomych i niedowidzących oraz pomaga określić kontekst."
@@ -1974,7 +1974,7 @@ msgstr "Napisy i tekst alternatywny"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Zmień"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Edytuj kanały"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Edytuj obrazek"
@@ -4986,8 +4986,8 @@ msgstr "Ukryć ten wpis?"
msgid "Hide this reply?"
msgstr "Ukryć ten komentarz?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Usuń zdjęcie"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Wybierz emoji {emojiName} jako zdjęcie profilowe"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "Temat"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Przetłumacz"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr ""
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Spróbuj ponownie"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po
index 328980fb1f..544d2f0695 100644
--- a/src/locale/locales/pt-BR/messages.po
+++ b/src/locale/locales/pt-BR/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: pt\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Adicionar conta"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Já registrado como @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Texto alternativo"
msgid "Alt Text"
msgstr "Texto Alternativo"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "O texto alternativo descreve imagens para usuários cegos e com baixa visão, além de dar contexto a todos."
@@ -1974,7 +1974,7 @@ msgstr "Legendas e texto alternativo"
msgid "Cashtag {tag}"
msgstr "Cashtag {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Alterar"
@@ -2020,7 +2020,7 @@ msgstr "Alterar categoria de relatório"
msgid "Change report reason"
msgstr "Alterar motivo da denúncia"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Editar feeds"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Editar imagem"
@@ -4986,8 +4986,8 @@ msgstr "Ocultar esta postagem?"
msgid "Hide this reply?"
msgstr "Ocultar esta resposta?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr "Remover das postagens salvas"
msgid "Remove from your feeds?"
msgstr "Remover dos seus feeds?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Remover imagem"
@@ -8910,7 +8910,7 @@ msgstr "Selecionar código de telefone"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Selecione o emoji {emojiName} como avatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "Assunto"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Traduzir"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "A confiança emerge de relacionamentos, comunidades e contexto compartil
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Tentar novamente"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/pt-PT/messages.po b/src/locale/locales/pt-PT/messages.po
index 50a62b0208..ed2c800a02 100644
--- a/src/locale/locales/pt-PT/messages.po
+++ b/src/locale/locales/pt-PT/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: pt\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Adicionar conta"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Já iniciou sessão como @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Texto alternativo"
msgid "Alt Text"
msgstr "Texto Alternativo"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "O texto alternativo descreve conteúdo multimédia para utilizadores de visão reduzida ou cegos, e ajuda a dar contexto para todos."
@@ -1974,7 +1974,7 @@ msgstr "Legendas e texto alternativo"
msgid "Cashtag {tag}"
msgstr "Cashtag {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Alterar"
@@ -2020,7 +2020,7 @@ msgstr "Alterar categoria da denúncia"
msgid "Change report reason"
msgstr "Alterar motivo da denúncia"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Editar feeds"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Editar imagem"
@@ -4986,8 +4986,8 @@ msgstr "Ocultar esta publicação?"
msgid "Hide this reply?"
msgstr "Ocultar essa resposta?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr "Remover das publicações salvas"
msgid "Remove from your feeds?"
msgstr "Remover dos seus feeds?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Remover imagem"
@@ -8910,7 +8910,7 @@ msgstr "Selecionar código de telefone"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Selecione o emoji {emojiName} como foto de perfil"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "Selecione o idioma da origem"
@@ -10521,18 +10521,18 @@ msgstr "Tópico"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Traduzir"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "Tradução"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,16 +10565,16 @@ msgstr "A confiança surge de relações, comunidades e contexto compartilhado,
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
-msgstr "Tente um termo de pesquisa diferente, ou <0>leia sobre como usar filtros de pesquisa.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
+msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
msgctxt "action"
msgid "Try again"
msgstr "Tente novamente"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/ro/messages.po b/src/locale/locales/ro/messages.po
index 4184b64a3f..269996a9b9 100644
--- a/src/locale/locales/ro/messages.po
+++ b/src/locale/locales/ro/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ro\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Romanian\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
@@ -851,8 +851,8 @@ msgstr "Adăugați un cont"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Deja conectat ca @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Text alternativ"
msgid "Alt Text"
msgstr "Text alternativ"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Textul alternativ descrie imaginile pentru utilizatorii cu deficiențe de vedere și oferă context pentru toată lumea."
@@ -1974,7 +1974,7 @@ msgstr "Subtitrări și text alternativ"
msgid "Cashtag {tag}"
msgstr "Cashtag {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Modificare"
@@ -2020,9 +2020,9 @@ msgstr "Modificați categoria raportului"
msgid "Change report reason"
msgstr "Modificați motivul raportului"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
-msgstr ""
+msgstr "Schimbați limba sursă"
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
msgid "Change your password"
@@ -3123,7 +3123,7 @@ msgstr "Opțiuni dezvoltator"
#: src/lib/translation/index.tsx:265
msgid "Device failed to translate :("
-msgstr ""
+msgstr "Dispozitivul nu a reușit să traducă :("
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
@@ -3446,7 +3446,7 @@ msgstr "Editare fluxuri"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Editare imagine"
@@ -4986,8 +4986,8 @@ msgstr "Ascundeți această postare?"
msgid "Hide this reply?"
msgstr "Ascundeți acest răspuns?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -7713,7 +7713,7 @@ msgstr "Profil"
#: src/screens/Profile/Header/Shell.tsx:174
msgid "Profile banner placeholder"
-msgstr ""
+msgstr "Substituent banner profil"
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
@@ -8030,7 +8030,7 @@ msgstr "Eliminare din postări salvate"
msgid "Remove from your feeds?"
msgstr "Eliminați din fluxurile dvs.?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Eliminare imagine"
@@ -8910,7 +8910,7 @@ msgstr "Selectați prefixul telefonic"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Selectați emoji-ul {emojiName} ca avatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "Selectați limba sursă"
@@ -10521,18 +10521,18 @@ msgstr "Subiect"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Traducere"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "Tradus"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,18 +10565,18 @@ msgstr "Încrederea rezultă din relații, comunități și context comun, așa
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
-msgstr "Încercați un alt termen de căutare, sau <0>citiți despre cum să utilizați filtrele de căutare0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
+msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
msgctxt "action"
msgid "Try again"
msgstr "Încercați din nou"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
-msgstr ""
+msgstr "Încercați Google Translate"
#: src/lib/interests.ts:74
msgid "TV"
@@ -11310,7 +11310,7 @@ msgstr "Vizualizați profilul"
#: src/screens/Profile/Header/Shell.tsx:173
msgid "View profile banner"
-msgstr ""
+msgstr "Vizualizați bannerul profilului"
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
diff --git a/src/locale/locales/ru/messages.po b/src/locale/locales/ru/messages.po
index 07080d5ec3..6bf528460c 100644
--- a/src/locale/locales/ru/messages.po
+++ b/src/locale/locales/ru/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ru\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:46\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
@@ -851,8 +851,8 @@ msgstr "Добавить учётную запись"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Уже вошли как @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "АЛЬТ"
@@ -1170,7 +1170,7 @@ msgstr "Альтернативный текст"
msgid "Alt Text"
msgstr "Альтернативный текст"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Альтернативный текст описывает изображение для незрячих и слабовидящих пользователей и предоставляет дополнительный контекст для всех."
@@ -1974,7 +1974,7 @@ msgstr "Субтитры и альтернативный текст"
msgid "Cashtag {tag}"
msgstr "Хештег {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Изменить"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr "Причина изменения жалобы"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Редактировать ленты"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Редактировать изображение"
@@ -4986,8 +4986,8 @@ msgstr "Скрыть этот пост?"
msgid "Hide this reply?"
msgstr "Скрыть этот ответ?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr "Удалить из сохранённых постов"
msgid "Remove from your feeds?"
msgstr "Удалить из ваших лент?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Удалить изображение"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Выбрать эмодзи {emojiName} в качестве своего аватара"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "Тема"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Перевести"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "Доверие рождается в отношениях, сообще
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Попробовать ещё раз"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/sv/messages.po b/src/locale/locales/sv/messages.po
index cb64413a42..5e9807c4ab 100644
--- a/src/locale/locales/sv/messages.po
+++ b/src/locale/locales/sv/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: sv\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Swedish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Lägg till konto"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Redan inloggad som @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Alternativtext"
msgid "Alt Text"
msgstr "Alternativtext"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alternativtexter beskriver bilder för blinda och användare med nedsatt syn. De hjälper också gemene man med kontext och sammanhang."
@@ -1974,7 +1974,7 @@ msgstr "Undertexter och alternativtexter"
msgid "Cashtag {tag}"
msgstr "Cashtagg {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Ändra"
@@ -2020,9 +2020,9 @@ msgstr "Ändra kategori för anmälan"
msgid "Change report reason"
msgstr "Ändra skäl till anmälan"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
-msgstr ""
+msgstr "Ändra källspråk"
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
msgid "Change your password"
@@ -3123,7 +3123,7 @@ msgstr "Utvecklaralternativ"
#: src/lib/translation/index.tsx:265
msgid "Device failed to translate :("
-msgstr ""
+msgstr "Enheten kunde inte översätta :("
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
@@ -3446,7 +3446,7 @@ msgstr "Redigera flöden"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Redigera bild"
@@ -4986,8 +4986,8 @@ msgstr "Dölj det här inlägget?"
msgid "Hide this reply?"
msgstr "Dölj det här svaret?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -7713,7 +7713,7 @@ msgstr "Profil"
#: src/screens/Profile/Header/Shell.tsx:174
msgid "Profile banner placeholder"
-msgstr ""
+msgstr "Platshållare för profilbanderoll"
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
@@ -7984,7 +7984,7 @@ msgstr "Ta bort avatar"
#: src/view/com/util/UserBanner.tsx:189
#: src/view/com/util/UserBanner.tsx:192
msgid "Remove Banner"
-msgstr "Ta bort omslag"
+msgstr "Ta bort banderoll"
#: src/view/com/composer/videos/SubtitleDialog.tsx:286
msgid "Remove caption file"
@@ -8030,7 +8030,7 @@ msgstr "Ta bort från sparade inlägg"
msgid "Remove from your feeds?"
msgstr "Ta bort från dina flöden?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Ta bort bild"
@@ -8910,7 +8910,7 @@ msgstr "Välj landskod"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Välj emojin {emojiName} som din avatar"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "Välj källspråk"
@@ -10521,18 +10521,18 @@ msgstr "Ämne"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Översätt"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "Översatt"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,18 +10565,18 @@ msgstr "Förtroende skapas genom relationer, gemenskaper och delade sammanhang.
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
-msgstr "Prova ett annat sökord eller <0>läs om hur du använder sökfilter0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
+msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
msgctxt "action"
msgid "Try again"
msgstr "Försök igen"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
-msgstr ""
+msgstr "Försök med Google Översätt"
#: src/lib/interests.ts:74
msgid "TV"
@@ -11310,7 +11310,7 @@ msgstr "Visa profil"
#: src/screens/Profile/Header/Shell.tsx:173
msgid "View profile banner"
-msgstr ""
+msgstr "Visa profilbanderoll"
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
diff --git a/src/locale/locales/th/messages.po b/src/locale/locales/th/messages.po
index ddeeaf3244..10bee42389 100644
--- a/src/locale/locales/th/messages.po
+++ b/src/locale/locales/th/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: th\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Thai\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -851,8 +851,8 @@ msgstr "เพิ่มบัญชี"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "เข้าสู่ระบบของ @{0} เรียบร้อ
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr ""
@@ -1170,7 +1170,7 @@ msgstr ""
msgid "Alt Text"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "ข้อความแสดงแทนอธิบายรูปภาพสำหรับผู้ใช้ที่พิการทางสายตาและผู้มีสายตาเลือนลาง และช่วยให้บริบทแก่ทุกคน"
@@ -1974,7 +1974,7 @@ msgstr "คำบรรยาย & ข้อความสำรอง"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "เปลี่ยน"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "แก้ไขฟีด"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "แก้ไขรูปภาพ"
@@ -4986,8 +4986,8 @@ msgstr "ซ่อนโพสต์นี้ใช่ไหม?"
msgid "Hide this reply?"
msgstr "ซ่อนการตอบกลับใช่ไหม"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "ลบรูปภาพ"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "เลือกอีโมจิ {emojiName} เป็นอวาตาร์ของคุณ"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr ""
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr ""
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr ""
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/tr/messages.po b/src/locale/locales/tr/messages.po
index af14a5bda9..0f5dcb5d74 100644
--- a/src/locale/locales/tr/messages.po
+++ b/src/locale/locales/tr/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: tr\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -851,8 +851,8 @@ msgstr "Hesap ekle"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Zaten @{0} olarak oturum açıldı"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Alternatif metin"
msgid "Alt Text"
msgstr "Alternatif Metin"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alternatif metin, görme engelli ve düşük görme yeteneğine sahip kullanıcılar için görselleri tanımlar ve herkes için bağlam sağlamaya yardımcı olur."
@@ -1974,7 +1974,7 @@ msgstr "Altyazılar ve alternatif metin"
msgid "Cashtag {tag}"
msgstr "{tag} finans etiketi"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Değiştir"
@@ -2020,7 +2020,7 @@ msgstr "Rapor kategorisini değiştir"
msgid "Change report reason"
msgstr "Rapor gerekçesini değiştir"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Akışları Düzenle"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Resmi düzenle"
@@ -4986,8 +4986,8 @@ msgstr "Bu gönderiyi gizle?"
msgid "Hide this reply?"
msgstr "Bu yanıtı gizle?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr "Kayıtlı gönderilerden çıkar"
msgid "Remove from your feeds?"
msgstr "Akışlarınızdan kaldırılsın mı?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Resmi kaldır"
@@ -8910,7 +8910,7 @@ msgstr "Telefon kodunu seç"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "{emojiName} emojisini avatar olarak seç"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "Kaynak dili seç"
@@ -10521,18 +10521,18 @@ msgstr "Konu başlığı"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Çevir"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "Çevrildi"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "Güven ilişkilerden, topluluklardan ve paylaşılan bağlamdan gelir. D
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Tekrar dene"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po
index 7a370ecfb6..96f76c5733 100644
--- a/src/locale/locales/uk/messages.po
+++ b/src/locale/locales/uk/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: uk\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
@@ -851,8 +851,8 @@ msgstr "Додати обліковий запис"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Вже увійшли як @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr ""
@@ -1170,7 +1170,7 @@ msgstr "Альтернативний текст"
msgid "Alt Text"
msgstr "Альтернативний текст"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Альтернативний текст описує зображення для незрячих та користувачів із вадами зору, та надає додатковий контекст для всіх."
@@ -1974,7 +1974,7 @@ msgstr "Назва та альтернативний текст"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Змінити"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr ""
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Редагувати стрічки"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Редагувати зображення"
@@ -4986,8 +4986,8 @@ msgstr "Приховати цей пост?"
msgid "Hide this reply?"
msgstr "Приховати цю відповідь?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Видалити зображення"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Обрати {emojiName} емодзі як ваш аватар"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Перекласти"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr ""
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Спробувати ще раз"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/vi/messages.po b/src/locale/locales/vi/messages.po
index e47463eff6..6bce2e2438 100644
--- a/src/locale/locales/vi/messages.po
+++ b/src/locale/locales/vi/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: vi\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Vietnamese\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -851,8 +851,8 @@ msgstr "Thêm tài khoản"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "Đã đăng nhập dưới tên @{0}"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "ALT"
@@ -1170,7 +1170,7 @@ msgstr "Văn bản thay thế"
msgid "Alt Text"
msgstr "Văn bản thay thế"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Văn bản thay thế mô tả hình ảnh cho người khiếm thị hoặc thị lực yếu, giúp bổ sung ngữ cảnh."
@@ -1974,7 +1974,7 @@ msgstr "Phụ đề & văn bản thay thế"
msgid "Cashtag {tag}"
msgstr ""
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "Thay đổi"
@@ -2020,7 +2020,7 @@ msgstr ""
msgid "Change report reason"
msgstr "Thay đổi lý do báo cáo"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "Chỉnh sửa bảng tin"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "Chỉnh sửa hình ảnh"
@@ -4986,8 +4986,8 @@ msgstr "Ẩn bài đăng này?"
msgid "Hide this reply?"
msgstr "Ẩn trả lời này?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr "Xóa khỏi bảng tin của bạn?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "Xóa hình"
@@ -8910,7 +8910,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Chọn emoji {emojiName} làm hình hiển thị"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "Chủ đề"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "Dịch"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "Niềm tin hình thành từ các mối quan hệ, cộng đồng và b
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "Thử lại"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po
index 72133e8152..469fca0ce5 100644
--- a/src/locale/locales/zh-CN/messages.po
+++ b/src/locale/locales/zh-CN/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -851,8 +851,8 @@ msgstr "添加账户"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "已经以 @{0} 身份登录"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "替代文本"
@@ -1170,7 +1170,7 @@ msgstr "替代文本"
msgid "Alt Text"
msgstr "替代文本"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "为图片新增替代文本,从而帮助视障者大致了解图片内容。"
@@ -1974,7 +1974,7 @@ msgstr "字幕及替代文本"
msgid "Cashtag {tag}"
msgstr "标签 {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "更改"
@@ -2020,9 +2020,9 @@ msgstr "更改举报类型"
msgid "Change report reason"
msgstr "更改举报原因"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
-msgstr ""
+msgstr "更改原始语言"
#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
msgid "Change your password"
@@ -3123,7 +3123,7 @@ msgstr "开发者选项"
#: src/lib/translation/index.tsx:265
msgid "Device failed to translate :("
-msgstr ""
+msgstr "调用设备翻译失败 :("
#: src/components/WhoCanReply.tsx:222
msgid "Dialog: adjust who can interact with this post"
@@ -3446,7 +3446,7 @@ msgstr "编辑动态源"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "编辑图片"
@@ -4986,8 +4986,8 @@ msgstr "要隐藏这则帖文吗?"
msgid "Hide this reply?"
msgstr "要隐藏这则回复吗?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -7713,7 +7713,7 @@ msgstr "个人资料"
#: src/screens/Profile/Header/Shell.tsx:174
msgid "Profile banner placeholder"
-msgstr ""
+msgstr "个人资料横幅占位符"
#: src/lib/strings/errors.ts:40
msgid "Profile not found"
@@ -7911,7 +7911,7 @@ msgstr "接收推送通知"
#: src/screens/Search/components/SearchHistory.tsx:50
msgid "Recent searches"
-msgstr ""
+msgstr "最近的搜索记录"
#: src/components/dialogs/LanguageSelectDialog.tsx:257
msgid "Recently used"
@@ -8030,7 +8030,7 @@ msgstr "从帖文收藏里删除"
msgid "Remove from your feeds?"
msgstr "要从你的动态源中删除吗?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "删除图片"
@@ -8910,7 +8910,7 @@ msgstr "选择电话区号"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "选择 {emojiName} 表情符号作为你的头像"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "选择原始语言"
@@ -10269,7 +10269,7 @@ msgstr "该账户代码被预留,请尝试输入另一个。"
#: src/screens/Onboarding/StepProfile/index.tsx:133
msgid "This image could not be used. Try a different format like .jpg or .png."
-msgstr ""
+msgstr "无法使用这张图片,请改用其他图片格式,例如 .jpg 或 .png。"
#: src/components/dialogs/BirthDateSettings.tsx:56
msgid "This information is private and not shared with other users."
@@ -10521,18 +10521,18 @@ msgstr "话题"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "翻译"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "已翻译"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "信任源于人际关系、社群和共享环境,因此我们也引入
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,10 +10573,10 @@ msgctxt "action"
msgid "Try again"
msgstr "重试"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
-msgstr ""
+msgstr "尝试 Google 翻译"
#: src/lib/interests.ts:74
msgid "TV"
@@ -11253,7 +11253,7 @@ msgstr "查看 {0} 的个人资料"
#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle)
#: src/components/ProfileCard.tsx:143
msgid "View {0}’s profile"
-msgstr ""
+msgstr "查看 {0} 的个人资料"
#: src/components/dms/MessagesListHeader.tsx:142
msgid "View {displayName}'s profile"
@@ -11310,7 +11310,7 @@ msgstr "查看个人资料"
#: src/screens/Profile/Header/Shell.tsx:173
msgid "View profile banner"
-msgstr ""
+msgstr "查看个人资料横幅"
#: src/view/com/profile/ProfileSubpageHeader.tsx:124
msgid "View the avatar"
diff --git a/src/locale/locales/zh-HK/messages.po b/src/locale/locales/zh-HK/messages.po
index ae0afd7448..74b977e985 100644
--- a/src/locale/locales/zh-HK/messages.po
+++ b/src/locale/locales/zh-HK/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional, Hong Kong\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -851,8 +851,8 @@ msgstr "新增帳號"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "用咗 @{0} 身分登入"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "替代文字"
@@ -1170,7 +1170,7 @@ msgstr "替代文字"
msgid "Alt Text"
msgstr "替代文字"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "加入替代文字會幫盲人同視障人士講述圖片內容,同埋幫助每個人提供更多資料。"
@@ -1974,7 +1974,7 @@ msgstr "字幕同替代文字"
msgid "Cashtag {tag}"
msgstr "標籤 {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "變更"
@@ -2020,7 +2020,7 @@ msgstr "變更擧報類別"
msgid "Change report reason"
msgstr "變更擧報理由"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "編輯動態源"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "編輯圖片"
@@ -4986,8 +4986,8 @@ msgstr "係咪要隱藏呢條帖文?"
msgid "Hide this reply?"
msgstr "係咪要隱藏呢個回覆?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr "從帖文收藏度刪除"
msgid "Remove from your feeds?"
msgstr "係咪要喺你嘅動態源度刪除?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "刪除圖片"
@@ -8910,7 +8910,7 @@ msgstr "揀選國家代碼"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "揀個 {emojiName} Emoji 做你嘅頭像"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr ""
@@ -10521,18 +10521,18 @@ msgstr "話題"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "翻譯"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr ""
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "信任源於人際關係、社羣同共享嘅背景,所以我哋亦都
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "試多次"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/src/locale/locales/zh-TW/messages.po b/src/locale/locales/zh-TW/messages.po
index 2ca9fdfd5c..c486e845e9 100644
--- a/src/locale/locales/zh-TW/messages.po
+++ b/src/locale/locales/zh-TW/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-03-05 02:45\n"
+"PO-Revision-Date: 2026-03-05 20:12\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -851,8 +851,8 @@ msgstr "新增帳號"
#: src/view/com/composer/GifAltText.tsx:78
#: src/view/com/composer/GifAltText.tsx:147
#: src/view/com/composer/GifAltText.tsx:214
-#: src/view/com/composer/photos/Gallery.tsx:181
-#: src/view/com/composer/photos/Gallery.tsx:228
+#: src/view/com/composer/photos/Gallery.tsx:182
+#: src/view/com/composer/photos/Gallery.tsx:229
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
msgid "Add alt text"
@@ -1152,7 +1152,7 @@ msgstr "已經以 @{0} 的身分登入"
#: src/components/images/Gallery.tsx:120
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:102
-#: src/view/com/composer/photos/Gallery.tsx:199
+#: src/view/com/composer/photos/Gallery.tsx:200
msgid "ALT"
msgstr "替代文字"
@@ -1170,7 +1170,7 @@ msgstr "替代文字"
msgid "Alt Text"
msgstr "替代文字"
-#: src/view/com/composer/photos/Gallery.tsx:273
+#: src/view/com/composer/photos/Gallery.tsx:274
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "替代文字可協助失明及弱視人士瞭解圖片內容,也有助於為每個人提供更多資訊。"
@@ -1974,7 +1974,7 @@ msgstr "字幕和替代文字"
msgid "Cashtag {tag}"
msgstr "標籤 {tag}"
-#: src/components/Post/Translated/index.tsx:395
+#: src/components/Post/Translated/index.tsx:397
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Change"
msgstr "變更"
@@ -2020,7 +2020,7 @@ msgstr "變更檢舉類別"
msgid "Change report reason"
msgstr "變更檢舉理由"
-#: src/components/Post/Translated/index.tsx:385
+#: src/components/Post/Translated/index.tsx:387
msgid "Change the source language"
msgstr ""
@@ -3446,7 +3446,7 @@ msgstr "編輯動態源"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:206
+#: src/view/com/composer/photos/Gallery.tsx:207
msgid "Edit image"
msgstr "編輯圖片"
@@ -4986,8 +4986,8 @@ msgstr "要隱藏這則貼文嗎?"
msgid "Hide this reply?"
msgstr "要隱藏這則回覆嗎?"
-#: src/components/Post/Translated/index.tsx:192
-#: src/components/Post/Translated/index.tsx:318
+#: src/components/Post/Translated/index.tsx:194
+#: src/components/Post/Translated/index.tsx:320
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
msgid "Hide translation"
@@ -8030,7 +8030,7 @@ msgstr "從貼文收藏中刪除"
msgid "Remove from your feeds?"
msgstr "要從您的動態源中刪除嗎?"
-#: src/view/com/composer/photos/Gallery.tsx:215
+#: src/view/com/composer/photos/Gallery.tsx:216
msgid "Remove image"
msgstr "刪除圖片"
@@ -8910,7 +8910,7 @@ msgstr "選擇國家代碼"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "選擇 {emojiName} 表情符號作為您的大頭貼照"
-#: src/components/Post/Translated/index.tsx:402
+#: src/components/Post/Translated/index.tsx:404
msgid "Select the source language"
msgstr "選擇來源語言"
@@ -10521,18 +10521,18 @@ msgstr "話題"
#: src/components/dms/MessageContextMenu.tsx:139
#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/Post/Translated/index.tsx:139
-#: src/components/Post/Translated/index.tsx:146
+#: src/components/Post/Translated/index.tsx:141
+#: src/components/Post/Translated/index.tsx:148
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Translate"
msgstr "翻譯"
-#: src/components/Post/Translated/index.tsx:292
+#: src/components/Post/Translated/index.tsx:294
msgid "Translated"
msgstr "已翻譯"
-#: src/components/Post/Translated/index.tsx:89
+#: src/components/Post/Translated/index.tsx:93
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
msgid "Translating…"
@@ -10565,7 +10565,7 @@ msgstr "信任源自於人際關係、社群及共享環境,因此我們也引
#: src/screens/Search/SearchResults.tsx:186
msgctxt "english-only-resource"
-msgid "Try a different search term, or <0>read about how to use search filters.0>."
+msgid "Try a different search term, or <0>read about how to use search filters0>."
msgstr ""
#: src/view/com/util/error/ErrorScreen.tsx:104
@@ -10573,8 +10573,8 @@ msgctxt "action"
msgid "Try again"
msgstr "再試一次"
-#: src/components/Post/Translated/index.tsx:205
-#: src/components/Post/Translated/index.tsx:213
+#: src/components/Post/Translated/index.tsx:207
+#: src/components/Post/Translated/index.tsx:215
msgid "Try Google Translate"
msgstr ""
diff --git a/yarn.lock b/yarn.lock
index 88442a997c..52dfb53cd5 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -82,35 +82,7 @@
"@atproto/xrpc" "^0.7.6"
"@atproto/xrpc-server" "^0.10.0"
-"@atproto/api@^0.18.20":
- version "0.18.20"
- resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.18.20.tgz#3fdbb7b7fae90bd59101970c2b56cc31e8cf417d"
- integrity sha512-BZYZkh2VJIFCXEnc/vzKwAwWjAQQTgbNJ8FBxpBK+z+KYh99O0uPCsRYKoCQsRrnkgrhzdU9+g2G+7zanTIGbw==
- dependencies:
- "@atproto/common-web" "^0.4.15"
- "@atproto/lexicon" "^0.6.1"
- "@atproto/syntax" "^0.4.3"
- "@atproto/xrpc" "^0.7.7"
- await-lock "^2.2.2"
- multiformats "^9.9.0"
- tlds "^1.234.0"
- zod "^3.23.8"
-
-"@atproto/api@^0.18.21":
- version "0.18.21"
- resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.18.21.tgz#19dbea422de22e7f5253f1c5475e3588c3a9d4a0"
- integrity sha512-s35MIJerGT/pKe2xJtKKswqlIr/ola2r2iURBKBL0Mk1OKe6jP4YvTMh1N2d2PEANFzNNTbKoDaLfJPo2Uvc/w==
- dependencies:
- "@atproto/common-web" "^0.4.16"
- "@atproto/lexicon" "^0.6.1"
- "@atproto/syntax" "^0.4.3"
- "@atproto/xrpc" "^0.7.7"
- await-lock "^2.2.2"
- multiformats "^9.9.0"
- tlds "^1.234.0"
- zod "^3.23.8"
-
-"@atproto/api@^0.19.3":
+"@atproto/api@^0.19.2", "@atproto/api@^0.19.3":
version "0.19.3"
resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.19.3.tgz#61de8d2e31abe9eb2b4c8f4ad124ed79d4a77e89"
integrity sha512-G8YpBpRouHdTAIagi/QQIUZOhGd1jfBQWkJy9QfxAzjjEpPvaVOSk4e1S85QzGLm/xbzVONzGkmdtiOSfP6wVg==
@@ -142,23 +114,23 @@
multiformats "^9.9.0"
uint8arrays "3.0.0"
-"@atproto/bsky@^0.0.215":
- version "0.0.215"
- resolved "https://registry.yarnpkg.com/@atproto/bsky/-/bsky-0.0.215.tgz#df566ccc7bc77d27dd2f9506c96739352b395cef"
- integrity sha512-1X9G4L8boh9naCtXzorFYm8VskE1xLOJslthR16Hd4uH+ryOEVxN0BLk16OP86qy00hU6VNvyGkDqBthUyy62w==
+"@atproto/bsky@^0.0.219":
+ version "0.0.219"
+ resolved "https://registry.yarnpkg.com/@atproto/bsky/-/bsky-0.0.219.tgz#6a9f82eb4ab999e121d04ad2b3f08ff60cc75fba"
+ integrity sha512-Vm7JpIyCqd7sHzHsXqppGSaKkXKUhvdZ/UOldc247Bgmx+L/U+E6IeR028hzMr1YyDvU+bkO1hlqT8uUovOCdA==
dependencies:
"@atproto-labs/fetch-node" "^0.2.0"
"@atproto-labs/xrpc-utils" "^0.0.24"
- "@atproto/api" "^0.18.21"
- "@atproto/common" "^0.5.11"
+ "@atproto/api" "^0.19.2"
+ "@atproto/common" "^0.5.14"
"@atproto/crypto" "^0.4.5"
"@atproto/did" "^0.3.0"
- "@atproto/identity" "^0.4.11"
- "@atproto/lexicon" "^0.6.1"
+ "@atproto/identity" "^0.4.12"
+ "@atproto/lexicon" "^0.6.2"
"@atproto/repo" "^0.8.12"
- "@atproto/sync" "^0.1.39"
- "@atproto/syntax" "^0.4.3"
- "@atproto/xrpc-server" "^0.10.12"
+ "@atproto/sync" "^0.1.40"
+ "@atproto/syntax" "^0.5.0"
+ "@atproto/xrpc-server" "^0.10.15"
"@bufbuild/protobuf" "^1.5.0"
"@connectrpc/connect" "^1.1.4"
"@connectrpc/connect-express" "^1.1.4"
@@ -192,13 +164,13 @@
undici "^6.19.8"
zod "3.23.8"
-"@atproto/bsync@^0.0.23":
- version "0.0.23"
- resolved "https://registry.yarnpkg.com/@atproto/bsync/-/bsync-0.0.23.tgz#502b9617a958c8248919ed96ce7d4318b06afb34"
- integrity sha512-ONbbY1oavc02ItBzXpo7dam0aNZ4ufDdGlgqLjBV5ZQnP35qmPfdq01plf8H9B2rerOLzz5PaxOBber35KffUA==
+"@atproto/bsync@^0.0.24":
+ version "0.0.24"
+ resolved "https://registry.yarnpkg.com/@atproto/bsync/-/bsync-0.0.24.tgz#6b0d4b02c0c0241687456ab817471d36ee81ae61"
+ integrity sha512-JN+oncaPBNRjzjTPGR7Q1fkKF3cqOQ6oLRrAh9kVU04ZS3FhWUG8cQvnr8wb1PUhFb/XYpWkwDw5+GIhdb7Lfw==
dependencies:
- "@atproto/common" "^0.5.0"
- "@atproto/syntax" "^0.4.1"
+ "@atproto/common" "^0.5.14"
+ "@atproto/syntax" "^0.5.0"
"@bufbuild/protobuf" "^1.5.0"
"@connectrpc/connect" "^1.1.4"
"@connectrpc/connect-node" "^1.1.4"
@@ -218,27 +190,7 @@
"@atproto/syntax" "0.4.3"
zod "^3.23.8"
-"@atproto/common-web@^0.4.15":
- version "0.4.15"
- resolved "https://registry.yarnpkg.com/@atproto/common-web/-/common-web-0.4.15.tgz#1fffedf62d69b8c96f7b360e11c4180446a2cc82"
- integrity sha512-A4l9gyqUNez8CjZp/Trypz/D3WIQsNj8dN05WR6+RoBbvwc9JhWjKPrm+WoVYc/F16RPdXHLkE3BEJlGIyYIiA==
- dependencies:
- "@atproto/lex-data" "^0.0.10"
- "@atproto/lex-json" "^0.0.10"
- "@atproto/syntax" "^0.4.3"
- zod "^3.23.8"
-
-"@atproto/common-web@^0.4.16":
- version "0.4.16"
- resolved "https://registry.yarnpkg.com/@atproto/common-web/-/common-web-0.4.16.tgz#1bee6073ee7a102ea6c47a512a8f6992c683012e"
- integrity sha512-Ufvaff5JgxUyUyTAG0/3o7ltpy3lnZ1DvLjyAnvAf+hHfiK7OMQg+8byr+orN+KP9MtIQaRTsCgYPX+PxMKUoA==
- dependencies:
- "@atproto/lex-data" "^0.0.11"
- "@atproto/lex-json" "^0.0.11"
- "@atproto/syntax" "^0.4.3"
- zod "^3.23.8"
-
-"@atproto/common-web@^0.4.18":
+"@atproto/common-web@^0.4.17", "@atproto/common-web@^0.4.18":
version "0.4.18"
resolved "https://registry.yarnpkg.com/@atproto/common-web/-/common-web-0.4.18.tgz#832976340457afd3d29345ad2c6f0ac0bff087dd"
integrity sha512-ilImzP+9N/mtse440kN60pGrEzG7wi4xsV13nGeLrS+Zocybc/ISOpKlbZM13o+twPJ+Q7veGLw9CtGg0GAFoQ==
@@ -280,15 +232,14 @@
multiformats "^9.9.0"
pino "^8.21.0"
-"@atproto/common@^0.5.11":
- version "0.5.11"
- resolved "https://registry.yarnpkg.com/@atproto/common/-/common-0.5.11.tgz#88499978d3b29c451e7ad9a71f9d2f89446e89f6"
- integrity sha512-WRlT4s+wv80WdQuzkQub9D5vTD82O8dH2p91u4b+x3O17q5IQbmA3Lj+1NICINNSy2voqloqAWdqXEkRfdlAPw==
+"@atproto/common@^0.5.14":
+ version "0.5.14"
+ resolved "https://registry.yarnpkg.com/@atproto/common/-/common-0.5.14.tgz#e7281d07587f4a6b79ab98d23d0a4c3451798864"
+ integrity sha512-FnhTppvJw8I1AuvEkL9JREFwmM6ciYfSlQ0Zo6neiJIhTf1wf5/ONeFSYKu1/dxC63JEratGIAfVjSBJJZi7sg==
dependencies:
- "@atproto/common-web" "^0.4.16"
- "@atproto/lex-cbor" "^0.0.11"
- "@atproto/lex-data" "^0.0.11"
- iso-datestring-validator "^2.2.2"
+ "@atproto/common-web" "^0.4.18"
+ "@atproto/lex-cbor" "^0.0.14"
+ "@atproto/lex-data" "^0.0.13"
multiformats "^9.9.0"
pino "^8.21.0"
@@ -312,23 +263,23 @@
"@noble/hashes" "^1.6.1"
uint8arrays "3.0.0"
-"@atproto/dev-env@^0.3.209":
- version "0.3.209"
- resolved "https://registry.yarnpkg.com/@atproto/dev-env/-/dev-env-0.3.209.tgz#0df234a7feab7628ad376773de0e8bd612fb7f2a"
- integrity sha512-i4IVqoyCAqULNeye9xpo5YVfrNjFQjGwAJZ4QAA26L9LuFlXmudnAX17KOCMvmJiPgtRe2ofIy6h+ZJ6qm52tQ==
+"@atproto/dev-env@^0.3.213":
+ version "0.3.213"
+ resolved "https://registry.yarnpkg.com/@atproto/dev-env/-/dev-env-0.3.213.tgz#30ca66f827d44ccabb02b359119f68549fa3edf0"
+ integrity sha512-Bjhv+zzcQxhwV4I7si+yDls8sSetksILeiBemfRe3cvE4GOgs7KfsYI5+pqNmBZ5rrFPt3KUeN9vIo31LCgZOw==
dependencies:
- "@atproto/api" "^0.18.21"
- "@atproto/bsky" "^0.0.215"
- "@atproto/bsync" "^0.0.23"
- "@atproto/common-web" "^0.4.16"
+ "@atproto/api" "^0.19.2"
+ "@atproto/bsky" "^0.0.219"
+ "@atproto/bsync" "^0.0.24"
+ "@atproto/common-web" "^0.4.18"
"@atproto/crypto" "^0.4.5"
- "@atproto/identity" "^0.4.11"
- "@atproto/lexicon" "^0.6.1"
- "@atproto/ozone" "^0.1.163"
- "@atproto/pds" "^0.4.209"
- "@atproto/sync" "^0.1.39"
- "@atproto/syntax" "^0.4.3"
- "@atproto/xrpc-server" "^0.10.12"
+ "@atproto/identity" "^0.4.12"
+ "@atproto/lexicon" "^0.6.2"
+ "@atproto/ozone" "^0.1.166"
+ "@atproto/pds" "^0.4.214"
+ "@atproto/sync" "^0.1.40"
+ "@atproto/syntax" "^0.5.0"
+ "@atproto/xrpc-server" "^0.10.15"
"@did-plc/lib" "^0.0.1"
"@did-plc/server" "^0.0.1"
dotenv "^16.0.3"
@@ -345,20 +296,12 @@
dependencies:
zod "^3.23.8"
-"@atproto/identity@^0.4.10":
- version "0.4.10"
- resolved "https://registry.yarnpkg.com/@atproto/identity/-/identity-0.4.10.tgz#0ddf3dabef420333a86858512c9f06127b25cada"
- integrity sha512-nQbzDLXOhM8p/wo0cTh5DfMSOSHzj6jizpodX37LJ4S1TZzumSxAjHEZa5Rev3JaoD5uSWMVE0MmKEGWkPPvfQ==
+"@atproto/identity@^0.4.12":
+ version "0.4.12"
+ resolved "https://registry.yarnpkg.com/@atproto/identity/-/identity-0.4.12.tgz#ead1312677a60d162e6d0df8fe5fda4727b5c15a"
+ integrity sha512-P+Jn0HvKhIh1tps5n3xGrCxt+XiFWzp4kdgloyFhFmVLwjDU547DQkWx4r5Vhuiah7fRZGVSlk39R4U6SPrACg==
dependencies:
- "@atproto/common-web" "^0.4.4"
- "@atproto/crypto" "^0.4.4"
-
-"@atproto/identity@^0.4.11":
- version "0.4.11"
- resolved "https://registry.yarnpkg.com/@atproto/identity/-/identity-0.4.11.tgz#9622496499919cb2c05d21ab1ba45132dd1e3b52"
- integrity sha512-/xXPPojR0PRD0pqoEPmgKMeclUCrkaMKfFGFkssAmXSuT39aCtiibxNqvhp+S2jOdeM6rKrs2QgH91OCGvwPcg==
- dependencies:
- "@atproto/common-web" "^0.4.16"
+ "@atproto/common-web" "^0.4.17"
"@atproto/crypto" "^0.4.5"
"@atproto/jwk-jose@^0.1.11":
@@ -385,22 +328,22 @@
"@atproto/lex-data" "0.0.9"
tslib "^2.8.1"
-"@atproto/lex-cbor@^0.0.11":
- version "0.0.11"
- resolved "https://registry.yarnpkg.com/@atproto/lex-cbor/-/lex-cbor-0.0.11.tgz#7a464a2032eb61a1dfc254bae1e2759c8279d6a6"
- integrity sha512-A7ETtPsEsJ/VuPJOFw4bPNTKxHvFN1JbTQ2NjLuisd3ry7fVxgMpo/qGXsUQsAh/I/uziGbhpNqdS6GnI2p/Wg==
+"@atproto/lex-cbor@^0.0.14":
+ version "0.0.14"
+ resolved "https://registry.yarnpkg.com/@atproto/lex-cbor/-/lex-cbor-0.0.14.tgz#8e378095585f5a86a074e87b82e1c4b803ebb2a6"
+ integrity sha512-zeqxaKAifR8qlFKg4A6t1RCT8TcjeDnIXLtp3QnDu0QoxslxsmcsrqNrrgmka8w+bYW2+h/rT9MPWglkT7vHyw==
dependencies:
- "@atproto/lex-data" "^0.0.11"
+ "@atproto/lex-data" "^0.0.13"
tslib "^2.8.1"
-"@atproto/lex-client@^0.0.12":
- version "0.0.12"
- resolved "https://registry.yarnpkg.com/@atproto/lex-client/-/lex-client-0.0.12.tgz#87be8075746e32dafc3d23f282e53daadb50ea66"
- integrity sha512-ef4jQQ7SOtBsXr+Gf1UHuBfCiAGYZxO5PCCXl3eT4ObO83SROtIf7pyO06jBQI/IZChSVsXqXsgakR0aru6lYQ==
+"@atproto/lex-client@^0.0.15":
+ version "0.0.15"
+ resolved "https://registry.yarnpkg.com/@atproto/lex-client/-/lex-client-0.0.15.tgz#c647d14e91ca3f52feebf4b34f80abb7e93b3bee"
+ integrity sha512-j/eZGCdkhABU8Z868Y/gn909hS77rOCdMqtOaQdflEaKUKiAo2/gqeTpoAjHBnL5Rzz255wj9qZMqZTR/Ygwxw==
dependencies:
- "@atproto/lex-data" "^0.0.11"
- "@atproto/lex-json" "^0.0.11"
- "@atproto/lex-schema" "^0.0.12"
+ "@atproto/lex-data" "^0.0.13"
+ "@atproto/lex-json" "^0.0.13"
+ "@atproto/lex-schema" "^0.0.14"
tslib "^2.8.1"
"@atproto/lex-data@0.0.9":
@@ -413,26 +356,6 @@
uint8arrays "3.0.0"
unicode-segmenter "^0.14.0"
-"@atproto/lex-data@^0.0.10":
- version "0.0.10"
- resolved "https://registry.yarnpkg.com/@atproto/lex-data/-/lex-data-0.0.10.tgz#091c012af817a869951ce0e61eb757bd6c29797a"
- integrity sha512-FDbcy8VIUVzS9Mi1F8SMxbkL/jOUmRRpqbeM1xB4A0fMxeZJTxf6naAbFt4gYF3quu/+TPJGmio6/7cav05FqQ==
- dependencies:
- multiformats "^9.9.0"
- tslib "^2.8.1"
- uint8arrays "3.0.0"
- unicode-segmenter "^0.14.0"
-
-"@atproto/lex-data@^0.0.11":
- version "0.0.11"
- resolved "https://registry.yarnpkg.com/@atproto/lex-data/-/lex-data-0.0.11.tgz#de98894a80ff907f9cd6c3faa561d3a16e21dd8d"
- integrity sha512-4+KTtHdqwlhiTKA7D4SACea4jprsNpCQsNALW09wsZ6IHhCDGO5tr1cmV+QnLYe3G3mu1E1yXHXbPUHrUUDT/A==
- dependencies:
- multiformats "^9.9.0"
- tslib "^2.8.1"
- uint8arrays "3.0.0"
- unicode-segmenter "^0.14.0"
-
"@atproto/lex-data@^0.0.13":
version "0.0.13"
resolved "https://registry.yarnpkg.com/@atproto/lex-data/-/lex-data-0.0.13.tgz#db1bcfa12d5056210f6eb7f3b8bac909909d6b9c"
@@ -443,12 +366,12 @@
uint8arrays "3.0.0"
unicode-segmenter "^0.14.0"
-"@atproto/lex-document@^0.0.13":
- version "0.0.13"
- resolved "https://registry.yarnpkg.com/@atproto/lex-document/-/lex-document-0.0.13.tgz#fcf794addf6cb328c78d4393e91ec0050a43c623"
- integrity sha512-LWsBsKIbyuG7jFObTtnCFQNYHxWWVpVVspqv6UtnS/QsaCyCMg1GIz5vlgi8QBnmGvaPiQxIzGt6mERpTvEXpg==
+"@atproto/lex-document@^0.0.15":
+ version "0.0.15"
+ resolved "https://registry.yarnpkg.com/@atproto/lex-document/-/lex-document-0.0.15.tgz#b2f19756291a0d259cd99f5ebe4872e9133069b6"
+ integrity sha512-QT2MbICG4cTFrrA19SIHpZJ33WRLdzjhDsEhSknQ4dE5CjqPf4BP9LaC4pOeW8NE5Kn92hgIm3JWNjoak8blXw==
dependencies:
- "@atproto/lex-schema" "^0.0.12"
+ "@atproto/lex-schema" "^0.0.14"
core-js "^3"
tslib "^2.8.1"
@@ -460,22 +383,6 @@
"@atproto/lex-data" "0.0.9"
tslib "^2.8.1"
-"@atproto/lex-json@^0.0.10":
- version "0.0.10"
- resolved "https://registry.yarnpkg.com/@atproto/lex-json/-/lex-json-0.0.10.tgz#18de1c8cc3ba564e5412bce1f8e22c198c956e64"
- integrity sha512-L6MyXU17C5ODMeob8myQ2F3xvgCTvJUtM0ew8qSApnN//iDasB/FDGgd7ty4UVNmx4NQ/rtvz8xV94YpG6kneQ==
- dependencies:
- "@atproto/lex-data" "^0.0.10"
- tslib "^2.8.1"
-
-"@atproto/lex-json@^0.0.11":
- version "0.0.11"
- resolved "https://registry.yarnpkg.com/@atproto/lex-json/-/lex-json-0.0.11.tgz#56be96a4d2366113da3911020cedfb0fb97fbb4f"
- integrity sha512-2IExAoQ4KsR5fyPa1JjIvtR316PvdgRH/l3BVGLBd3cSxM3m5MftIv1B6qZ9HjNiK60SgkWp0mi9574bTNDhBQ==
- dependencies:
- "@atproto/lex-data" "^0.0.11"
- tslib "^2.8.1"
-
"@atproto/lex-json@^0.0.13":
version "0.0.13"
resolved "https://registry.yarnpkg.com/@atproto/lex-json/-/lex-json-0.0.13.tgz#b0081f786aeeb1707087318fb03c928e75c19059"
@@ -484,42 +391,31 @@
"@atproto/lex-data" "^0.0.13"
tslib "^2.8.1"
-"@atproto/lex-resolver@^0.0.14":
- version "0.0.14"
- resolved "https://registry.yarnpkg.com/@atproto/lex-resolver/-/lex-resolver-0.0.14.tgz#8bc32e49c231bc29ca0d1ea927b33d7a21447de3"
- integrity sha512-jBkYRmMKap2OM1zm0VDvs7Heuf3pGjw9xJEHQx1ohkMmM5f+cHPS40RQ8x8SNE+Vl9gMuOrgmgKyPDIuYSIBTw==
+"@atproto/lex-resolver@^0.0.17":
+ version "0.0.17"
+ resolved "https://registry.yarnpkg.com/@atproto/lex-resolver/-/lex-resolver-0.0.17.tgz#2c474f6babeb54665656bf28b8d27a98de69deae"
+ integrity sha512-6nI5bYZUYh50ZI8r4erLRP9EbNcW226VShpVN3vHyOSgTje4VP1RTcvBhROBAPj4rL3vc+Oa8OiL6IQXkYrQBg==
dependencies:
"@atproto-labs/did-resolver" "^0.2.6"
"@atproto/crypto" "^0.4.5"
- "@atproto/lex-client" "^0.0.12"
- "@atproto/lex-data" "^0.0.11"
- "@atproto/lex-document" "^0.0.13"
- "@atproto/lex-schema" "^0.0.12"
+ "@atproto/lex-client" "^0.0.15"
+ "@atproto/lex-data" "^0.0.13"
+ "@atproto/lex-document" "^0.0.15"
+ "@atproto/lex-schema" "^0.0.14"
"@atproto/repo" "^0.8.12"
- "@atproto/syntax" "^0.4.3"
+ "@atproto/syntax" "^0.5.0"
tslib "^2.8.1"
-"@atproto/lex-schema@^0.0.12":
- version "0.0.12"
- resolved "https://registry.yarnpkg.com/@atproto/lex-schema/-/lex-schema-0.0.12.tgz#3519b1e4040503e1e6e5a47df1012660f4c38d8c"
- integrity sha512-l1RNYmqNwIEjgMEjC9i2o6FLsUFdpAc610xQYK/CRxN31cRzY0lAJ2GFbp2GZ4rRAD3FGYCXid6gZ42KsieUcw==
+"@atproto/lex-schema@^0.0.14":
+ version "0.0.14"
+ resolved "https://registry.yarnpkg.com/@atproto/lex-schema/-/lex-schema-0.0.14.tgz#c29f5278d55441e76802d64f7a9df60e7a87786b"
+ integrity sha512-xUxFuXdgVVI1IBDXcQlanH7HuEo9Pk65DYifnhqFDzNRH9SZQxPvPO+rOxMG/bRHygPaI+A+UbXr+S7qpPYOLg==
dependencies:
- "@atproto/lex-data" "^0.0.11"
- "@atproto/syntax" "^0.4.3"
+ "@atproto/lex-data" "^0.0.13"
+ "@atproto/syntax" "^0.5.0"
tslib "^2.8.1"
-"@atproto/lexicon@^0.6.0", "@atproto/lexicon@^0.6.1":
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/@atproto/lexicon/-/lexicon-0.6.1.tgz#cdde25248083b39cc903cb845f632abfd64ef51a"
- integrity sha512-/vI1kVlY50Si+5MXpvOucelnYwb0UJ6Qto5mCp+7Q5C+Jtp+SoSykAPVvjVtTnQUH2vrKOFOwpb3C375vSKzXw==
- dependencies:
- "@atproto/common-web" "^0.4.13"
- "@atproto/syntax" "^0.4.3"
- iso-datestring-validator "^2.2.2"
- multiformats "^9.9.0"
- zod "^3.23.8"
-
-"@atproto/lexicon@^0.6.2":
+"@atproto/lexicon@^0.6.0", "@atproto/lexicon@^0.6.1", "@atproto/lexicon@^0.6.2":
version "0.6.2"
resolved "https://registry.yarnpkg.com/@atproto/lexicon/-/lexicon-0.6.2.tgz#f6152a2119df953236ca127c4b30e332265e81e7"
integrity sha512-p3Ly6hinVZW0ETuAXZMeUGwuMm3g8HvQMQ41yyEE6AL0hAkfeKFaZKos6BdBrr6CjkpbrDZqE8M+5+QOceysMw==
@@ -552,28 +448,28 @@
optionalDependencies:
"@atproto/oauth-provider-api" "0.3.7"
-"@atproto/oauth-provider@^0.15.9":
- version "0.15.9"
- resolved "https://registry.yarnpkg.com/@atproto/oauth-provider/-/oauth-provider-0.15.9.tgz#3ec21380711e34f4303a0782ecfffffb8080f144"
- integrity sha512-nuyOVw5piS/iEk7xKEtdulRbcFZ7HBB0gPXL62z5IpxmluEvLem/VLqsntj2OK/mtP6xhnIfFHP5pb5+PnLuYQ==
+"@atproto/oauth-provider@^0.15.12":
+ version "0.15.12"
+ resolved "https://registry.yarnpkg.com/@atproto/oauth-provider/-/oauth-provider-0.15.12.tgz#9dbbfdd6808399d9d7ff8993ac888938fbf4c515"
+ integrity sha512-Ri4aVx2I4lOKxViB92jwPhAs/NctWEwV0tgYSHcaRpvqr2SVlC2LxTVjUq14ohdbVfv4VFRzj0vZypEX+mclHg==
dependencies:
"@atproto-labs/fetch" "^0.2.3"
"@atproto-labs/fetch-node" "^0.2.0"
"@atproto-labs/pipe" "^0.1.1"
"@atproto-labs/simple-store" "^0.3.0"
"@atproto-labs/simple-store-memory" "^0.1.4"
- "@atproto/common" "^0.5.11"
+ "@atproto/common" "^0.5.14"
"@atproto/did" "^0.3.0"
"@atproto/jwk" "^0.6.0"
"@atproto/jwk-jose" "^0.1.11"
- "@atproto/lex-document" "^0.0.13"
- "@atproto/lex-resolver" "^0.0.14"
+ "@atproto/lex-document" "^0.0.15"
+ "@atproto/lex-resolver" "^0.0.17"
"@atproto/oauth-provider-api" "0.3.7"
"@atproto/oauth-provider-frontend" "0.2.9"
"@atproto/oauth-provider-ui" "0.4.3"
- "@atproto/oauth-scopes" "^0.3.1"
+ "@atproto/oauth-scopes" "^0.3.2"
"@atproto/oauth-types" "^0.6.3"
- "@atproto/syntax" "^0.4.3"
+ "@atproto/syntax" "^0.5.0"
"@hapi/accept" "^6.0.3"
"@hapi/address" "^5.1.1"
"@hapi/bourne" "^3.0.0"
@@ -586,13 +482,13 @@
jose "^5.2.0"
zod "^3.23.8"
-"@atproto/oauth-scopes@^0.3.1":
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/@atproto/oauth-scopes/-/oauth-scopes-0.3.1.tgz#cd0b3cdc31e14f6f1829f664fa1b3179f6ad9b51"
- integrity sha512-eUD9C78uYH+0ZUmiV/X6pRj4BKlH9I1xxJYW1Gb/qJiATuTZkJVm02urJb/BkWX4Qpxy4rOr8EProNg1wByIEA==
+"@atproto/oauth-scopes@^0.3.2":
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/@atproto/oauth-scopes/-/oauth-scopes-0.3.2.tgz#26443492936d6da05deadeaf1223bd10adc45a33"
+ integrity sha512-88awgvB9asSR86KjEXL31N9nFd1XG+QtbzEJFw5/wwEv41tS4S8c4Prqb/MAzVuFQ4OHOndYo1VDD99vGMpqTA==
dependencies:
"@atproto/did" "^0.3.0"
- "@atproto/syntax" "^0.4.3"
+ "@atproto/syntax" "^0.5.0"
"@atproto/oauth-types@0.6.2":
version "0.6.2"
@@ -612,20 +508,20 @@
"@atproto/jwk" "^0.6.0"
zod "^3.23.8"
-"@atproto/ozone@^0.1.163":
- version "0.1.163"
- resolved "https://registry.yarnpkg.com/@atproto/ozone/-/ozone-0.1.163.tgz#7935f9180b6c7f3bd05043d42e14b6055c268596"
- integrity sha512-Rz5p0Bf9K3KVo6VuPNe5KTiuJVM5eV7fXSIeWidC1WbDgfEEM8jJu2YRQHvDQq5r95SKKY0gTFYqU6vW0DKSJA==
+"@atproto/ozone@^0.1.166":
+ version "0.1.166"
+ resolved "https://registry.yarnpkg.com/@atproto/ozone/-/ozone-0.1.166.tgz#9e65d6f67ef1fe285d0880e5f5a1b282dc63bd70"
+ integrity sha512-XZ77P/V/tt3SqTQYRsi5nM3P2h+QaNT7Nz3GTf+TMLVolACufRHPoDgp/PoTuS2FaLj1ndHnGyIPvZi/o8he6g==
dependencies:
- "@atproto/api" "^0.18.20"
- "@atproto/common" "^0.5.11"
+ "@atproto/api" "^0.19.2"
+ "@atproto/common" "^0.5.14"
"@atproto/crypto" "^0.4.5"
- "@atproto/identity" "^0.4.11"
- "@atproto/lexicon" "^0.6.1"
- "@atproto/syntax" "^0.4.3"
+ "@atproto/identity" "^0.4.12"
+ "@atproto/lexicon" "^0.6.2"
+ "@atproto/syntax" "^0.5.0"
"@atproto/ws-client" "^0.0.4"
"@atproto/xrpc" "^0.7.7"
- "@atproto/xrpc-server" "^0.10.12"
+ "@atproto/xrpc-server" "^0.10.15"
"@did-plc/lib" "^0.0.1"
compression "^1.7.4"
cors "^2.8.5"
@@ -643,30 +539,30 @@
undici "^6.14.1"
ws "^8.12.0"
-"@atproto/pds@^0.4.209":
- version "0.4.209"
- resolved "https://registry.yarnpkg.com/@atproto/pds/-/pds-0.4.209.tgz#eb12f325c55692a6487c0620a7754b13f0914fe1"
- integrity sha512-jW9dnrrqj65u6FZoj/idIez+idGgYBG4KGVB75i7pqrRkE1a91Bj5MXX60JfIQ0VY9YpfBthSnJG9Pzz5OzA/Q==
+"@atproto/pds@^0.4.214":
+ version "0.4.214"
+ resolved "https://registry.yarnpkg.com/@atproto/pds/-/pds-0.4.214.tgz#c68d55ec0b00a4e35f4801c826d44b65cd62f984"
+ integrity sha512-bTWeWg3H0TlELfE2eI2ySQuC6ojsCBSSmPtCXBh3Td9TFNpIoZQ/tYLUJMtMXaiVUi6HxzXQL1/iuYfC4Y+ZYQ==
dependencies:
"@atproto-labs/fetch-node" "^0.2.0"
"@atproto-labs/simple-store" "^0.3.0"
"@atproto-labs/simple-store-memory" "^0.1.4"
"@atproto-labs/simple-store-redis" "^0.0.1"
"@atproto-labs/xrpc-utils" "^0.0.24"
- "@atproto/api" "^0.18.21"
+ "@atproto/api" "^0.19.2"
"@atproto/aws" "^0.2.31"
- "@atproto/common" "^0.5.11"
+ "@atproto/common" "^0.5.14"
"@atproto/crypto" "^0.4.5"
- "@atproto/identity" "^0.4.11"
- "@atproto/lex-cbor" "^0.0.11"
- "@atproto/lex-data" "^0.0.11"
- "@atproto/lexicon" "^0.6.1"
- "@atproto/oauth-provider" "^0.15.9"
- "@atproto/oauth-scopes" "^0.3.1"
+ "@atproto/identity" "^0.4.12"
+ "@atproto/lex-cbor" "^0.0.14"
+ "@atproto/lex-data" "^0.0.13"
+ "@atproto/lexicon" "^0.6.2"
+ "@atproto/oauth-provider" "^0.15.12"
+ "@atproto/oauth-scopes" "^0.3.2"
"@atproto/repo" "^0.8.12"
- "@atproto/syntax" "^0.4.3"
+ "@atproto/syntax" "^0.5.0"
"@atproto/xrpc" "^0.7.7"
- "@atproto/xrpc-server" "^0.10.12"
+ "@atproto/xrpc-server" "^0.10.15"
"@did-plc/lib" "^0.0.4"
"@hapi/address" "^5.1.1"
better-sqlite3 "^10.0.0"
@@ -710,22 +606,22 @@
varint "^6.0.0"
zod "^3.23.8"
-"@atproto/sync@^0.1.39":
- version "0.1.39"
- resolved "https://registry.yarnpkg.com/@atproto/sync/-/sync-0.1.39.tgz#0bb4a2a7391cfe73cf0be0a3905bc75d699ddf43"
- integrity sha512-JE0flkb6cDHc1dFNclkX6QB2PYXR+Taa1HDP7prI1lyFtkEASO0AOt+VtbL2JKhEa7VEy8ckko1T9glpCwGNYA==
+"@atproto/sync@^0.1.40":
+ version "0.1.40"
+ resolved "https://registry.yarnpkg.com/@atproto/sync/-/sync-0.1.40.tgz#b8b467ac4fbf2e682d36cd5697508f993e9e645a"
+ integrity sha512-tnzFPqKBXPXpuGvx87sjqLHgEzIOT/QfQZUp0YOUHtpipBgvijEnNXV9XeTIgiUAv69wyRR+6YjJkLCYfHpVwQ==
dependencies:
- "@atproto/common" "^0.5.3"
- "@atproto/identity" "^0.4.10"
- "@atproto/lexicon" "^0.6.0"
+ "@atproto/common" "^0.5.14"
+ "@atproto/identity" "^0.4.12"
+ "@atproto/lexicon" "^0.6.2"
"@atproto/repo" "^0.8.12"
- "@atproto/syntax" "^0.4.2"
- "@atproto/xrpc-server" "^0.10.3"
+ "@atproto/syntax" "^0.5.0"
+ "@atproto/xrpc-server" "^0.10.15"
multiformats "^9.9.0"
p-queue "^6.6.2"
ws "^8.12.0"
-"@atproto/syntax@0.4.3", "@atproto/syntax@^0.4.1", "@atproto/syntax@^0.4.2", "@atproto/syntax@^0.4.3":
+"@atproto/syntax@0.4.3":
version "0.4.3"
resolved "https://registry.yarnpkg.com/@atproto/syntax/-/syntax-0.4.3.tgz#3889469daa5458a3c8e27a2cb16016e89cfafaf9"
integrity sha512-YoZUz40YAJr5nPwvCDWgodEOlt5IftZqPJvA0JDWjuZKD8yXddTwSzXSaKQAzGOpuM+/A3uXRtPzJJqlScc+iA==
@@ -747,7 +643,7 @@
"@atproto/common" "^0.5.3"
ws "^8.12.0"
-"@atproto/xrpc-server@^0.10.0", "@atproto/xrpc-server@^0.10.3":
+"@atproto/xrpc-server@^0.10.0":
version "0.10.10"
resolved "https://registry.yarnpkg.com/@atproto/xrpc-server/-/xrpc-server-0.10.10.tgz#69d1a3ce8278a6b49286a5df33ebc204d42129ed"
integrity sha512-USDjOZGiletqzuWHC3Q2fk30hJDk4uYt6KPgvnZidShCouTf3hzwJZ8d2eOKOofSjGXW+GC0QYp7fYJFn6lZ2Q==
@@ -766,16 +662,19 @@
ws "^8.12.0"
zod "^3.23.8"
-"@atproto/xrpc-server@^0.10.12":
- version "0.10.12"
- resolved "https://registry.yarnpkg.com/@atproto/xrpc-server/-/xrpc-server-0.10.12.tgz#6b88c9af5d301302e5e177b5f982a3494e734d78"
- integrity sha512-HuciFHxvQfWtvq+dmH3vK9uXii49vqkJgZFLcHums1xMvLvNBY5bgtUBdpQdsdEuq8B4DTuanZRs+z3zGariyg==
+"@atproto/xrpc-server@^0.10.15":
+ version "0.10.15"
+ resolved "https://registry.yarnpkg.com/@atproto/xrpc-server/-/xrpc-server-0.10.15.tgz#c767437fdf7d64ec6cbc9c9cf97a27d2b62554b8"
+ integrity sha512-ryGVAKuLU0Nqkv25gsPzffJhxnCXwPOyBi+sNAfP7n+mDDwcumH6RWySEHoDDrTsGvAP2r8o2ZrLCWuzKm7vSg==
dependencies:
- "@atproto/common" "^0.5.11"
+ "@atproto/common" "^0.5.14"
"@atproto/crypto" "^0.4.5"
- "@atproto/lex-cbor" "^0.0.11"
- "@atproto/lex-data" "^0.0.11"
- "@atproto/lexicon" "^0.6.1"
+ "@atproto/lex-cbor" "^0.0.14"
+ "@atproto/lex-client" "^0.0.15"
+ "@atproto/lex-data" "^0.0.13"
+ "@atproto/lex-json" "^0.0.13"
+ "@atproto/lex-schema" "^0.0.14"
+ "@atproto/lexicon" "^0.6.2"
"@atproto/ws-client" "^0.0.4"
"@atproto/xrpc" "^0.7.7"
express "^4.17.2"
@@ -783,7 +682,6 @@
mime-types "^2.1.35"
rate-limiter-flexible "^2.4.1"
ws "^8.12.0"
- zod "^3.23.8"
"@atproto/xrpc@^0.7.6", "@atproto/xrpc@^0.7.7":
version "0.7.7"