···4646├── alf/ # Design system (ALF) - themes, atoms, tokens
4747├── components/ # Shared UI components (Button, Dialog, Menu, etc.)
4848├── screens/ # Full-page screen components (newer pattern)
4949+├── features/ # Macro-features that bridge components/screens
4950├── view/
5051│ ├── screens/ # Full-page screens (legacy location)
5152│ ├── com/ # Reusable view components
···5960├── locale/ # i18n configuration and language files
6061└── Navigation.tsx # Main navigation configuration
6162```
6363+6464+### Project Structure in Depth
6565+6666+When building new things, follow these guidelines for where to put code.
6767+6868+#### Components vs Screens vs Features
6969+7070+**Components** are reusable UI elements that are not full screens. Should be
7171+platform-agnostic when possible. Examples: Button, Dialog, Menu, TextField. Put
7272+these in `/components` if they are shared across screens.
7373+7474+**Screens** are full-page components that represent a route in the app. They
7575+often contain multiple components and handle layout for a page. New screens
7676+should go in `/screens` (not `/view/screens`) to encourage better organization
7777+and separation from legacy code.
7878+7979+For complex screens that have specific components or data needs that _are not
8080+shared by other screens_, we encourage subdirectoreis within `/screens/<name>`
8181+e.g. `/screens/ProfileScreen/ProfileScreen.tsx` and
8282+`/screens/ProfileScreen/components/`.
8383+8484+**Features** are higher-level modules that may include context, data fetching,
8585+components, and utilities related to a specific feature e.g.
8686+`/features/liveNow`. They don't neatly fit into components or screens and often
8787+span multiple screens. This is an optional pattern for organizing complex
8888+features.
8989+9090+#### Legacy Directories
9191+9292+For the most part, avoid writing new files into the `/view` directory and
9393+subdirectories. This is the older pattern for organizing screens and components,
9494+and it has become a bit disorganized over time. New development should go into
9595+`/screens`, `/components`, and `/features`.
9696+9797+#### State
9898+9999+The `/state` directory is where we've historically put all our data fetching and
100100+state management logic. This is perfectly fine, but for new features, consider
101101+organizing state logic closer to the components that use it, either within a
102102+feature directory or co-located with a screen. The key is to keep related code
103103+together and avoid having "god files" with too much unrelated logic.
104104+105105+#### Lib
106106+107107+The `/lib` directory is for utilities and helpers that don't fit into other
108108+categories. This can include things like API clients, formatting functions,
109109+constants, and other shared logic.
110110+111111+#### Top Level Directories
112112+113113+Avoid writing new top-level subdirectories within `/src`. We've done this for a
114114+few things in the past that, but we have stronger patterns now. Examples:
115115+`/logger` should probably have been written into `/lib`. And `ageAssurance` is
116116+better classified within `/features`. We will probably migrate these things
117117+eventually.
118118+119119+### File and Directory Naming Conventions
120120+121121+Typically JS style for variables, functions, etc. We use ProudCamelCase for
122122+components, and camelCase directories and files.
123123+124124+When organizing new code, consider if it fits into a single file, or if it
125125+should be broken down into multiple files. For "macro" component cases, or
126126+things that live in `/features` or `/screens`, we often follow a pattern of
127127+having an `index.tsx` for the main component, and then co-locating related
128128+components, hooks, and utilities in the same directory. For example:
129129+130130+```
131131+src
132132+├── screens/
133133+│ ├── ProfileScreen/
134134+│ │ ├── index.tsx # Main screen component
135135+│ │ ├── components/ # Sub-components used only by this screen
136136+```
137137+138138+Similar patterns can be found in `/features` and `/components`. The idea here is
139139+to keep related code together and make it easier to navigate.
140140+141141+You should ask yourself: if someone new was looking for the code related to this
142142+feature or screen, where would they expect to find it? Organizing code in a way
143143+that matches developer expectations can make the codebase much more
144144+approachable. Being able to say "Live Now stuff lives in `/features/liveNow`" is
145145+easier to understand than having it scattered across multiple directories.
146146+147147+No need to go overboard with this. If a component or feature fits into a single
148148+file, there's no reason to have a `/Component/index.tsx` file when it could just
149149+be `/Component.tsx`. Use your judgment based on the complexity and amount of
150150+related code.
151151+152152+#### Platform Specific Files
153153+154154+We have conflicting patterns in the app for this. The preferred approach is to
155155+group platform-specific files into a directory as much as possible. For example,
156156+rather than having `Component.tsx`, `Component.web.tsx`, and
157157+`Component.native.tsx` in the same directory, we prefer to have a `Component/`
158158+directory with `index.tsx`, `index.web.tsx`, and `index.native.tsx`. This keeps
159159+related code together and gives us a better visual cue that there are probably
160160+other files contained within this "macro" feature, whereas `Component.tsx` on
161161+its own looks more like a single component file.
162162+163163+### Documentation and Tests Within Features
164164+165165+For larger features or components, it's helpful to include a README.md file
166166+within the directory that explains the purpose of the feature, how it works, and
167167+any important implementation details. The `/Component/index.tsx` pattern lends
168168+itself well to this, since the `index.tsx` can be the main component file, and
169169+the `README.md` can provide documentation for the whole feature. This is
170170+optional, but can be a nice way to keep documentation close to the code it
171171+describes.
172172+173173+Similarly, if there are tests that are specific to a component or feature, it
174174+can be helpful to include them in the same directory, either as
175175+`Component.test.tsx` or in a `__tests__/` subdirectory. This keeps everything
176176+related to the component or feature in one place and makes it easier to find and
177177+maintain tests.
6217863179## Styling System (ALF)
64180
···11+# Translation
22+33+A hook for translating text on-device for inline display.
44+55+## Translating text
66+77+```tsx
88+const langPrefs = useLanguagePrefs()
99+const {translate} = useTranslate({key: post.uri})
1010+1111+// ...
1212+1313+void translate({
1414+ text: record.text,
1515+ targetLangCode: langPrefs.primaryLanguage,
1616+})
1717+```
1818+1919+## Clearing/hiding a translation
2020+2121+```tsx
2222+const {clearTranslation} = useTranslate({key: post.uri})
2323+2424+// ...
2525+2626+clearTranslation()
2727+```
2828+2929+## Rendering a translation
3030+3131+```tsx
3232+const {translationState} = useTranslate({key: post.uri})
3333+3434+// ...
3535+3636+switch (translationState.status) {
3737+ case 'idle':
3838+ // Default state; render a link that calls `translate`.
3939+ break;
4040+ case 'loading':
4141+ // On-device translation is in progress; render a loading spinner.
4242+ break;
4343+ case 'success':
4444+ // Translation complete; render `translationState.translatedText` and a link
4545+ // that calls `clearTranslation`.
4646+ break;
4747+ case 'error':
4848+ // On-device translation failed; render `translationState.message` and a
4949+ // link to `translate` from `useGoogleTranslate` as a fallback.
5050+ break;
5151+}
5252+```
5353+5454+## Notes
5555+5656+* Android only supports two-letter language codes.
5757+ * For example, this means it doesn’t differentiate between `pt-BR` and `pt-PT`.
5858+* Android and iOS only support a subset of the language options we offer (iOS supports fewer than Android).
5959+* Individual language packs must be downloaded on iOS.
+19-19
src/locale/locales/an/messages.po
···88"Language: an\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Aragonese\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Texto alternativo"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Lo texto alternativo describe imáchens a usuarios ciegos u con baixa visión, y aduya a dar mas contexto a toz."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Cambiar"
···20202020msgid "Change report reason"
20212021msgstr "Cambiar la razón d'o reporte"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Editar la imachen"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Amagar esta respuesta?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Sacar d'as tuyas canals?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Eliminar la imachen"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Triar lo emoji {emojiName} como lo tuyo avatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Traducir"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Tornar a intentar"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+198-182
src/locale/locales/ar/messages.po
···88"Language: ar_SA\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Arabic, Saudi Arabia\n"
1414"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"
···558558#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0)
559559#. placeholder {0}: formatPostStatCount(post.likeCount)
560560#. placeholder {1}: post.likeCount
561561-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
561561+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:489
562562msgid "<0>{0}</0> {1, plural, one {like} other {likes}}"
563563msgstr ""
564564565565#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0)
566566#. placeholder {0}: formatPostStatCount(post.quoteCount)
567567#. placeholder {1}: post.quoteCount
568568-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
568568+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471
569569msgid "<0>{0}</0> {1, plural, one {quote} other {quotes}}"
570570msgstr ""
571571572572#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0)
573573#. placeholder {0}: formatPostStatCount(post.repostCount)
574574#. placeholder {1}: post.repostCount
575575-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465
575575+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
576576msgid "<0>{0}</0> {1, plural, one {repost} other {reposts}}"
577577msgstr ""
578578579579#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0)
580580#. placeholder {0}: formatPostStatCount(post.bookmarkCount)
581581#. placeholder {1}: post.bookmarkCount
582582-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:516
582582+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
583583msgid "<0>{0}</0> {1, plural, one {save} other {saves}}"
584584msgstr ""
585585···733733msgid "Account"
734734msgstr ""
735735736736-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:425
736736+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422
737737#: src/screens/Messages/components/RequestButtons.tsx:97
738738#: src/view/com/profile/ProfileMenu.tsx:182
739739msgctxt "toast"
···753753msgid "Account is deactivated"
754754msgstr ""
755755756756-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450
756756+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:447
757757#: src/view/com/profile/ProfileMenu.tsx:158
758758msgctxt "toast"
759759msgid "Account muted"
···792792msgid "Account unfollowed"
793793msgstr ""
794794795795-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:439
795795+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
796796#: src/view/com/profile/ProfileMenu.tsx:148
797797msgctxt "toast"
798798msgid "Account unmuted"
···844844msgstr ""
845845846846#: src/components/dialogs/SwitchAccount.tsx:56
847847-#: src/screens/Deactivated.tsx:186
847847+#: src/screens/Deactivated.tsx:184
848848msgid "Add account"
849849msgstr ""
850850851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:171
855855-#: src/view/com/composer/photos/Gallery.tsx:218
856856-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:97
857857-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:105
854854+#: src/view/com/composer/photos/Gallery.tsx:181
855855+#: src/view/com/composer/photos/Gallery.tsx:228
856856+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
859859msgstr ""
860860···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:189
11551155+#: src/view/com/composer/photos/Gallery.tsx:199
11561156msgid "ALT"
11571157msgstr ""
1158115811591159#: src/screens/Settings/AccessibilitySettings.tsx:55
11601160#: src/view/com/composer/GifAltText.tsx:157
11611161-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:130
11611161+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:132
11621162#: src/view/com/composer/videos/SubtitleDialog.tsx:41
11631163#: src/view/com/composer/videos/SubtitleDialog.tsx:59
11641164#: src/view/com/composer/videos/SubtitleDialog.tsx:110
···11701170msgid "Alt Text"
11711171msgstr ""
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:262
11731173+#: src/view/com/composer/photos/Gallery.tsx:273
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr ""
1176117611771177#. placeholder {0}: i18n.number(MAX_ALT_TEXT)
11781178#: src/view/com/composer/GifAltText.tsx:182
11791179-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:151
11791179+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
11801180msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
11811181msgstr ""
11821182···14421442msgstr ""
1443144314441444#. placeholder {0}: niceDate(i18n, createdAt, 'medium')
14451445-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:728
14451445+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623
14461446msgid "Archived from {0}"
14471447msgstr ""
1448144814491449-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
14501450-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:737
14491449+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:594
14501450+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
14511451msgid "Archived post"
14521452msgstr ""
14531453···15051505msgid "Artistic or non-erotic nudity."
15061506msgstr ""
1507150715081508-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563
15091509-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565
15081508+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:576
15091509+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
15101510msgid "Assign topic for algo"
15111511msgstr ""
15121512···15411541#: src/screens/Login/SetNewPasswordForm.tsx:178
15421542#: src/screens/Messages/components/ChatDisabled.tsx:146
15431543#: src/screens/Messages/components/ChatDisabled.tsx:147
15441544-#: src/screens/Profile/Header/Shell.tsx:179
15441544+#: src/screens/Profile/Header/Shell.tsx:184
15451545#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
15461546#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
15471547#: src/screens/Signup/BackNextButtons.tsx:42
···16181618msgid "Birthday"
16191619msgstr ""
1620162016211621-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:826
16211621+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:814
16221622#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
16231623#: src/view/com/profile/ProfileMenu.tsx:553
16241624msgid "Block"
···1626162616271627#: src/components/dms/ConvoMenu.tsx:273
16281628#: src/components/dms/ConvoMenu.tsx:276
16291629-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:711
16301630-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:713
16291629+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:716
16301630+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:718
16311631#: src/screens/Messages/components/RequestButtons.tsx:150
16321632#: src/screens/Messages/components/RequestButtons.tsx:152
16331633#: src/view/com/profile/ProfileMenu.tsx:459
···16351635msgid "Block account"
16361636msgstr ""
1637163716381638-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:821
16381638+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
16391639#: src/view/com/profile/ProfileMenu.tsx:536
16401640msgid "Block Account?"
16411641msgstr ""
···16871687msgid "Blocked Accounts"
16881688msgstr ""
1689168916901690-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:823
16901690+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812
16911691#: src/view/com/profile/ProfileMenu.tsx:548
16921692msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
16931693msgstr ""
···17171717msgid "Bluesky"
17181718msgstr ""
1719171917201720-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:753
17201720+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:648
17211721msgid "Bluesky cannot confirm the authenticity of the claimed date."
17221722msgstr ""
17231723···19211921#: src/features/liveNow/components/GoLiveDialog.tsx:248
19221922#: src/features/liveNow/components/GoLiveDialog.tsx:254
19231923#: src/lib/media/picker.tsx:38
19241924-#: src/screens/Deactivated.tsx:152
19241924+#: src/screens/Deactivated.tsx:150
19251925#: src/screens/Profile/Header/EditProfileDialog.tsx:219
19261926#: src/screens/Profile/Header/EditProfileDialog.tsx:227
19271927#: src/screens/Search/Shell.tsx:396
···19461946msgid "Cancel quote post"
19471947msgstr ""
1948194819491949-#: src/screens/Deactivated.tsx:146
19491949+#: src/screens/Deactivated.tsx:144
19501950msgid "Cancel reactivation and sign out"
19511951msgstr ""
19521952···19541954msgid "Cancel search"
19551955msgstr ""
1956195619571957-#: src/components/PostControls/index.tsx:108
19581958-#: src/components/PostControls/index.tsx:139
19591959-#: src/components/PostControls/index.tsx:167
19571957+#: src/components/PostControls/index.tsx:109
19581958+#: src/components/PostControls/index.tsx:138
19591959+#: src/components/PostControls/index.tsx:164
19601960#: src/state/shell/composer/index.tsx:108
19611961msgid "Cannot interact with a blocked user"
19621962msgstr ""
···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:150
19771977+#: src/components/Post/Translated/index.tsx:395
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr ""
···20202020msgid "Change report reason"
20212021msgstr ""
2022202220232023-#: src/components/Post/Translated/index.tsx:146
20242024-msgid "Change source language"
20232023+#: src/components/Post/Translated/index.tsx:385
20242024+msgid "Change the source language"
20252025msgstr ""
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
···26892689msgid "Copy post at:// URI"
26902690msgstr ""
2691269126922692-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:518
26932693-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520
26922692+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:531
26932693+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
26942694msgid "Copy post text"
26952695msgstr ""
26962696···29702970msgstr ""
2971297129722972#: src/components/dms/MessageContextMenu.tsx:204
29732973-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
29732973+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:772
29742974#: src/screens/Messages/components/ChatStatusInfo.tsx:55
29752975#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
29762976#: src/screens/Settings/AppPasswords.tsx:213
···30433043msgid "Delete my account"
30443044msgstr ""
3045304530463046-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:751
30473047-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753
30463046+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756
30473047+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758
30483048#: src/view/com/composer/Composer.tsx:1430
30493049msgid "Delete post"
30503050msgstr ""
···30623062msgid "Delete this list?"
30633063msgstr ""
3064306430653065-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765
30653065+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:769
30663066msgid "Delete this post?"
30673067msgstr ""
30683068···30933093msgstr ""
3094309430953095#: src/view/com/composer/GifAltText.tsx:153
30963096-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:126
30963096+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128
30973097msgid "Descriptive alt text"
30983098msgstr ""
3099309931003100-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:655
31013101-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665
31003100+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660
31013101+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:670
31023102msgid "Detach quote"
31033103msgstr ""
3104310431053105-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
31053105+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:797
31063106msgid "Detach quote post?"
31073107msgstr ""
31083108···31213121msgid "Developer options"
31223122msgstr ""
3123312331243124+#: src/lib/translation/index.tsx:265
31253125+msgid "Device failed to translate :("
31263126+msgstr ""
31273127+31243128#: src/components/WhoCanReply.tsx:222
31253129msgid "Dialog: adjust who can interact with this post"
31263130msgstr ""
···33403344msgid "Double tap to close the dialog"
33413345msgstr ""
3342334633433343-#: src/screens/VideoFeed/index.tsx:1119
33473347+#: src/screens/VideoFeed/index.tsx:1111
33443348msgid "Double tap to like"
33453349msgstr ""
33463350···3442344634433447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34443448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34453445-#: src/view/com/composer/photos/Gallery.tsx:196
34493449+#: src/view/com/composer/photos/Gallery.tsx:206
34463450msgid "Edit image"
34473451msgstr ""
3448345234493449-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
34503450-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745
34533453+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
34543454+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750
34513455msgid "Edit interaction settings"
34523456msgstr ""
34533457···38033807msgid "Expand post text"
38043808msgstr ""
3805380938063806-#: src/screens/VideoFeed/index.tsx:991
38103810+#: src/screens/VideoFeed/index.tsx:987
38073811msgid "Expands or collapses post text"
38083812msgstr ""
38093813···38463850msgid "Explicit sexual images."
38473851msgstr ""
3848385238493849-#: src/Navigation.tsx:808
38533853+#: src/Navigation.tsx:809
38503854#: src/screens/Search/Shell.tsx:354
38513855#: src/view/shell/desktop/LeftNav.tsx:689
38523856#: src/view/shell/Drawer.tsx:417
···39323936msgid "Failed to delete message"
39333937msgstr ""
3934393839353935-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:214
39393939+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219
39363940msgid "Failed to delete post, please try again"
39373941msgstr ""
39383942···40904094msgid "Failed to submit appeal, please try again."
40914095msgstr ""
4092409640934093-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:247
40974097+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:249
40944098msgid "Failed to toggle thread mute, please try again"
40954099msgstr ""
40964100···41814185msgid "Feedback"
41824186msgstr ""
4183418741844184-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:301
41854185-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:325
41884188+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303
41894189+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:326
41864190msgctxt "toast"
41874191msgid "Feedback sent to feed operator"
41884192msgstr ""
···43434347#: src/components/ProfileHoverCard/index.web.tsx:508
43444348#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:153
43454349#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:388
43464346-#: src/screens/VideoFeed/index.tsx:875
43504350+#: src/screens/VideoFeed/index.tsx:870
43474351#: src/view/com/notifications/NotificationFeedItem.tsx:841
43484352#: src/view/com/notifications/NotificationFeedItem.tsx:848
43494353msgid "Follow"
···43554359msgid "Follow {0}"
43564360msgstr ""
4357436143584358-#: src/screens/VideoFeed/index.tsx:852
43624362+#: src/screens/VideoFeed/index.tsx:849
43594363msgid "Follow {handle}"
43604364msgstr ""
43614365···44504454#: src/components/ProfileHoverCard/index.web.tsx:507
44514455#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:156
44524456#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:384
44534453-#: src/screens/VideoFeed/index.tsx:873
44574457+#: src/screens/VideoFeed/index.tsx:868
44544458#: src/view/com/notifications/NotificationFeedItem.tsx:819
44554459#: src/view/com/notifications/NotificationFeedItem.tsx:836
44564460msgid "Following"
···44714475msgid "Following {0}"
44724476msgstr ""
4473447744744474-#: src/screens/VideoFeed/index.tsx:851
44784478+#: src/screens/VideoFeed/index.tsx:848
44754479msgid "Following {handle}"
44764480msgstr ""
44774481···46804684#: src/screens/ProfileList/components/ErrorScreen.tsx:35
46814685#: src/screens/ProfileList/components/ErrorScreen.tsx:41
46824686#: src/screens/VideoFeed/components/Header.tsx:163
46834683-#: src/screens/VideoFeed/index.tsx:1180
46844684-#: src/screens/VideoFeed/index.tsx:1184
46854685-#: src/view/com/auth/LoggedOut.tsx:92
46874687+#: src/screens/VideoFeed/index.tsx:1172
46884688+#: src/screens/VideoFeed/index.tsx:1176
46894689+#: src/view/com/auth/LoggedOut.tsx:93
46864690#: src/view/com/profile/ProfileFollowers.tsx:178
46874691#: src/view/com/profile/ProfileFollowers.tsx:179
46884692#: src/view/screens/NotFound.tsx:58
···49094913msgid "Hidden"
49104914msgstr ""
4911491549124912-#: src/screens/VideoFeed/index.tsx:648
49164916+#: src/screens/VideoFeed/index.tsx:647
49134917msgid "Hidden by your moderation settings."
49144918msgstr ""
49154919···49224926#: src/components/moderation/ContentHider.tsx:220
49234927#: src/components/moderation/LabelPreference.tsx:141
49244928#: src/components/moderation/PostHider.tsx:140
49254925-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781
49294929+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:780
49264930#: src/lib/moderation/useLabelBehaviorDescription.ts:18
49274931#: src/lib/moderation/useLabelBehaviorDescription.ts:23
49284932#: src/lib/moderation/useLabelBehaviorDescription.ts:28
···49494953msgid "Hide lists"
49504954msgstr ""
4951495549524952-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:612
49534953-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618
49564956+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
49574957+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
49544958msgid "Hide post for me"
49554959msgstr ""
4956496049574957-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
49584958-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:639
49614961+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
49624962+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:644
49594963msgid "Hide reply for everyone"
49604964msgstr ""
4961496549624962-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:611
49634963-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:617
49664966+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
49674967+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
49644968msgid "Hide reply for me"
49654969msgstr ""
49664970···49734977msgid "Hide this event"
49744978msgstr ""
4975497949764976-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
49804980+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
49774981msgid "Hide this post?"
49784982msgstr ""
4979498349804980-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
49814981-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
49844984+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
49854985+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:804
49824986msgid "Hide this reply?"
49834987msgstr ""
4984498849854985-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
49864986-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
49894989+#: src/components/Post/Translated/index.tsx:192
49904990+#: src/components/Post/Translated/index.tsx:318
49914991+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49874993msgid "Hide translation"
49884994msgstr ""
49894995···50505056msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
50515057msgstr ""
5052505850535053-#: src/Navigation.tsx:803
50545054-#: src/Navigation.tsx:823
50595059+#: src/Navigation.tsx:804
50605060+#: src/Navigation.tsx:824
50555061#: src/view/shell/bottom-bar/BottomBar.tsx:177
50565062#: src/view/shell/desktop/LeftNav.tsx:671
50575063#: src/view/shell/Drawer.tsx:443
···51525158msgid "If you need to update your email, <0>click here</0>."
51535159msgstr ""
5154516051555155-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767
51615161+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
51565162msgid "If you remove this post, you won't be able to recover it."
51575163msgstr ""
51585164···53225328msgid "Invalid handle. Please try a different one."
53235329msgstr ""
5324533053255325-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:397
53315331+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:396
53265332msgctxt "toast"
53275333msgid "Invalid interaction settings."
53285334msgstr ""
···5637564356385644#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
56395645#. placeholder {0}: post.likeCount || 0
56405640-#: src/components/PostControls/index.tsx:288
56465646+#: src/components/PostControls/index.tsx:278
56415647msgid "Like ({0, plural, one {# like} other {# likes}})"
56425648msgstr ""
56435649···57045710msgid "Likes of your reposts notifications"
57055711msgstr ""
5706571257075707-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:499
57135713+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
57085714msgid "Likes on this post"
57095715msgstr ""
57105716···60516057msgid "Message options"
60526058msgstr ""
6053605960546054-#: src/Navigation.tsx:818
60606060+#: src/Navigation.tsx:819
60556061msgid "Messages"
60566062msgstr ""
60576063···61846190msgid "Mute {0}"
61856191msgstr ""
6186619261876187-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
61886188-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700
61936193+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
61946194+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705
61896195#: src/view/com/profile/ProfileMenu.tsx:438
61906196#: src/view/com/profile/ProfileMenu.tsx:445
61916197msgid "Mute account"
···62376243msgid "Mute this word until you unmute it"
62386244msgstr ""
6239624562406240-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
62416241-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
62466246+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
62476247+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
62426248msgid "Mute thread"
62436249msgstr ""
6244625062456245-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592
62466246-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594
62516251+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:603
62526252+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:605
62476253msgid "Mute words & tags"
62486254msgstr ""
62496255···67266732msgstr ""
6727673367286734#: src/Navigation.tsx:575
67296729-#: src/Navigation.tsx:813
67356735+#: src/Navigation.tsx:814
67306736#: src/screens/Notifications/ActivityList.tsx:31
67316737#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
67326738#: src/screens/Settings/NotificationSettings/index.tsx:93
···67906796msgstr ""
6791679767926798#: src/screens/Login/PasswordUpdatedForm.tsx:37
67936793-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:759
67996799+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:654
67946800msgid "Okay"
67956801msgstr ""
67966802···69286934msgid "Open pack"
69296935msgstr ""
6930693669316931-#: src/components/PostControls/PostMenu/index.tsx:66
69376937+#: src/components/PostControls/PostMenu/index.tsx:67
69326938msgid "Open post options menu"
69336939msgstr ""
69346940···70607066msgid "Options:"
70617067msgstr ""
7062706870637063-#: src/screens/Deactivated.tsx:194
70697069+#: src/screens/Deactivated.tsx:192
70647070msgid "Or, continue with another account."
70657071msgstr ""
7066707270677067-#: src/screens/Deactivated.tsx:181
70737073+#: src/screens/Deactivated.tsx:179
70687074msgid "Or, sign in to one of your other accounts."
70697075msgstr ""
70707076···72607266msgid "Pin to Home"
72617267msgstr ""
7262726872637263-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:486
72647264-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493
72697269+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
72707270+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
72657271msgid "Pin to your profile"
72667272msgstr ""
72677273···75247530msgid "Post by @{0}"
75257531msgstr ""
7526753275277527-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:194
75337533+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199
75287534msgctxt "toast"
75297535msgid "Post deleted"
75307536msgstr ""
···75337539msgid "Post failed to upload. Please check your Internet connection and try again."
75347540msgstr ""
7535754175367536-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:143
75377537-#: src/screens/PostThread/components/ThreadItemPost.tsx:112
75387538-#: src/screens/PostThread/components/ThreadItemTreePost.tsx:108
75397539-#: src/screens/VideoFeed/index.tsx:552
75427542+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:130
75437543+#: src/screens/PostThread/components/ThreadItemPost.tsx:113
75447544+#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109
75457545+#: src/screens/VideoFeed/index.tsx:551
75407546msgid "Post has been deleted"
75417547msgstr ""
75427548···77037709#: src/view/shell/Drawer.tsx:80
77047710#: src/view/shell/Drawer.tsx:599
77057711msgid "Profile"
77127712+msgstr ""
77137713+77147714+#: src/screens/Profile/Header/Shell.tsx:174
77157715+msgid "Profile banner placeholder"
77067716msgstr ""
7707771777087718#: src/lib/strings/errors.ts:40
···77867796msgid "Quote post"
77877797msgstr ""
7788779877897789-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
77997799+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:346
77907800msgid "Quote post was re-attached"
77917801msgstr ""
7792780277937793-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
78037803+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
77947804msgid "Quote post was successfully detached"
77957805msgstr ""
77967806···78087818msgid "Quotes"
78097819msgstr ""
7810782078117811-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:481
78217821+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467
78127822msgid "Quotes of this post"
78137823msgstr ""
78147824···78207830msgid "Rate limit exceeded. Please try again later."
78217831msgstr ""
7822783278237823-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654
78247824-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664
78337833+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659
78347834+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
78257835msgid "Re-attach quote"
78267836msgstr ""
78277837···78297839msgid "React with {emoji}"
78307840msgstr ""
7831784178327832-#: src/screens/Deactivated.tsx:135
78427842+#: src/screens/Deactivated.tsx:133
78337843msgid "Reactivate your account"
78347844msgstr ""
78357845···78487858msgid "Read blog post"
78497859msgstr ""
7850786078517851-#: src/screens/VideoFeed/index.tsx:992
78617861+#: src/screens/VideoFeed/index.tsx:988
78527862msgid "Read less"
78537863msgstr ""
7854786478557855-#: src/screens/VideoFeed/index.tsx:992
78657865+#: src/screens/VideoFeed/index.tsx:988
78567866msgid "Read more"
78577867msgstr ""
78587868···80208030msgid "Remove from your feeds?"
80218031msgstr ""
8022803280238023-#: src/view/com/composer/photos/Gallery.tsx:205
80338033+#: src/view/com/composer/photos/Gallery.tsx:215
80248034msgid "Remove image"
80258035msgstr ""
80268036···8172818281738183#. Accessibility label for the reply button, verb form followed by number of replies and noun form
81748184#. placeholder {0}: post.replyCount || 0
81758175-#: src/components/PostControls/index.tsx:242
81858185+#: src/components/PostControls/index.tsx:236
81768186msgid "Reply ({0, plural, one {# reply} other {# replies}})"
81778187msgstr ""
81788188···81988208msgid "Reply sorting"
81998209msgstr ""
8200821082018201-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
82118211+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384
82028212msgctxt "toast"
82038213msgid "Reply visibility updated"
82048214msgstr ""
8205821582068206-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:382
82168216+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
82078217msgid "Reply was successfully hidden"
82088218msgstr ""
82098219···82468256msgid "Report message"
82478257msgstr ""
8248825882498249-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:720
82508250-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
82598259+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:725
82608260+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
82518261msgid "Report post"
82528262msgstr ""
82538263···83398349msgid "Reposts"
83408350msgstr ""
8341835183428342-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461
83528352+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:447
83438353msgid "Reposts of this post"
83448354msgstr ""
83458355···8482849284838493#: src/screens/ProfileList/components/ErrorScreen.tsx:36
84848494#: src/screens/Settings/components/ChangeHandleDialog.tsx:579
84858485-#: src/screens/VideoFeed/index.tsx:1181
84958495+#: src/screens/VideoFeed/index.tsx:1173
84868496#: src/view/screens/NotFound.tsx:61
84878497msgid "Returns to previous page"
84888498msgstr ""
···85088518#: src/view/com/composer/GifAltText.tsx:205
85098519#: src/view/com/composer/photos/EditImageDialog.web.tsx:63
85108520#: src/view/com/composer/photos/EditImageDialog.web.tsx:76
85118511-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:165
85128512-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:175
85218521+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:167
85228522+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:177
85138523msgid "Save"
85148524msgstr ""
85158525···89008910msgid "Select the {emojiName} emoji as your avatar"
89018911msgstr ""
8902891289038903-#: src/components/Post/Translated/index.tsx:156
89138913+#: src/components/Post/Translated/index.tsx:402
89048914msgid "Select the source language"
89058915msgstr ""
89068916···91999209#: src/components/moderation/ScreenHider.tsx:179
92009210#: src/components/moderation/ScreenHider.tsx:182
92019211#: src/screens/List/ListHiddenScreen.tsx:194
92029202-#: src/screens/VideoFeed/index.tsx:651
92039203-#: src/screens/VideoFeed/index.tsx:657
92129212+#: src/screens/VideoFeed/index.tsx:650
92139213+#: src/screens/VideoFeed/index.tsx:656
92049214msgid "Show anyway"
92059215msgstr ""
92069216···92179227msgid "Show customization options"
92189228msgstr ""
9219922992209220-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:549
92219221-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:551
92309230+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562
92319231+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564
92229232msgid "Show less like this"
92239233msgstr ""
92249234···92399249msgid "Show More"
92409250msgstr ""
9241925192429242-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:541
92439243-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
92529252+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
92539253+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556
92449254msgid "Show more like this"
92459255msgstr ""
92469256···92669276msgid "Show replies as"
92679277msgstr ""
9268927892699269-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:628
92709270-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
92799279+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
92809280+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643
92719281msgid "Show reply for everyone"
92729282msgstr ""
92739283···92949304msgid "Show when you’re live"
92959305msgstr ""
9296930692979297-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:700
93079307+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:595
92989308msgid "Shows information about when this post was created"
92999309msgstr ""
93009310···93409350msgid "Sign in as..."
93419351msgstr ""
9342935293439343-#: src/screens/Deactivated.tsx:197
93449344-#: src/screens/Deactivated.tsx:203
93539353+#: src/screens/Deactivated.tsx:195
93549354+#: src/screens/Deactivated.tsx:201
93459355msgid "Sign in or create an account"
93469356msgstr ""
93479357···93579367msgid "Sign in to Bluesky or create a new account"
93589368msgstr ""
9359936993609360-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
93619361-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:529
93709370+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540
93719371+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:542
93629372msgid "Sign in to view post"
93639373msgstr ""
93649374···9478948894799489#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
94809490#: src/components/moderation/ReportDialog/index.tsx:273
94819481-#: src/screens/Deactivated.tsx:88
94919491+#: src/screens/Deactivated.tsx:86
94829492#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
94839493#: src/view/screens/Storybook/Admonitions.tsx:56
94849494msgid "Something went wrong, please try again"
···95099519msgid "Sorry, we're unable to load account suggestions at this time."
95109520msgstr ""
9511952195129512-#: src/App.native.tsx:142
95139513-#: src/App.web.tsx:118
95229522+#: src/App.native.tsx:143
95239523+#: src/App.web.tsx:119
95149524msgid "Sorry! Your session expired. Please sign in again."
95159525msgstr ""
95169526···98969906msgid "That's all, folks!"
98979907msgstr ""
9898990898999899-#: src/screens/VideoFeed/index.tsx:1153
99099909+#: src/screens/VideoFeed/index.tsx:1145
99009910msgid "That's everything!"
99019911msgstr ""
99029912···1008210092msgstr ""
10083100931008410094#. placeholder {0}: e.toString()
1008510085-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:430
1008610086-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:444
1008710087-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455
1009510095+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
1009610096+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:441
1009710097+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:452
1008810098#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117
1008910099#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:128
1009010100#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90
···10309103191031010320#. placeholder {0}: niceDate(i18n, createdAt)
1031110321#. placeholder {1}: niceDate(i18n, indexedAt)
1031210312-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:740
1032210322+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
1031310323msgid "This post claims to have been created on <0>{0}</0>, but was first seen by Bluesky on <1>{1}</1>."
1031410324msgstr ""
1031510325···1033710347msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
1033810348msgstr ""
10339103491034010340-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:813
1035010350+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:805
1034110351msgid "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."
1034210352msgstr ""
1034310353···1041410424msgid "This will remove @{0} from the quick access list."
1041510425msgstr ""
10416104261041710417-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
1042710427+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
1041810428msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
1041910429msgstr ""
1042010430···10511105211051210522#: src/components/dms/MessageContextMenu.tsx:139
1051310523#: src/components/dms/MessageContextMenu.tsx:141
1051410514-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
1051510515-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:512
1051610516-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:640
1051710517-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
1052410524+#: src/components/Post/Translated/index.tsx:139
1052510525+#: src/components/Post/Translated/index.tsx:146
1052610526+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1051810528msgid "Translate"
1051910529msgstr ""
10520105301052110521-#: src/components/Post/Translated/index.tsx:78
1053110531+#: src/components/Post/Translated/index.tsx:292
1052210532msgid "Translated"
1052310533msgstr ""
10524105341052510525-#: src/components/Post/Translated/index.tsx:76
1052610526-msgid "Translated from {langName}"
1052710527-msgstr ""
1052810528-1052910529-#: src/components/Post/Translated/index.tsx:50
1053010530-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:626
1053510535+#: src/components/Post/Translated/index.tsx:89
1053610536+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053110538msgid "Translating…"
1053210539msgstr ""
1053310540···1056410571#: src/view/com/util/error/ErrorScreen.tsx:104
1056510572msgctxt "action"
1056610573msgid "Try again"
1057410574+msgstr ""
1057510575+1057610576+#: src/components/Post/Translated/index.tsx:205
1057710577+#: src/components/Post/Translated/index.tsx:213
1057810578+msgid "Try Google Translate"
1056710579msgstr ""
10568105801056910581#: src/lib/interests.ts:74
···1070110713msgid "Unfollow account"
1070210714msgstr ""
10703107151070410704-#: src/screens/VideoFeed/index.tsx:856
1071610716+#: src/screens/VideoFeed/index.tsx:852
1070510717msgid "Unfollows the user"
1070610718msgstr ""
1070710719···10735107471073610748#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
1073710749#. placeholder {0}: post.likeCount || 0
1073810738-#: src/components/PostControls/index.tsx:278
1075010750+#: src/components/PostControls/index.tsx:270
1073910751msgid "Unlike ({0, plural, one {# like} other {# likes}})"
1074010752msgstr ""
1074110753···1075610768msgid "Unmute {0}"
1075710769msgstr ""
10758107701075910759-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:693
1076010760-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
1077110771+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:698
1077210772+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:704
1076110773#: src/view/com/profile/ProfileMenu.tsx:437
1076210774#: src/view/com/profile/ProfileMenu.tsx:443
1076310775msgid "Unmute account"
···1077210784msgid "Unmute list"
1077310785msgstr ""
10774107861077510775-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
1077610776-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
1078710787+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
1078810788+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
1077710789msgid "Unmute thread"
1077810790msgstr ""
1077910791···1079810810msgid "Unpin from home"
1079910811msgstr ""
10800108121080110801-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
1080210802-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:492
1081310813+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
1081410814+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
1080310815msgid "Unpin from profile"
1080410816msgstr ""
1080510817···1087210884msgid "Update your email"
1087310885msgstr ""
10874108861087510875-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350
1088710887+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351
1087610888msgctxt "toast"
1087710889msgid "Updating quote attachment failed"
1087810890msgstr ""
10879108911088010880-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:402
1089210892+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
1088110893msgctxt "toast"
1088210894msgid "Updating reply visibility failed"
1088310895msgstr ""
···1117611188msgstr ""
11177111891117811190#. placeholder {0}: sanitizeHandle( post.author.handle, '@', )
1117911179-#: src/screens/VideoFeed/index.tsx:1114
1119111191+#: src/screens/VideoFeed/index.tsx:1107
1118011192msgid "Video from {0}. Tap to play or pause the video"
1118111193msgstr ""
1118211194···1118511197msgid "Video Games"
1118611198msgstr ""
11187111991118811188-#: src/screens/VideoFeed/index.tsx:1111
1120011200+#: src/screens/VideoFeed/index.tsx:1106
1118911201msgid "Video is paused"
1119011202msgstr ""
11191112031119211192-#: src/screens/VideoFeed/index.tsx:1111
1120411204+#: src/screens/VideoFeed/index.tsx:1106
1119311205msgid "Video is playing"
1119411206msgstr ""
1119511207···1122411236msgstr ""
11225112371122611238#. placeholder {0}: profile.handle
1122711227-#: src/screens/Profile/Header/Shell.tsx:262
1123911239+#: src/screens/Profile/Header/Shell.tsx:267
1122811240msgid "View {0}'s avatar"
1122911241msgstr ""
1123011242···1123311245#. placeholder {0}: profile.handle
1123411246#: src/screens/Profile/components/ProfileFeedHeader.tsx:459
1123511247#: src/screens/Search/components/SearchProfileCard.tsx:36
1123611236-#: src/screens/VideoFeed/index.tsx:815
1124811248+#: src/screens/VideoFeed/index.tsx:813
1123711249#: src/view/com/notifications/NotificationFeedItem.tsx:609
1123811250msgid "View {0}'s profile"
1123911251msgstr ""
···1125911271msgid "View debug entry"
1126011272msgstr ""
11261112731126211262-#: src/screens/VideoFeed/index.tsx:679
1126311263-#: src/screens/VideoFeed/index.tsx:697
1127411274+#: src/screens/VideoFeed/index.tsx:678
1127511275+#: src/screens/VideoFeed/index.tsx:696
1126411276msgid "View details"
1126511277msgstr ""
1126611278···1129611308msgid "View profile"
1129711309msgstr ""
11298113101131111311+#: src/screens/Profile/Header/Shell.tsx:173
1131211312+msgid "View profile banner"
1131311313+msgstr ""
1131411314+1129911315#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1130011316msgid "View the avatar"
1130111317msgstr ""
···1158511601msgid "We've confirmed your age assurance status. You can now close this dialog."
1158611602msgstr ""
11587116031158811588-#: src/screens/Deactivated.tsx:119
1160411604+#: src/screens/Deactivated.tsx:117
1158911605msgid "Welcome back!"
1159011606msgstr ""
1159111607···1173311749msgid "Yes, delete this starter pack"
1173411750msgstr ""
11735117511173611736-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:806
1175211752+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800
1173711753msgid "Yes, detach"
1173811754msgstr ""
11739117551174011740-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:816
1175611756+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:807
1174111757msgid "Yes, hide"
1174211758msgstr ""
11743117591174411744-#: src/screens/Deactivated.tsx:141
1176011760+#: src/screens/Deactivated.tsx:139
1174511761msgid "Yes, reactivate my account"
1174611762msgstr ""
1174711763···1186111877msgid "You can only select one video at a time."
1186211878msgstr ""
11863118791186411864-#: src/screens/Deactivated.tsx:127
1188011880+#: src/screens/Deactivated.tsx:125
1186511881msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
1186611882msgstr ""
1186711883···1205912075msgstr ""
12060120761206112077#. placeholder {0}: currentAccount?.handle
1206212062-#: src/screens/Deactivated.tsx:122
1207812078+#: src/screens/Deactivated.tsx:120
1206312079msgid "You previously deactivated @{0}."
1206412080msgstr ""
1206512081···1209312109msgid "You will no longer receive notifications for {0}"
1209412110msgstr ""
12095121111209612096-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:239
1211212112+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:243
1209712113msgid "You will no longer receive notifications for this thread"
1209812114msgstr ""
12099121151210012100-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:229
1211612116+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:234
1210112117msgid "You will now receive notifications for this thread"
1210212118msgstr ""
1210312119···1215212168msgid "You're in line"
1215312169msgstr ""
12154121701215512155-#: src/screens/Deactivated.tsx:83
1217112171+#: src/screens/Deactivated.tsx:81
1215612172#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
1215712173msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
1215812174msgstr ""
···1220212218msgid "You've reached your daily limit for video uploads (too many videos)"
1220312219msgstr ""
12204122201220512205-#: src/screens/VideoFeed/index.tsx:1162
1222112221+#: src/screens/VideoFeed/index.tsx:1154
1220612222msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
1220712223msgstr ""
1220812224
+19-19
src/locale/locales/ast/messages.po
···88"Language: ast\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Asturian\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Testu alternativu"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "El testu alternativu describe imáxenes pa persones ciegues o con problemes de visión y ayuda a dar contestu a tol mundu."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr ""
···20202020msgid "Change report reason"
20212021msgstr ""
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Editar la imaxe"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "¿Quies esconder esta rempuesta?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr ""
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr ""
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr ""
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Traducir"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Retentar"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+198-182
src/locale/locales/az/messages.po
···88"Language: az\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:46\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Azerbaijani\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···558558#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0)
559559#. placeholder {0}: formatPostStatCount(post.likeCount)
560560#. placeholder {1}: post.likeCount
561561-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
561561+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:489
562562msgid "<0>{0}</0> {1, plural, one {like} other {likes}}"
563563msgstr ""
564564565565#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0)
566566#. placeholder {0}: formatPostStatCount(post.quoteCount)
567567#. placeholder {1}: post.quoteCount
568568-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
568568+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471
569569msgid "<0>{0}</0> {1, plural, one {quote} other {quotes}}"
570570msgstr ""
571571572572#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0)
573573#. placeholder {0}: formatPostStatCount(post.repostCount)
574574#. placeholder {1}: post.repostCount
575575-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465
575575+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
576576msgid "<0>{0}</0> {1, plural, one {repost} other {reposts}}"
577577msgstr ""
578578579579#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0)
580580#. placeholder {0}: formatPostStatCount(post.bookmarkCount)
581581#. placeholder {1}: post.bookmarkCount
582582-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:516
582582+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
583583msgid "<0>{0}</0> {1, plural, one {save} other {saves}}"
584584msgstr ""
585585···733733msgid "Account"
734734msgstr ""
735735736736-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:425
736736+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422
737737#: src/screens/Messages/components/RequestButtons.tsx:97
738738#: src/view/com/profile/ProfileMenu.tsx:182
739739msgctxt "toast"
···753753msgid "Account is deactivated"
754754msgstr ""
755755756756-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450
756756+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:447
757757#: src/view/com/profile/ProfileMenu.tsx:158
758758msgctxt "toast"
759759msgid "Account muted"
···792792msgid "Account unfollowed"
793793msgstr ""
794794795795-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:439
795795+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
796796#: src/view/com/profile/ProfileMenu.tsx:148
797797msgctxt "toast"
798798msgid "Account unmuted"
···844844msgstr ""
845845846846#: src/components/dialogs/SwitchAccount.tsx:56
847847-#: src/screens/Deactivated.tsx:186
847847+#: src/screens/Deactivated.tsx:184
848848msgid "Add account"
849849msgstr ""
850850851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:171
855855-#: src/view/com/composer/photos/Gallery.tsx:218
856856-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:97
857857-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:105
854854+#: src/view/com/composer/photos/Gallery.tsx:181
855855+#: src/view/com/composer/photos/Gallery.tsx:228
856856+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
859859msgstr ""
860860···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:189
11551155+#: src/view/com/composer/photos/Gallery.tsx:199
11561156msgid "ALT"
11571157msgstr ""
1158115811591159#: src/screens/Settings/AccessibilitySettings.tsx:55
11601160#: src/view/com/composer/GifAltText.tsx:157
11611161-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:130
11611161+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:132
11621162#: src/view/com/composer/videos/SubtitleDialog.tsx:41
11631163#: src/view/com/composer/videos/SubtitleDialog.tsx:59
11641164#: src/view/com/composer/videos/SubtitleDialog.tsx:110
···11701170msgid "Alt Text"
11711171msgstr ""
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:262
11731173+#: src/view/com/composer/photos/Gallery.tsx:273
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr ""
1176117611771177#. placeholder {0}: i18n.number(MAX_ALT_TEXT)
11781178#: src/view/com/composer/GifAltText.tsx:182
11791179-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:151
11791179+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
11801180msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
11811181msgstr ""
11821182···14421442msgstr ""
1443144314441444#. placeholder {0}: niceDate(i18n, createdAt, 'medium')
14451445-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:728
14451445+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623
14461446msgid "Archived from {0}"
14471447msgstr ""
1448144814491449-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
14501450-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:737
14491449+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:594
14501450+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
14511451msgid "Archived post"
14521452msgstr ""
14531453···15051505msgid "Artistic or non-erotic nudity."
15061506msgstr ""
1507150715081508-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563
15091509-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565
15081508+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:576
15091509+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
15101510msgid "Assign topic for algo"
15111511msgstr ""
15121512···15411541#: src/screens/Login/SetNewPasswordForm.tsx:178
15421542#: src/screens/Messages/components/ChatDisabled.tsx:146
15431543#: src/screens/Messages/components/ChatDisabled.tsx:147
15441544-#: src/screens/Profile/Header/Shell.tsx:179
15441544+#: src/screens/Profile/Header/Shell.tsx:184
15451545#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
15461546#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
15471547#: src/screens/Signup/BackNextButtons.tsx:42
···16181618msgid "Birthday"
16191619msgstr ""
1620162016211621-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:826
16211621+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:814
16221622#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
16231623#: src/view/com/profile/ProfileMenu.tsx:553
16241624msgid "Block"
···1626162616271627#: src/components/dms/ConvoMenu.tsx:273
16281628#: src/components/dms/ConvoMenu.tsx:276
16291629-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:711
16301630-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:713
16291629+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:716
16301630+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:718
16311631#: src/screens/Messages/components/RequestButtons.tsx:150
16321632#: src/screens/Messages/components/RequestButtons.tsx:152
16331633#: src/view/com/profile/ProfileMenu.tsx:459
···16351635msgid "Block account"
16361636msgstr ""
1637163716381638-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:821
16381638+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
16391639#: src/view/com/profile/ProfileMenu.tsx:536
16401640msgid "Block Account?"
16411641msgstr ""
···16871687msgid "Blocked Accounts"
16881688msgstr ""
1689168916901690-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:823
16901690+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812
16911691#: src/view/com/profile/ProfileMenu.tsx:548
16921692msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
16931693msgstr ""
···17171717msgid "Bluesky"
17181718msgstr ""
1719171917201720-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:753
17201720+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:648
17211721msgid "Bluesky cannot confirm the authenticity of the claimed date."
17221722msgstr ""
17231723···19211921#: src/features/liveNow/components/GoLiveDialog.tsx:248
19221922#: src/features/liveNow/components/GoLiveDialog.tsx:254
19231923#: src/lib/media/picker.tsx:38
19241924-#: src/screens/Deactivated.tsx:152
19241924+#: src/screens/Deactivated.tsx:150
19251925#: src/screens/Profile/Header/EditProfileDialog.tsx:219
19261926#: src/screens/Profile/Header/EditProfileDialog.tsx:227
19271927#: src/screens/Search/Shell.tsx:396
···19461946msgid "Cancel quote post"
19471947msgstr ""
1948194819491949-#: src/screens/Deactivated.tsx:146
19491949+#: src/screens/Deactivated.tsx:144
19501950msgid "Cancel reactivation and sign out"
19511951msgstr ""
19521952···19541954msgid "Cancel search"
19551955msgstr ""
1956195619571957-#: src/components/PostControls/index.tsx:108
19581958-#: src/components/PostControls/index.tsx:139
19591959-#: src/components/PostControls/index.tsx:167
19571957+#: src/components/PostControls/index.tsx:109
19581958+#: src/components/PostControls/index.tsx:138
19591959+#: src/components/PostControls/index.tsx:164
19601960#: src/state/shell/composer/index.tsx:108
19611961msgid "Cannot interact with a blocked user"
19621962msgstr ""
···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:150
19771977+#: src/components/Post/Translated/index.tsx:395
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr ""
···20202020msgid "Change report reason"
20212021msgstr ""
2022202220232023-#: src/components/Post/Translated/index.tsx:146
20242024-msgid "Change source language"
20232023+#: src/components/Post/Translated/index.tsx:385
20242024+msgid "Change the source language"
20252025msgstr ""
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
···26892689msgid "Copy post at:// URI"
26902690msgstr ""
2691269126922692-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:518
26932693-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520
26922692+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:531
26932693+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
26942694msgid "Copy post text"
26952695msgstr ""
26962696···29702970msgstr ""
2971297129722972#: src/components/dms/MessageContextMenu.tsx:204
29732973-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
29732973+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:772
29742974#: src/screens/Messages/components/ChatStatusInfo.tsx:55
29752975#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
29762976#: src/screens/Settings/AppPasswords.tsx:213
···30433043msgid "Delete my account"
30443044msgstr ""
3045304530463046-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:751
30473047-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753
30463046+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756
30473047+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758
30483048#: src/view/com/composer/Composer.tsx:1430
30493049msgid "Delete post"
30503050msgstr ""
···30623062msgid "Delete this list?"
30633063msgstr ""
3064306430653065-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765
30653065+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:769
30663066msgid "Delete this post?"
30673067msgstr ""
30683068···30933093msgstr ""
3094309430953095#: src/view/com/composer/GifAltText.tsx:153
30963096-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:126
30963096+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128
30973097msgid "Descriptive alt text"
30983098msgstr ""
3099309931003100-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:655
31013101-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665
31003100+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660
31013101+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:670
31023102msgid "Detach quote"
31033103msgstr ""
3104310431053105-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
31053105+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:797
31063106msgid "Detach quote post?"
31073107msgstr ""
31083108···31213121msgid "Developer options"
31223122msgstr ""
3123312331243124+#: src/lib/translation/index.tsx:265
31253125+msgid "Device failed to translate :("
31263126+msgstr ""
31273127+31243128#: src/components/WhoCanReply.tsx:222
31253129msgid "Dialog: adjust who can interact with this post"
31263130msgstr ""
···33403344msgid "Double tap to close the dialog"
33413345msgstr ""
3342334633433343-#: src/screens/VideoFeed/index.tsx:1119
33473347+#: src/screens/VideoFeed/index.tsx:1111
33443348msgid "Double tap to like"
33453349msgstr ""
33463350···3442344634433447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34443448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34453445-#: src/view/com/composer/photos/Gallery.tsx:196
34493449+#: src/view/com/composer/photos/Gallery.tsx:206
34463450msgid "Edit image"
34473451msgstr ""
3448345234493449-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
34503450-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745
34533453+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
34543454+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750
34513455msgid "Edit interaction settings"
34523456msgstr ""
34533457···38033807msgid "Expand post text"
38043808msgstr ""
3805380938063806-#: src/screens/VideoFeed/index.tsx:991
38103810+#: src/screens/VideoFeed/index.tsx:987
38073811msgid "Expands or collapses post text"
38083812msgstr ""
38093813···38463850msgid "Explicit sexual images."
38473851msgstr ""
3848385238493849-#: src/Navigation.tsx:808
38533853+#: src/Navigation.tsx:809
38503854#: src/screens/Search/Shell.tsx:354
38513855#: src/view/shell/desktop/LeftNav.tsx:689
38523856#: src/view/shell/Drawer.tsx:417
···39323936msgid "Failed to delete message"
39333937msgstr ""
3934393839353935-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:214
39393939+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219
39363940msgid "Failed to delete post, please try again"
39373941msgstr ""
39383942···40904094msgid "Failed to submit appeal, please try again."
40914095msgstr ""
4092409640934093-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:247
40974097+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:249
40944098msgid "Failed to toggle thread mute, please try again"
40954099msgstr ""
40964100···41814185msgid "Feedback"
41824186msgstr ""
4183418741844184-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:301
41854185-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:325
41884188+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303
41894189+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:326
41864190msgctxt "toast"
41874191msgid "Feedback sent to feed operator"
41884192msgstr ""
···43434347#: src/components/ProfileHoverCard/index.web.tsx:508
43444348#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:153
43454349#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:388
43464346-#: src/screens/VideoFeed/index.tsx:875
43504350+#: src/screens/VideoFeed/index.tsx:870
43474351#: src/view/com/notifications/NotificationFeedItem.tsx:841
43484352#: src/view/com/notifications/NotificationFeedItem.tsx:848
43494353msgid "Follow"
···43554359msgid "Follow {0}"
43564360msgstr ""
4357436143584358-#: src/screens/VideoFeed/index.tsx:852
43624362+#: src/screens/VideoFeed/index.tsx:849
43594363msgid "Follow {handle}"
43604364msgstr ""
43614365···44504454#: src/components/ProfileHoverCard/index.web.tsx:507
44514455#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:156
44524456#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:384
44534453-#: src/screens/VideoFeed/index.tsx:873
44574457+#: src/screens/VideoFeed/index.tsx:868
44544458#: src/view/com/notifications/NotificationFeedItem.tsx:819
44554459#: src/view/com/notifications/NotificationFeedItem.tsx:836
44564460msgid "Following"
···44714475msgid "Following {0}"
44724476msgstr ""
4473447744744474-#: src/screens/VideoFeed/index.tsx:851
44784478+#: src/screens/VideoFeed/index.tsx:848
44754479msgid "Following {handle}"
44764480msgstr ""
44774481···46804684#: src/screens/ProfileList/components/ErrorScreen.tsx:35
46814685#: src/screens/ProfileList/components/ErrorScreen.tsx:41
46824686#: src/screens/VideoFeed/components/Header.tsx:163
46834683-#: src/screens/VideoFeed/index.tsx:1180
46844684-#: src/screens/VideoFeed/index.tsx:1184
46854685-#: src/view/com/auth/LoggedOut.tsx:92
46874687+#: src/screens/VideoFeed/index.tsx:1172
46884688+#: src/screens/VideoFeed/index.tsx:1176
46894689+#: src/view/com/auth/LoggedOut.tsx:93
46864690#: src/view/com/profile/ProfileFollowers.tsx:178
46874691#: src/view/com/profile/ProfileFollowers.tsx:179
46884692#: src/view/screens/NotFound.tsx:58
···49094913msgid "Hidden"
49104914msgstr ""
4911491549124912-#: src/screens/VideoFeed/index.tsx:648
49164916+#: src/screens/VideoFeed/index.tsx:647
49134917msgid "Hidden by your moderation settings."
49144918msgstr ""
49154919···49224926#: src/components/moderation/ContentHider.tsx:220
49234927#: src/components/moderation/LabelPreference.tsx:141
49244928#: src/components/moderation/PostHider.tsx:140
49254925-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781
49294929+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:780
49264930#: src/lib/moderation/useLabelBehaviorDescription.ts:18
49274931#: src/lib/moderation/useLabelBehaviorDescription.ts:23
49284932#: src/lib/moderation/useLabelBehaviorDescription.ts:28
···49494953msgid "Hide lists"
49504954msgstr ""
4951495549524952-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:612
49534953-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618
49564956+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
49574957+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
49544958msgid "Hide post for me"
49554959msgstr ""
4956496049574957-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
49584958-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:639
49614961+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
49624962+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:644
49594963msgid "Hide reply for everyone"
49604964msgstr ""
4961496549624962-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:611
49634963-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:617
49664966+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
49674967+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
49644968msgid "Hide reply for me"
49654969msgstr ""
49664970···49734977msgid "Hide this event"
49744978msgstr ""
4975497949764976-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
49804980+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
49774981msgid "Hide this post?"
49784982msgstr ""
4979498349804980-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
49814981-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
49844984+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
49854985+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:804
49824986msgid "Hide this reply?"
49834987msgstr ""
4984498849854985-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
49864986-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
49894989+#: src/components/Post/Translated/index.tsx:192
49904990+#: src/components/Post/Translated/index.tsx:318
49914991+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49874993msgid "Hide translation"
49884994msgstr ""
49894995···50505056msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
50515057msgstr ""
5052505850535053-#: src/Navigation.tsx:803
50545054-#: src/Navigation.tsx:823
50595059+#: src/Navigation.tsx:804
50605060+#: src/Navigation.tsx:824
50555061#: src/view/shell/bottom-bar/BottomBar.tsx:177
50565062#: src/view/shell/desktop/LeftNav.tsx:671
50575063#: src/view/shell/Drawer.tsx:443
···51525158msgid "If you need to update your email, <0>click here</0>."
51535159msgstr ""
5154516051555155-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767
51615161+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
51565162msgid "If you remove this post, you won't be able to recover it."
51575163msgstr ""
51585164···53225328msgid "Invalid handle. Please try a different one."
53235329msgstr ""
5324533053255325-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:397
53315331+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:396
53265332msgctxt "toast"
53275333msgid "Invalid interaction settings."
53285334msgstr ""
···5637564356385644#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
56395645#. placeholder {0}: post.likeCount || 0
56405640-#: src/components/PostControls/index.tsx:288
56465646+#: src/components/PostControls/index.tsx:278
56415647msgid "Like ({0, plural, one {# like} other {# likes}})"
56425648msgstr ""
56435649···57045710msgid "Likes of your reposts notifications"
57055711msgstr ""
5706571257075707-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:499
57135713+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
57085714msgid "Likes on this post"
57095715msgstr ""
57105716···60516057msgid "Message options"
60526058msgstr ""
6053605960546054-#: src/Navigation.tsx:818
60606060+#: src/Navigation.tsx:819
60556061msgid "Messages"
60566062msgstr ""
60576063···61846190msgid "Mute {0}"
61856191msgstr ""
6186619261876187-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
61886188-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700
61936193+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
61946194+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705
61896195#: src/view/com/profile/ProfileMenu.tsx:438
61906196#: src/view/com/profile/ProfileMenu.tsx:445
61916197msgid "Mute account"
···62376243msgid "Mute this word until you unmute it"
62386244msgstr ""
6239624562406240-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
62416241-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
62466246+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
62476247+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
62426248msgid "Mute thread"
62436249msgstr ""
6244625062456245-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592
62466246-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594
62516251+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:603
62526252+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:605
62476253msgid "Mute words & tags"
62486254msgstr ""
62496255···67266732msgstr ""
6727673367286734#: src/Navigation.tsx:575
67296729-#: src/Navigation.tsx:813
67356735+#: src/Navigation.tsx:814
67306736#: src/screens/Notifications/ActivityList.tsx:31
67316737#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
67326738#: src/screens/Settings/NotificationSettings/index.tsx:93
···67906796msgstr ""
6791679767926798#: src/screens/Login/PasswordUpdatedForm.tsx:37
67936793-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:759
67996799+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:654
67946800msgid "Okay"
67956801msgstr ""
67966802···69286934msgid "Open pack"
69296935msgstr ""
6930693669316931-#: src/components/PostControls/PostMenu/index.tsx:66
69376937+#: src/components/PostControls/PostMenu/index.tsx:67
69326938msgid "Open post options menu"
69336939msgstr ""
69346940···70607066msgid "Options:"
70617067msgstr ""
7062706870637063-#: src/screens/Deactivated.tsx:194
70697069+#: src/screens/Deactivated.tsx:192
70647070msgid "Or, continue with another account."
70657071msgstr ""
7066707270677067-#: src/screens/Deactivated.tsx:181
70737073+#: src/screens/Deactivated.tsx:179
70687074msgid "Or, sign in to one of your other accounts."
70697075msgstr ""
70707076···72607266msgid "Pin to Home"
72617267msgstr ""
7262726872637263-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:486
72647264-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493
72697269+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
72707270+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
72657271msgid "Pin to your profile"
72667272msgstr ""
72677273···75247530msgid "Post by @{0}"
75257531msgstr ""
7526753275277527-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:194
75337533+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199
75287534msgctxt "toast"
75297535msgid "Post deleted"
75307536msgstr ""
···75337539msgid "Post failed to upload. Please check your Internet connection and try again."
75347540msgstr ""
7535754175367536-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:143
75377537-#: src/screens/PostThread/components/ThreadItemPost.tsx:112
75387538-#: src/screens/PostThread/components/ThreadItemTreePost.tsx:108
75397539-#: src/screens/VideoFeed/index.tsx:552
75427542+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:130
75437543+#: src/screens/PostThread/components/ThreadItemPost.tsx:113
75447544+#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109
75457545+#: src/screens/VideoFeed/index.tsx:551
75407546msgid "Post has been deleted"
75417547msgstr ""
75427548···77037709#: src/view/shell/Drawer.tsx:80
77047710#: src/view/shell/Drawer.tsx:599
77057711msgid "Profile"
77127712+msgstr ""
77137713+77147714+#: src/screens/Profile/Header/Shell.tsx:174
77157715+msgid "Profile banner placeholder"
77067716msgstr ""
7707771777087718#: src/lib/strings/errors.ts:40
···77867796msgid "Quote post"
77877797msgstr ""
7788779877897789-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
77997799+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:346
77907800msgid "Quote post was re-attached"
77917801msgstr ""
7792780277937793-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
78037803+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
77947804msgid "Quote post was successfully detached"
77957805msgstr ""
77967806···78087818msgid "Quotes"
78097819msgstr ""
7810782078117811-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:481
78217821+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467
78127822msgid "Quotes of this post"
78137823msgstr ""
78147824···78207830msgid "Rate limit exceeded. Please try again later."
78217831msgstr ""
7822783278237823-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654
78247824-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664
78337833+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659
78347834+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
78257835msgid "Re-attach quote"
78267836msgstr ""
78277837···78297839msgid "React with {emoji}"
78307840msgstr ""
7831784178327832-#: src/screens/Deactivated.tsx:135
78427842+#: src/screens/Deactivated.tsx:133
78337843msgid "Reactivate your account"
78347844msgstr ""
78357845···78487858msgid "Read blog post"
78497859msgstr ""
7850786078517851-#: src/screens/VideoFeed/index.tsx:992
78617861+#: src/screens/VideoFeed/index.tsx:988
78527862msgid "Read less"
78537863msgstr ""
7854786478557855-#: src/screens/VideoFeed/index.tsx:992
78657865+#: src/screens/VideoFeed/index.tsx:988
78567866msgid "Read more"
78577867msgstr ""
78587868···80208030msgid "Remove from your feeds?"
80218031msgstr ""
8022803280238023-#: src/view/com/composer/photos/Gallery.tsx:205
80338033+#: src/view/com/composer/photos/Gallery.tsx:215
80248034msgid "Remove image"
80258035msgstr ""
80268036···8172818281738183#. Accessibility label for the reply button, verb form followed by number of replies and noun form
81748184#. placeholder {0}: post.replyCount || 0
81758175-#: src/components/PostControls/index.tsx:242
81858185+#: src/components/PostControls/index.tsx:236
81768186msgid "Reply ({0, plural, one {# reply} other {# replies}})"
81778187msgstr ""
81788188···81988208msgid "Reply sorting"
81998209msgstr ""
8200821082018201-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
82118211+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384
82028212msgctxt "toast"
82038213msgid "Reply visibility updated"
82048214msgstr ""
8205821582068206-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:382
82168216+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
82078217msgid "Reply was successfully hidden"
82088218msgstr ""
82098219···82468256msgid "Report message"
82478257msgstr ""
8248825882498249-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:720
82508250-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
82598259+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:725
82608260+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
82518261msgid "Report post"
82528262msgstr ""
82538263···83398349msgid "Reposts"
83408350msgstr ""
8341835183428342-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461
83528352+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:447
83438353msgid "Reposts of this post"
83448354msgstr ""
83458355···8482849284838493#: src/screens/ProfileList/components/ErrorScreen.tsx:36
84848494#: src/screens/Settings/components/ChangeHandleDialog.tsx:579
84858485-#: src/screens/VideoFeed/index.tsx:1181
84958495+#: src/screens/VideoFeed/index.tsx:1173
84868496#: src/view/screens/NotFound.tsx:61
84878497msgid "Returns to previous page"
84888498msgstr ""
···85088518#: src/view/com/composer/GifAltText.tsx:205
85098519#: src/view/com/composer/photos/EditImageDialog.web.tsx:63
85108520#: src/view/com/composer/photos/EditImageDialog.web.tsx:76
85118511-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:165
85128512-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:175
85218521+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:167
85228522+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:177
85138523msgid "Save"
85148524msgstr ""
85158525···89008910msgid "Select the {emojiName} emoji as your avatar"
89018911msgstr ""
8902891289038903-#: src/components/Post/Translated/index.tsx:156
89138913+#: src/components/Post/Translated/index.tsx:402
89048914msgid "Select the source language"
89058915msgstr ""
89068916···91999209#: src/components/moderation/ScreenHider.tsx:179
92009210#: src/components/moderation/ScreenHider.tsx:182
92019211#: src/screens/List/ListHiddenScreen.tsx:194
92029202-#: src/screens/VideoFeed/index.tsx:651
92039203-#: src/screens/VideoFeed/index.tsx:657
92129212+#: src/screens/VideoFeed/index.tsx:650
92139213+#: src/screens/VideoFeed/index.tsx:656
92049214msgid "Show anyway"
92059215msgstr ""
92069216···92179227msgid "Show customization options"
92189228msgstr ""
9219922992209220-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:549
92219221-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:551
92309230+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562
92319231+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564
92229232msgid "Show less like this"
92239233msgstr ""
92249234···92399249msgid "Show More"
92409250msgstr ""
9241925192429242-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:541
92439243-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
92529252+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
92539253+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556
92449254msgid "Show more like this"
92459255msgstr ""
92469256···92669276msgid "Show replies as"
92679277msgstr ""
9268927892699269-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:628
92709270-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
92799279+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
92809280+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643
92719281msgid "Show reply for everyone"
92729282msgstr ""
92739283···92949304msgid "Show when you’re live"
92959305msgstr ""
9296930692979297-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:700
93079307+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:595
92989308msgid "Shows information about when this post was created"
92999309msgstr ""
93009310···93409350msgid "Sign in as..."
93419351msgstr ""
9342935293439343-#: src/screens/Deactivated.tsx:197
93449344-#: src/screens/Deactivated.tsx:203
93539353+#: src/screens/Deactivated.tsx:195
93549354+#: src/screens/Deactivated.tsx:201
93459355msgid "Sign in or create an account"
93469356msgstr ""
93479357···93579367msgid "Sign in to Bluesky or create a new account"
93589368msgstr ""
9359936993609360-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
93619361-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:529
93709370+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540
93719371+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:542
93629372msgid "Sign in to view post"
93639373msgstr ""
93649374···9478948894799489#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
94809490#: src/components/moderation/ReportDialog/index.tsx:273
94819481-#: src/screens/Deactivated.tsx:88
94919491+#: src/screens/Deactivated.tsx:86
94829492#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
94839493#: src/view/screens/Storybook/Admonitions.tsx:56
94849494msgid "Something went wrong, please try again"
···95099519msgid "Sorry, we're unable to load account suggestions at this time."
95109520msgstr ""
9511952195129512-#: src/App.native.tsx:142
95139513-#: src/App.web.tsx:118
95229522+#: src/App.native.tsx:143
95239523+#: src/App.web.tsx:119
95149524msgid "Sorry! Your session expired. Please sign in again."
95159525msgstr ""
95169526···98969906msgid "That's all, folks!"
98979907msgstr ""
9898990898999899-#: src/screens/VideoFeed/index.tsx:1153
99099909+#: src/screens/VideoFeed/index.tsx:1145
99009910msgid "That's everything!"
99019911msgstr ""
99029912···1008210092msgstr ""
10083100931008410094#. placeholder {0}: e.toString()
1008510085-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:430
1008610086-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:444
1008710087-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455
1009510095+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
1009610096+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:441
1009710097+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:452
1008810098#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117
1008910099#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:128
1009010100#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90
···10309103191031010320#. placeholder {0}: niceDate(i18n, createdAt)
1031110321#. placeholder {1}: niceDate(i18n, indexedAt)
1031210312-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:740
1032210322+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
1031310323msgid "This post claims to have been created on <0>{0}</0>, but was first seen by Bluesky on <1>{1}</1>."
1031410324msgstr ""
1031510325···1033710347msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
1033810348msgstr ""
10339103491034010340-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:813
1035010350+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:805
1034110351msgid "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."
1034210352msgstr ""
1034310353···1041410424msgid "This will remove @{0} from the quick access list."
1041510425msgstr ""
10416104261041710417-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
1042710427+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
1041810428msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
1041910429msgstr ""
1042010430···10511105211051210522#: src/components/dms/MessageContextMenu.tsx:139
1051310523#: src/components/dms/MessageContextMenu.tsx:141
1051410514-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
1051510515-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:512
1051610516-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:640
1051710517-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
1052410524+#: src/components/Post/Translated/index.tsx:139
1052510525+#: src/components/Post/Translated/index.tsx:146
1052610526+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1051810528msgid "Translate"
1051910529msgstr ""
10520105301052110521-#: src/components/Post/Translated/index.tsx:78
1053110531+#: src/components/Post/Translated/index.tsx:292
1052210532msgid "Translated"
1052310533msgstr ""
10524105341052510525-#: src/components/Post/Translated/index.tsx:76
1052610526-msgid "Translated from {langName}"
1052710527-msgstr ""
1052810528-1052910529-#: src/components/Post/Translated/index.tsx:50
1053010530-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:626
1053510535+#: src/components/Post/Translated/index.tsx:89
1053610536+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053110538msgid "Translating…"
1053210539msgstr ""
1053310540···1056410571#: src/view/com/util/error/ErrorScreen.tsx:104
1056510572msgctxt "action"
1056610573msgid "Try again"
1057410574+msgstr ""
1057510575+1057610576+#: src/components/Post/Translated/index.tsx:205
1057710577+#: src/components/Post/Translated/index.tsx:213
1057810578+msgid "Try Google Translate"
1056710579msgstr ""
10568105801056910581#: src/lib/interests.ts:74
···1070110713msgid "Unfollow account"
1070210714msgstr ""
10703107151070410704-#: src/screens/VideoFeed/index.tsx:856
1071610716+#: src/screens/VideoFeed/index.tsx:852
1070510717msgid "Unfollows the user"
1070610718msgstr ""
1070710719···10735107471073610748#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
1073710749#. placeholder {0}: post.likeCount || 0
1073810738-#: src/components/PostControls/index.tsx:278
1075010750+#: src/components/PostControls/index.tsx:270
1073910751msgid "Unlike ({0, plural, one {# like} other {# likes}})"
1074010752msgstr ""
1074110753···1075610768msgid "Unmute {0}"
1075710769msgstr ""
10758107701075910759-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:693
1076010760-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
1077110771+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:698
1077210772+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:704
1076110773#: src/view/com/profile/ProfileMenu.tsx:437
1076210774#: src/view/com/profile/ProfileMenu.tsx:443
1076310775msgid "Unmute account"
···1077210784msgid "Unmute list"
1077310785msgstr ""
10774107861077510775-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
1077610776-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
1078710787+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
1078810788+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
1077710789msgid "Unmute thread"
1077810790msgstr ""
1077910791···1079810810msgid "Unpin from home"
1079910811msgstr ""
10800108121080110801-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
1080210802-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:492
1081310813+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
1081410814+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
1080310815msgid "Unpin from profile"
1080410816msgstr ""
1080510817···1087210884msgid "Update your email"
1087310885msgstr ""
10874108861087510875-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350
1088710887+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351
1087610888msgctxt "toast"
1087710889msgid "Updating quote attachment failed"
1087810890msgstr ""
10879108911088010880-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:402
1089210892+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
1088110893msgctxt "toast"
1088210894msgid "Updating reply visibility failed"
1088310895msgstr ""
···1117611188msgstr ""
11177111891117811190#. placeholder {0}: sanitizeHandle( post.author.handle, '@', )
1117911179-#: src/screens/VideoFeed/index.tsx:1114
1119111191+#: src/screens/VideoFeed/index.tsx:1107
1118011192msgid "Video from {0}. Tap to play or pause the video"
1118111193msgstr ""
1118211194···1118511197msgid "Video Games"
1118611198msgstr ""
11187111991118811188-#: src/screens/VideoFeed/index.tsx:1111
1120011200+#: src/screens/VideoFeed/index.tsx:1106
1118911201msgid "Video is paused"
1119011202msgstr ""
11191112031119211192-#: src/screens/VideoFeed/index.tsx:1111
1120411204+#: src/screens/VideoFeed/index.tsx:1106
1119311205msgid "Video is playing"
1119411206msgstr ""
1119511207···1122411236msgstr ""
11225112371122611238#. placeholder {0}: profile.handle
1122711227-#: src/screens/Profile/Header/Shell.tsx:262
1123911239+#: src/screens/Profile/Header/Shell.tsx:267
1122811240msgid "View {0}'s avatar"
1122911241msgstr ""
1123011242···1123311245#. placeholder {0}: profile.handle
1123411246#: src/screens/Profile/components/ProfileFeedHeader.tsx:459
1123511247#: src/screens/Search/components/SearchProfileCard.tsx:36
1123611236-#: src/screens/VideoFeed/index.tsx:815
1124811248+#: src/screens/VideoFeed/index.tsx:813
1123711249#: src/view/com/notifications/NotificationFeedItem.tsx:609
1123811250msgid "View {0}'s profile"
1123911251msgstr ""
···1125911271msgid "View debug entry"
1126011272msgstr ""
11261112731126211262-#: src/screens/VideoFeed/index.tsx:679
1126311263-#: src/screens/VideoFeed/index.tsx:697
1127411274+#: src/screens/VideoFeed/index.tsx:678
1127511275+#: src/screens/VideoFeed/index.tsx:696
1126411276msgid "View details"
1126511277msgstr ""
1126611278···1129611308msgid "View profile"
1129711309msgstr ""
11298113101131111311+#: src/screens/Profile/Header/Shell.tsx:173
1131211312+msgid "View profile banner"
1131311313+msgstr ""
1131411314+1129911315#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1130011316msgid "View the avatar"
1130111317msgstr ""
···1158511601msgid "We've confirmed your age assurance status. You can now close this dialog."
1158611602msgstr ""
11587116031158811588-#: src/screens/Deactivated.tsx:119
1160411604+#: src/screens/Deactivated.tsx:117
1158911605msgid "Welcome back!"
1159011606msgstr ""
1159111607···1173311749msgid "Yes, delete this starter pack"
1173411750msgstr ""
11735117511173611736-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:806
1175211752+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800
1173711753msgid "Yes, detach"
1173811754msgstr ""
11739117551174011740-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:816
1175611756+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:807
1174111757msgid "Yes, hide"
1174211758msgstr ""
11743117591174411744-#: src/screens/Deactivated.tsx:141
1176011760+#: src/screens/Deactivated.tsx:139
1174511761msgid "Yes, reactivate my account"
1174611762msgstr ""
1174711763···1186111877msgid "You can only select one video at a time."
1186211878msgstr ""
11863118791186411864-#: src/screens/Deactivated.tsx:127
1188011880+#: src/screens/Deactivated.tsx:125
1186511881msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
1186611882msgstr ""
1186711883···1205912075msgstr ""
12060120761206112077#. placeholder {0}: currentAccount?.handle
1206212062-#: src/screens/Deactivated.tsx:122
1207812078+#: src/screens/Deactivated.tsx:120
1206312079msgid "You previously deactivated @{0}."
1206412080msgstr ""
1206512081···1209312109msgid "You will no longer receive notifications for {0}"
1209412110msgstr ""
12095121111209612096-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:239
1211212112+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:243
1209712113msgid "You will no longer receive notifications for this thread"
1209812114msgstr ""
12099121151210012100-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:229
1211612116+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:234
1210112117msgid "You will now receive notifications for this thread"
1210212118msgstr ""
1210312119···1215212168msgid "You're in line"
1215312169msgstr ""
12154121701215512155-#: src/screens/Deactivated.tsx:83
1217112171+#: src/screens/Deactivated.tsx:81
1215612172#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
1215712173msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
1215812174msgstr ""
···1220212218msgid "You've reached your daily limit for video uploads (too many videos)"
1220312219msgstr ""
12204122201220512205-#: src/screens/VideoFeed/index.tsx:1162
1222112221+#: src/screens/VideoFeed/index.tsx:1154
1220612222msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
1220712223msgstr ""
1220812224
+198-182
src/locale/locales/bn/messages.po
···88"Language: bn\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Bengali\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···558558#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0)
559559#. placeholder {0}: formatPostStatCount(post.likeCount)
560560#. placeholder {1}: post.likeCount
561561-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
561561+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:489
562562msgid "<0>{0}</0> {1, plural, one {like} other {likes}}"
563563msgstr ""
564564565565#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0)
566566#. placeholder {0}: formatPostStatCount(post.quoteCount)
567567#. placeholder {1}: post.quoteCount
568568-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
568568+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471
569569msgid "<0>{0}</0> {1, plural, one {quote} other {quotes}}"
570570msgstr ""
571571572572#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0)
573573#. placeholder {0}: formatPostStatCount(post.repostCount)
574574#. placeholder {1}: post.repostCount
575575-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465
575575+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
576576msgid "<0>{0}</0> {1, plural, one {repost} other {reposts}}"
577577msgstr ""
578578579579#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0)
580580#. placeholder {0}: formatPostStatCount(post.bookmarkCount)
581581#. placeholder {1}: post.bookmarkCount
582582-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:516
582582+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
583583msgid "<0>{0}</0> {1, plural, one {save} other {saves}}"
584584msgstr ""
585585···733733msgid "Account"
734734msgstr ""
735735736736-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:425
736736+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422
737737#: src/screens/Messages/components/RequestButtons.tsx:97
738738#: src/view/com/profile/ProfileMenu.tsx:182
739739msgctxt "toast"
···753753msgid "Account is deactivated"
754754msgstr ""
755755756756-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450
756756+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:447
757757#: src/view/com/profile/ProfileMenu.tsx:158
758758msgctxt "toast"
759759msgid "Account muted"
···792792msgid "Account unfollowed"
793793msgstr ""
794794795795-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:439
795795+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
796796#: src/view/com/profile/ProfileMenu.tsx:148
797797msgctxt "toast"
798798msgid "Account unmuted"
···844844msgstr ""
845845846846#: src/components/dialogs/SwitchAccount.tsx:56
847847-#: src/screens/Deactivated.tsx:186
847847+#: src/screens/Deactivated.tsx:184
848848msgid "Add account"
849849msgstr ""
850850851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:171
855855-#: src/view/com/composer/photos/Gallery.tsx:218
856856-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:97
857857-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:105
854854+#: src/view/com/composer/photos/Gallery.tsx:181
855855+#: src/view/com/composer/photos/Gallery.tsx:228
856856+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
859859msgstr ""
860860···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:189
11551155+#: src/view/com/composer/photos/Gallery.tsx:199
11561156msgid "ALT"
11571157msgstr ""
1158115811591159#: src/screens/Settings/AccessibilitySettings.tsx:55
11601160#: src/view/com/composer/GifAltText.tsx:157
11611161-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:130
11611161+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:132
11621162#: src/view/com/composer/videos/SubtitleDialog.tsx:41
11631163#: src/view/com/composer/videos/SubtitleDialog.tsx:59
11641164#: src/view/com/composer/videos/SubtitleDialog.tsx:110
···11701170msgid "Alt Text"
11711171msgstr ""
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:262
11731173+#: src/view/com/composer/photos/Gallery.tsx:273
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr ""
1176117611771177#. placeholder {0}: i18n.number(MAX_ALT_TEXT)
11781178#: src/view/com/composer/GifAltText.tsx:182
11791179-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:151
11791179+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
11801180msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
11811181msgstr ""
11821182···14421442msgstr ""
1443144314441444#. placeholder {0}: niceDate(i18n, createdAt, 'medium')
14451445-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:728
14451445+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623
14461446msgid "Archived from {0}"
14471447msgstr ""
1448144814491449-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
14501450-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:737
14491449+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:594
14501450+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
14511451msgid "Archived post"
14521452msgstr ""
14531453···15051505msgid "Artistic or non-erotic nudity."
15061506msgstr ""
1507150715081508-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563
15091509-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565
15081508+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:576
15091509+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
15101510msgid "Assign topic for algo"
15111511msgstr ""
15121512···15411541#: src/screens/Login/SetNewPasswordForm.tsx:178
15421542#: src/screens/Messages/components/ChatDisabled.tsx:146
15431543#: src/screens/Messages/components/ChatDisabled.tsx:147
15441544-#: src/screens/Profile/Header/Shell.tsx:179
15441544+#: src/screens/Profile/Header/Shell.tsx:184
15451545#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
15461546#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
15471547#: src/screens/Signup/BackNextButtons.tsx:42
···16181618msgid "Birthday"
16191619msgstr ""
1620162016211621-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:826
16211621+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:814
16221622#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
16231623#: src/view/com/profile/ProfileMenu.tsx:553
16241624msgid "Block"
···1626162616271627#: src/components/dms/ConvoMenu.tsx:273
16281628#: src/components/dms/ConvoMenu.tsx:276
16291629-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:711
16301630-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:713
16291629+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:716
16301630+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:718
16311631#: src/screens/Messages/components/RequestButtons.tsx:150
16321632#: src/screens/Messages/components/RequestButtons.tsx:152
16331633#: src/view/com/profile/ProfileMenu.tsx:459
···16351635msgid "Block account"
16361636msgstr ""
1637163716381638-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:821
16381638+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
16391639#: src/view/com/profile/ProfileMenu.tsx:536
16401640msgid "Block Account?"
16411641msgstr ""
···16871687msgid "Blocked Accounts"
16881688msgstr ""
1689168916901690-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:823
16901690+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812
16911691#: src/view/com/profile/ProfileMenu.tsx:548
16921692msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
16931693msgstr ""
···17171717msgid "Bluesky"
17181718msgstr ""
1719171917201720-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:753
17201720+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:648
17211721msgid "Bluesky cannot confirm the authenticity of the claimed date."
17221722msgstr ""
17231723···19211921#: src/features/liveNow/components/GoLiveDialog.tsx:248
19221922#: src/features/liveNow/components/GoLiveDialog.tsx:254
19231923#: src/lib/media/picker.tsx:38
19241924-#: src/screens/Deactivated.tsx:152
19241924+#: src/screens/Deactivated.tsx:150
19251925#: src/screens/Profile/Header/EditProfileDialog.tsx:219
19261926#: src/screens/Profile/Header/EditProfileDialog.tsx:227
19271927#: src/screens/Search/Shell.tsx:396
···19461946msgid "Cancel quote post"
19471947msgstr ""
1948194819491949-#: src/screens/Deactivated.tsx:146
19491949+#: src/screens/Deactivated.tsx:144
19501950msgid "Cancel reactivation and sign out"
19511951msgstr ""
19521952···19541954msgid "Cancel search"
19551955msgstr ""
1956195619571957-#: src/components/PostControls/index.tsx:108
19581958-#: src/components/PostControls/index.tsx:139
19591959-#: src/components/PostControls/index.tsx:167
19571957+#: src/components/PostControls/index.tsx:109
19581958+#: src/components/PostControls/index.tsx:138
19591959+#: src/components/PostControls/index.tsx:164
19601960#: src/state/shell/composer/index.tsx:108
19611961msgid "Cannot interact with a blocked user"
19621962msgstr ""
···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:150
19771977+#: src/components/Post/Translated/index.tsx:395
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr ""
···20202020msgid "Change report reason"
20212021msgstr ""
2022202220232023-#: src/components/Post/Translated/index.tsx:146
20242024-msgid "Change source language"
20232023+#: src/components/Post/Translated/index.tsx:385
20242024+msgid "Change the source language"
20252025msgstr ""
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
···26892689msgid "Copy post at:// URI"
26902690msgstr ""
2691269126922692-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:518
26932693-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520
26922692+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:531
26932693+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
26942694msgid "Copy post text"
26952695msgstr ""
26962696···29702970msgstr ""
2971297129722972#: src/components/dms/MessageContextMenu.tsx:204
29732973-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
29732973+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:772
29742974#: src/screens/Messages/components/ChatStatusInfo.tsx:55
29752975#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
29762976#: src/screens/Settings/AppPasswords.tsx:213
···30433043msgid "Delete my account"
30443044msgstr ""
3045304530463046-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:751
30473047-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753
30463046+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756
30473047+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758
30483048#: src/view/com/composer/Composer.tsx:1430
30493049msgid "Delete post"
30503050msgstr ""
···30623062msgid "Delete this list?"
30633063msgstr ""
3064306430653065-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765
30653065+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:769
30663066msgid "Delete this post?"
30673067msgstr ""
30683068···30933093msgstr ""
3094309430953095#: src/view/com/composer/GifAltText.tsx:153
30963096-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:126
30963096+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128
30973097msgid "Descriptive alt text"
30983098msgstr ""
3099309931003100-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:655
31013101-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665
31003100+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660
31013101+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:670
31023102msgid "Detach quote"
31033103msgstr ""
3104310431053105-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
31053105+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:797
31063106msgid "Detach quote post?"
31073107msgstr ""
31083108···31213121msgid "Developer options"
31223122msgstr ""
3123312331243124+#: src/lib/translation/index.tsx:265
31253125+msgid "Device failed to translate :("
31263126+msgstr ""
31273127+31243128#: src/components/WhoCanReply.tsx:222
31253129msgid "Dialog: adjust who can interact with this post"
31263130msgstr ""
···33403344msgid "Double tap to close the dialog"
33413345msgstr ""
3342334633433343-#: src/screens/VideoFeed/index.tsx:1119
33473347+#: src/screens/VideoFeed/index.tsx:1111
33443348msgid "Double tap to like"
33453349msgstr ""
33463350···3442344634433447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34443448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34453445-#: src/view/com/composer/photos/Gallery.tsx:196
34493449+#: src/view/com/composer/photos/Gallery.tsx:206
34463450msgid "Edit image"
34473451msgstr ""
3448345234493449-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
34503450-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745
34533453+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
34543454+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750
34513455msgid "Edit interaction settings"
34523456msgstr ""
34533457···38033807msgid "Expand post text"
38043808msgstr ""
3805380938063806-#: src/screens/VideoFeed/index.tsx:991
38103810+#: src/screens/VideoFeed/index.tsx:987
38073811msgid "Expands or collapses post text"
38083812msgstr ""
38093813···38463850msgid "Explicit sexual images."
38473851msgstr ""
3848385238493849-#: src/Navigation.tsx:808
38533853+#: src/Navigation.tsx:809
38503854#: src/screens/Search/Shell.tsx:354
38513855#: src/view/shell/desktop/LeftNav.tsx:689
38523856#: src/view/shell/Drawer.tsx:417
···39323936msgid "Failed to delete message"
39333937msgstr ""
3934393839353935-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:214
39393939+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219
39363940msgid "Failed to delete post, please try again"
39373941msgstr ""
39383942···40904094msgid "Failed to submit appeal, please try again."
40914095msgstr ""
4092409640934093-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:247
40974097+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:249
40944098msgid "Failed to toggle thread mute, please try again"
40954099msgstr ""
40964100···41814185msgid "Feedback"
41824186msgstr ""
4183418741844184-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:301
41854185-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:325
41884188+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303
41894189+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:326
41864190msgctxt "toast"
41874191msgid "Feedback sent to feed operator"
41884192msgstr ""
···43434347#: src/components/ProfileHoverCard/index.web.tsx:508
43444348#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:153
43454349#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:388
43464346-#: src/screens/VideoFeed/index.tsx:875
43504350+#: src/screens/VideoFeed/index.tsx:870
43474351#: src/view/com/notifications/NotificationFeedItem.tsx:841
43484352#: src/view/com/notifications/NotificationFeedItem.tsx:848
43494353msgid "Follow"
···43554359msgid "Follow {0}"
43564360msgstr ""
4357436143584358-#: src/screens/VideoFeed/index.tsx:852
43624362+#: src/screens/VideoFeed/index.tsx:849
43594363msgid "Follow {handle}"
43604364msgstr ""
43614365···44504454#: src/components/ProfileHoverCard/index.web.tsx:507
44514455#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:156
44524456#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:384
44534453-#: src/screens/VideoFeed/index.tsx:873
44574457+#: src/screens/VideoFeed/index.tsx:868
44544458#: src/view/com/notifications/NotificationFeedItem.tsx:819
44554459#: src/view/com/notifications/NotificationFeedItem.tsx:836
44564460msgid "Following"
···44714475msgid "Following {0}"
44724476msgstr ""
4473447744744474-#: src/screens/VideoFeed/index.tsx:851
44784478+#: src/screens/VideoFeed/index.tsx:848
44754479msgid "Following {handle}"
44764480msgstr ""
44774481···46804684#: src/screens/ProfileList/components/ErrorScreen.tsx:35
46814685#: src/screens/ProfileList/components/ErrorScreen.tsx:41
46824686#: src/screens/VideoFeed/components/Header.tsx:163
46834683-#: src/screens/VideoFeed/index.tsx:1180
46844684-#: src/screens/VideoFeed/index.tsx:1184
46854685-#: src/view/com/auth/LoggedOut.tsx:92
46874687+#: src/screens/VideoFeed/index.tsx:1172
46884688+#: src/screens/VideoFeed/index.tsx:1176
46894689+#: src/view/com/auth/LoggedOut.tsx:93
46864690#: src/view/com/profile/ProfileFollowers.tsx:178
46874691#: src/view/com/profile/ProfileFollowers.tsx:179
46884692#: src/view/screens/NotFound.tsx:58
···49094913msgid "Hidden"
49104914msgstr ""
4911491549124912-#: src/screens/VideoFeed/index.tsx:648
49164916+#: src/screens/VideoFeed/index.tsx:647
49134917msgid "Hidden by your moderation settings."
49144918msgstr ""
49154919···49224926#: src/components/moderation/ContentHider.tsx:220
49234927#: src/components/moderation/LabelPreference.tsx:141
49244928#: src/components/moderation/PostHider.tsx:140
49254925-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781
49294929+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:780
49264930#: src/lib/moderation/useLabelBehaviorDescription.ts:18
49274931#: src/lib/moderation/useLabelBehaviorDescription.ts:23
49284932#: src/lib/moderation/useLabelBehaviorDescription.ts:28
···49494953msgid "Hide lists"
49504954msgstr ""
4951495549524952-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:612
49534953-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618
49564956+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
49574957+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
49544958msgid "Hide post for me"
49554959msgstr ""
4956496049574957-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
49584958-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:639
49614961+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
49624962+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:644
49594963msgid "Hide reply for everyone"
49604964msgstr ""
4961496549624962-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:611
49634963-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:617
49664966+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
49674967+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
49644968msgid "Hide reply for me"
49654969msgstr ""
49664970···49734977msgid "Hide this event"
49744978msgstr ""
4975497949764976-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
49804980+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
49774981msgid "Hide this post?"
49784982msgstr ""
4979498349804980-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
49814981-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
49844984+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
49854985+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:804
49824986msgid "Hide this reply?"
49834987msgstr ""
4984498849854985-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
49864986-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
49894989+#: src/components/Post/Translated/index.tsx:192
49904990+#: src/components/Post/Translated/index.tsx:318
49914991+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49874993msgid "Hide translation"
49884994msgstr ""
49894995···50505056msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
50515057msgstr ""
5052505850535053-#: src/Navigation.tsx:803
50545054-#: src/Navigation.tsx:823
50595059+#: src/Navigation.tsx:804
50605060+#: src/Navigation.tsx:824
50555061#: src/view/shell/bottom-bar/BottomBar.tsx:177
50565062#: src/view/shell/desktop/LeftNav.tsx:671
50575063#: src/view/shell/Drawer.tsx:443
···51525158msgid "If you need to update your email, <0>click here</0>."
51535159msgstr ""
5154516051555155-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767
51615161+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
51565162msgid "If you remove this post, you won't be able to recover it."
51575163msgstr ""
51585164···53225328msgid "Invalid handle. Please try a different one."
53235329msgstr ""
5324533053255325-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:397
53315331+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:396
53265332msgctxt "toast"
53275333msgid "Invalid interaction settings."
53285334msgstr ""
···5637564356385644#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
56395645#. placeholder {0}: post.likeCount || 0
56405640-#: src/components/PostControls/index.tsx:288
56465646+#: src/components/PostControls/index.tsx:278
56415647msgid "Like ({0, plural, one {# like} other {# likes}})"
56425648msgstr ""
56435649···57045710msgid "Likes of your reposts notifications"
57055711msgstr ""
5706571257075707-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:499
57135713+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
57085714msgid "Likes on this post"
57095715msgstr ""
57105716···60516057msgid "Message options"
60526058msgstr ""
6053605960546054-#: src/Navigation.tsx:818
60606060+#: src/Navigation.tsx:819
60556061msgid "Messages"
60566062msgstr ""
60576063···61846190msgid "Mute {0}"
61856191msgstr ""
6186619261876187-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
61886188-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700
61936193+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
61946194+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705
61896195#: src/view/com/profile/ProfileMenu.tsx:438
61906196#: src/view/com/profile/ProfileMenu.tsx:445
61916197msgid "Mute account"
···62376243msgid "Mute this word until you unmute it"
62386244msgstr ""
6239624562406240-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
62416241-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
62466246+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
62476247+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
62426248msgid "Mute thread"
62436249msgstr ""
6244625062456245-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592
62466246-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594
62516251+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:603
62526252+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:605
62476253msgid "Mute words & tags"
62486254msgstr ""
62496255···67266732msgstr ""
6727673367286734#: src/Navigation.tsx:575
67296729-#: src/Navigation.tsx:813
67356735+#: src/Navigation.tsx:814
67306736#: src/screens/Notifications/ActivityList.tsx:31
67316737#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
67326738#: src/screens/Settings/NotificationSettings/index.tsx:93
···67906796msgstr ""
6791679767926798#: src/screens/Login/PasswordUpdatedForm.tsx:37
67936793-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:759
67996799+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:654
67946800msgid "Okay"
67956801msgstr ""
67966802···69286934msgid "Open pack"
69296935msgstr ""
6930693669316931-#: src/components/PostControls/PostMenu/index.tsx:66
69376937+#: src/components/PostControls/PostMenu/index.tsx:67
69326938msgid "Open post options menu"
69336939msgstr ""
69346940···70607066msgid "Options:"
70617067msgstr ""
7062706870637063-#: src/screens/Deactivated.tsx:194
70697069+#: src/screens/Deactivated.tsx:192
70647070msgid "Or, continue with another account."
70657071msgstr ""
7066707270677067-#: src/screens/Deactivated.tsx:181
70737073+#: src/screens/Deactivated.tsx:179
70687074msgid "Or, sign in to one of your other accounts."
70697075msgstr ""
70707076···72607266msgid "Pin to Home"
72617267msgstr ""
7262726872637263-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:486
72647264-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493
72697269+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
72707270+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
72657271msgid "Pin to your profile"
72667272msgstr ""
72677273···75247530msgid "Post by @{0}"
75257531msgstr ""
7526753275277527-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:194
75337533+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199
75287534msgctxt "toast"
75297535msgid "Post deleted"
75307536msgstr ""
···75337539msgid "Post failed to upload. Please check your Internet connection and try again."
75347540msgstr ""
7535754175367536-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:143
75377537-#: src/screens/PostThread/components/ThreadItemPost.tsx:112
75387538-#: src/screens/PostThread/components/ThreadItemTreePost.tsx:108
75397539-#: src/screens/VideoFeed/index.tsx:552
75427542+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:130
75437543+#: src/screens/PostThread/components/ThreadItemPost.tsx:113
75447544+#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109
75457545+#: src/screens/VideoFeed/index.tsx:551
75407546msgid "Post has been deleted"
75417547msgstr ""
75427548···77037709#: src/view/shell/Drawer.tsx:80
77047710#: src/view/shell/Drawer.tsx:599
77057711msgid "Profile"
77127712+msgstr ""
77137713+77147714+#: src/screens/Profile/Header/Shell.tsx:174
77157715+msgid "Profile banner placeholder"
77067716msgstr ""
7707771777087718#: src/lib/strings/errors.ts:40
···77867796msgid "Quote post"
77877797msgstr ""
7788779877897789-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
77997799+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:346
77907800msgid "Quote post was re-attached"
77917801msgstr ""
7792780277937793-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
78037803+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
77947804msgid "Quote post was successfully detached"
77957805msgstr ""
77967806···78087818msgid "Quotes"
78097819msgstr ""
7810782078117811-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:481
78217821+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467
78127822msgid "Quotes of this post"
78137823msgstr ""
78147824···78207830msgid "Rate limit exceeded. Please try again later."
78217831msgstr ""
7822783278237823-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654
78247824-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664
78337833+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659
78347834+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
78257835msgid "Re-attach quote"
78267836msgstr ""
78277837···78297839msgid "React with {emoji}"
78307840msgstr ""
7831784178327832-#: src/screens/Deactivated.tsx:135
78427842+#: src/screens/Deactivated.tsx:133
78337843msgid "Reactivate your account"
78347844msgstr ""
78357845···78487858msgid "Read blog post"
78497859msgstr ""
7850786078517851-#: src/screens/VideoFeed/index.tsx:992
78617861+#: src/screens/VideoFeed/index.tsx:988
78527862msgid "Read less"
78537863msgstr ""
7854786478557855-#: src/screens/VideoFeed/index.tsx:992
78657865+#: src/screens/VideoFeed/index.tsx:988
78567866msgid "Read more"
78577867msgstr ""
78587868···80208030msgid "Remove from your feeds?"
80218031msgstr ""
8022803280238023-#: src/view/com/composer/photos/Gallery.tsx:205
80338033+#: src/view/com/composer/photos/Gallery.tsx:215
80248034msgid "Remove image"
80258035msgstr ""
80268036···8172818281738183#. Accessibility label for the reply button, verb form followed by number of replies and noun form
81748184#. placeholder {0}: post.replyCount || 0
81758175-#: src/components/PostControls/index.tsx:242
81858185+#: src/components/PostControls/index.tsx:236
81768186msgid "Reply ({0, plural, one {# reply} other {# replies}})"
81778187msgstr ""
81788188···81988208msgid "Reply sorting"
81998209msgstr ""
8200821082018201-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
82118211+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384
82028212msgctxt "toast"
82038213msgid "Reply visibility updated"
82048214msgstr ""
8205821582068206-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:382
82168216+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
82078217msgid "Reply was successfully hidden"
82088218msgstr ""
82098219···82468256msgid "Report message"
82478257msgstr ""
8248825882498249-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:720
82508250-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
82598259+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:725
82608260+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
82518261msgid "Report post"
82528262msgstr ""
82538263···83398349msgid "Reposts"
83408350msgstr ""
8341835183428342-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461
83528352+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:447
83438353msgid "Reposts of this post"
83448354msgstr ""
83458355···8482849284838493#: src/screens/ProfileList/components/ErrorScreen.tsx:36
84848494#: src/screens/Settings/components/ChangeHandleDialog.tsx:579
84858485-#: src/screens/VideoFeed/index.tsx:1181
84958495+#: src/screens/VideoFeed/index.tsx:1173
84868496#: src/view/screens/NotFound.tsx:61
84878497msgid "Returns to previous page"
84888498msgstr ""
···85088518#: src/view/com/composer/GifAltText.tsx:205
85098519#: src/view/com/composer/photos/EditImageDialog.web.tsx:63
85108520#: src/view/com/composer/photos/EditImageDialog.web.tsx:76
85118511-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:165
85128512-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:175
85218521+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:167
85228522+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:177
85138523msgid "Save"
85148524msgstr ""
85158525···89008910msgid "Select the {emojiName} emoji as your avatar"
89018911msgstr ""
8902891289038903-#: src/components/Post/Translated/index.tsx:156
89138913+#: src/components/Post/Translated/index.tsx:402
89048914msgid "Select the source language"
89058915msgstr ""
89068916···91999209#: src/components/moderation/ScreenHider.tsx:179
92009210#: src/components/moderation/ScreenHider.tsx:182
92019211#: src/screens/List/ListHiddenScreen.tsx:194
92029202-#: src/screens/VideoFeed/index.tsx:651
92039203-#: src/screens/VideoFeed/index.tsx:657
92129212+#: src/screens/VideoFeed/index.tsx:650
92139213+#: src/screens/VideoFeed/index.tsx:656
92049214msgid "Show anyway"
92059215msgstr ""
92069216···92179227msgid "Show customization options"
92189228msgstr ""
9219922992209220-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:549
92219221-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:551
92309230+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562
92319231+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564
92229232msgid "Show less like this"
92239233msgstr ""
92249234···92399249msgid "Show More"
92409250msgstr ""
9241925192429242-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:541
92439243-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
92529252+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
92539253+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556
92449254msgid "Show more like this"
92459255msgstr ""
92469256···92669276msgid "Show replies as"
92679277msgstr ""
9268927892699269-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:628
92709270-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
92799279+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
92809280+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643
92719281msgid "Show reply for everyone"
92729282msgstr ""
92739283···92949304msgid "Show when you’re live"
92959305msgstr ""
9296930692979297-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:700
93079307+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:595
92989308msgid "Shows information about when this post was created"
92999309msgstr ""
93009310···93409350msgid "Sign in as..."
93419351msgstr ""
9342935293439343-#: src/screens/Deactivated.tsx:197
93449344-#: src/screens/Deactivated.tsx:203
93539353+#: src/screens/Deactivated.tsx:195
93549354+#: src/screens/Deactivated.tsx:201
93459355msgid "Sign in or create an account"
93469356msgstr ""
93479357···93579367msgid "Sign in to Bluesky or create a new account"
93589368msgstr ""
9359936993609360-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
93619361-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:529
93709370+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540
93719371+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:542
93629372msgid "Sign in to view post"
93639373msgstr ""
93649374···9478948894799489#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
94809490#: src/components/moderation/ReportDialog/index.tsx:273
94819481-#: src/screens/Deactivated.tsx:88
94919491+#: src/screens/Deactivated.tsx:86
94829492#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
94839493#: src/view/screens/Storybook/Admonitions.tsx:56
94849494msgid "Something went wrong, please try again"
···95099519msgid "Sorry, we're unable to load account suggestions at this time."
95109520msgstr ""
9511952195129512-#: src/App.native.tsx:142
95139513-#: src/App.web.tsx:118
95229522+#: src/App.native.tsx:143
95239523+#: src/App.web.tsx:119
95149524msgid "Sorry! Your session expired. Please sign in again."
95159525msgstr ""
95169526···98969906msgid "That's all, folks!"
98979907msgstr ""
9898990898999899-#: src/screens/VideoFeed/index.tsx:1153
99099909+#: src/screens/VideoFeed/index.tsx:1145
99009910msgid "That's everything!"
99019911msgstr ""
99029912···1008210092msgstr ""
10083100931008410094#. placeholder {0}: e.toString()
1008510085-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:430
1008610086-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:444
1008710087-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455
1009510095+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
1009610096+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:441
1009710097+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:452
1008810098#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117
1008910099#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:128
1009010100#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90
···10309103191031010320#. placeholder {0}: niceDate(i18n, createdAt)
1031110321#. placeholder {1}: niceDate(i18n, indexedAt)
1031210312-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:740
1032210322+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
1031310323msgid "This post claims to have been created on <0>{0}</0>, but was first seen by Bluesky on <1>{1}</1>."
1031410324msgstr ""
1031510325···1033710347msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
1033810348msgstr ""
10339103491034010340-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:813
1035010350+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:805
1034110351msgid "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."
1034210352msgstr ""
1034310353···1041410424msgid "This will remove @{0} from the quick access list."
1041510425msgstr ""
10416104261041710417-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
1042710427+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
1041810428msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
1041910429msgstr ""
1042010430···10511105211051210522#: src/components/dms/MessageContextMenu.tsx:139
1051310523#: src/components/dms/MessageContextMenu.tsx:141
1051410514-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
1051510515-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:512
1051610516-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:640
1051710517-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
1052410524+#: src/components/Post/Translated/index.tsx:139
1052510525+#: src/components/Post/Translated/index.tsx:146
1052610526+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1051810528msgid "Translate"
1051910529msgstr ""
10520105301052110521-#: src/components/Post/Translated/index.tsx:78
1053110531+#: src/components/Post/Translated/index.tsx:292
1052210532msgid "Translated"
1052310533msgstr ""
10524105341052510525-#: src/components/Post/Translated/index.tsx:76
1052610526-msgid "Translated from {langName}"
1052710527-msgstr ""
1052810528-1052910529-#: src/components/Post/Translated/index.tsx:50
1053010530-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:626
1053510535+#: src/components/Post/Translated/index.tsx:89
1053610536+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053110538msgid "Translating…"
1053210539msgstr ""
1053310540···1056410571#: src/view/com/util/error/ErrorScreen.tsx:104
1056510572msgctxt "action"
1056610573msgid "Try again"
1057410574+msgstr ""
1057510575+1057610576+#: src/components/Post/Translated/index.tsx:205
1057710577+#: src/components/Post/Translated/index.tsx:213
1057810578+msgid "Try Google Translate"
1056710579msgstr ""
10568105801056910581#: src/lib/interests.ts:74
···1070110713msgid "Unfollow account"
1070210714msgstr ""
10703107151070410704-#: src/screens/VideoFeed/index.tsx:856
1071610716+#: src/screens/VideoFeed/index.tsx:852
1070510717msgid "Unfollows the user"
1070610718msgstr ""
1070710719···10735107471073610748#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
1073710749#. placeholder {0}: post.likeCount || 0
1073810738-#: src/components/PostControls/index.tsx:278
1075010750+#: src/components/PostControls/index.tsx:270
1073910751msgid "Unlike ({0, plural, one {# like} other {# likes}})"
1074010752msgstr ""
1074110753···1075610768msgid "Unmute {0}"
1075710769msgstr ""
10758107701075910759-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:693
1076010760-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
1077110771+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:698
1077210772+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:704
1076110773#: src/view/com/profile/ProfileMenu.tsx:437
1076210774#: src/view/com/profile/ProfileMenu.tsx:443
1076310775msgid "Unmute account"
···1077210784msgid "Unmute list"
1077310785msgstr ""
10774107861077510775-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
1077610776-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
1078710787+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
1078810788+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
1077710789msgid "Unmute thread"
1077810790msgstr ""
1077910791···1079810810msgid "Unpin from home"
1079910811msgstr ""
10800108121080110801-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
1080210802-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:492
1081310813+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
1081410814+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
1080310815msgid "Unpin from profile"
1080410816msgstr ""
1080510817···1087210884msgid "Update your email"
1087310885msgstr ""
10874108861087510875-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350
1088710887+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351
1087610888msgctxt "toast"
1087710889msgid "Updating quote attachment failed"
1087810890msgstr ""
10879108911088010880-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:402
1089210892+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
1088110893msgctxt "toast"
1088210894msgid "Updating reply visibility failed"
1088310895msgstr ""
···1117611188msgstr ""
11177111891117811190#. placeholder {0}: sanitizeHandle( post.author.handle, '@', )
1117911179-#: src/screens/VideoFeed/index.tsx:1114
1119111191+#: src/screens/VideoFeed/index.tsx:1107
1118011192msgid "Video from {0}. Tap to play or pause the video"
1118111193msgstr ""
1118211194···1118511197msgid "Video Games"
1118611198msgstr ""
11187111991118811188-#: src/screens/VideoFeed/index.tsx:1111
1120011200+#: src/screens/VideoFeed/index.tsx:1106
1118911201msgid "Video is paused"
1119011202msgstr ""
11191112031119211192-#: src/screens/VideoFeed/index.tsx:1111
1120411204+#: src/screens/VideoFeed/index.tsx:1106
1119311205msgid "Video is playing"
1119411206msgstr ""
1119511207···1122411236msgstr ""
11225112371122611238#. placeholder {0}: profile.handle
1122711227-#: src/screens/Profile/Header/Shell.tsx:262
1123911239+#: src/screens/Profile/Header/Shell.tsx:267
1122811240msgid "View {0}'s avatar"
1122911241msgstr ""
1123011242···1123311245#. placeholder {0}: profile.handle
1123411246#: src/screens/Profile/components/ProfileFeedHeader.tsx:459
1123511247#: src/screens/Search/components/SearchProfileCard.tsx:36
1123611236-#: src/screens/VideoFeed/index.tsx:815
1124811248+#: src/screens/VideoFeed/index.tsx:813
1123711249#: src/view/com/notifications/NotificationFeedItem.tsx:609
1123811250msgid "View {0}'s profile"
1123911251msgstr ""
···1125911271msgid "View debug entry"
1126011272msgstr ""
11261112731126211262-#: src/screens/VideoFeed/index.tsx:679
1126311263-#: src/screens/VideoFeed/index.tsx:697
1127411274+#: src/screens/VideoFeed/index.tsx:678
1127511275+#: src/screens/VideoFeed/index.tsx:696
1126411276msgid "View details"
1126511277msgstr ""
1126611278···1129611308msgid "View profile"
1129711309msgstr ""
11298113101131111311+#: src/screens/Profile/Header/Shell.tsx:173
1131211312+msgid "View profile banner"
1131311313+msgstr ""
1131411314+1129911315#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1130011316msgid "View the avatar"
1130111317msgstr ""
···1158511601msgid "We've confirmed your age assurance status. You can now close this dialog."
1158611602msgstr ""
11587116031158811588-#: src/screens/Deactivated.tsx:119
1160411604+#: src/screens/Deactivated.tsx:117
1158911605msgid "Welcome back!"
1159011606msgstr ""
1159111607···1173311749msgid "Yes, delete this starter pack"
1173411750msgstr ""
11735117511173611736-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:806
1175211752+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800
1173711753msgid "Yes, detach"
1173811754msgstr ""
11739117551174011740-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:816
1175611756+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:807
1174111757msgid "Yes, hide"
1174211758msgstr ""
11743117591174411744-#: src/screens/Deactivated.tsx:141
1176011760+#: src/screens/Deactivated.tsx:139
1174511761msgid "Yes, reactivate my account"
1174611762msgstr ""
1174711763···1186111877msgid "You can only select one video at a time."
1186211878msgstr ""
11863118791186411864-#: src/screens/Deactivated.tsx:127
1188011880+#: src/screens/Deactivated.tsx:125
1186511881msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
1186611882msgstr ""
1186711883···1205912075msgstr ""
12060120761206112077#. placeholder {0}: currentAccount?.handle
1206212062-#: src/screens/Deactivated.tsx:122
1207812078+#: src/screens/Deactivated.tsx:120
1206312079msgid "You previously deactivated @{0}."
1206412080msgstr ""
1206512081···1209312109msgid "You will no longer receive notifications for {0}"
1209412110msgstr ""
12095121111209612096-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:239
1211212112+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:243
1209712113msgid "You will no longer receive notifications for this thread"
1209812114msgstr ""
12099121151210012100-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:229
1211612116+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:234
1210112117msgid "You will now receive notifications for this thread"
1210212118msgstr ""
1210312119···1215212168msgid "You're in line"
1215312169msgstr ""
12154121701215512155-#: src/screens/Deactivated.tsx:83
1217112171+#: src/screens/Deactivated.tsx:81
1215612172#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
1215712173msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
1215812174msgstr ""
···1220212218msgid "You've reached your daily limit for video uploads (too many videos)"
1220312219msgstr ""
12204122201220512205-#: src/screens/VideoFeed/index.tsx:1162
1222112221+#: src/screens/VideoFeed/index.tsx:1154
1220612222msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
1220712223msgstr ""
1220812224
+25-25
src/locale/locales/ca/messages.po
···88"Language: ca\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Catalan\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Text alternatiu"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "El text alternatiu descriu les imatges per a les persones cegues o amb problemes de visió, i ajuda donar context a tothom."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "Cashtag {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Canvia"
···20202020msgid "Change report reason"
20212021msgstr "Canvia"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025-msgstr ""
20252025+msgstr "Canvia l'idioma d'origen"
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
20282028msgid "Change your password"
···3123312331243124#: src/lib/translation/index.tsx:265
31253125msgid "Device failed to translate :("
31263126-msgstr ""
31263126+msgstr "El dispositiu no ha pogut traduir :("
3127312731283128#: src/components/WhoCanReply.tsx:222
31293129msgid "Dialog: adjust who can interact with this post"
···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Edita la imatge"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Vols amagar aquesta resposta?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···7713771377147714#: src/screens/Profile/Header/Shell.tsx:174
77157715msgid "Profile banner placeholder"
77167716-msgstr ""
77167716+msgstr "Marcador de posició del bàner de perfil"
7717771777187718#: src/lib/strings/errors.ts:40
77197719msgid "Profile not found"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Vols eliminar-lo dels teus canals?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Elimina la imatge"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Selecciona el {emojiName} emoji com al teu avatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr "Selecciona l'idioma d'origen"
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Tradueix"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr "Traduït"
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056910569-msgstr "Prova un terme de cerca diferent o <0>consulta com utilitzar els filtres de cerca.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569+msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
1057210572msgctxt "action"
1057310573msgid "Try again"
1057410574msgstr "Torna-ho a provar"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579-msgstr ""
1057910579+msgstr "Prova el traductor de Google"
10580105801058110581#: src/lib/interests.ts:74
1058210582msgid "TV"
···11310113101131111311#: src/screens/Profile/Header/Shell.tsx:173
1131211312msgid "View profile banner"
1131311313-msgstr ""
1131311313+msgstr "Mostra el bàner del perfil"
11314113141131511315#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1131611316msgid "View the avatar"
+19-19
src/locale/locales/cy/messages.po
···88"Language: cy\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:46\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Welsh\n"
1414"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))));\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "AMGEN"
11581158···11701170msgid "Alt Text"
11711171msgstr "Testun Amgen"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Mae testun amgan yn disgrifio delweddau ar gyfer defnyddwyr dall a rhai â golwg gwan, ac yn helpu i roi cyd-destun i bawb."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "Cashtag {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Newid"
···20202020msgid "Change report reason"
20212021msgstr "Newid y rheswm am adrodd"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Golygu delwedd"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Cuddio'r ateb hwn?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Tynnu o'ch ffrydiau?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Tynnu delwedd"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Dewiswch yr emoji {emojiName} fel eich afatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr "Dewis yr iaith wreiddiol"
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Cyfieithu"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr "Wedi cyfieithu"
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Ceisia eto"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+33-33
src/locale/locales/da/messages.po
···88"Language: da\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Danish\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···908908#: src/screens/Settings/LanguageSettings.tsx:201
909909#: src/screens/Settings/LanguageSettings.tsx:206
910910msgid "Add more languages…"
911911-msgstr ""
911911+msgstr "Tilføj flere sprog …"
912912913913#: src/components/dialogs/MutedWords.tsx:330
914914msgid "Add mute word with chosen settings"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Alt-tekst"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Alt-tekst beskriver billeder for blinde og svagtseende brugere og bidrager med kontekst til glæde for alle."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "Cashtag {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Skift"
···20202020msgid "Change report reason"
20212021msgstr "Skift årsag til anmeldelse"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025-msgstr ""
20252025+msgstr "Skift kildesproget"
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
20282028msgid "Change your password"
···3123312331243124#: src/lib/translation/index.tsx:265
31253125msgid "Device failed to translate :("
31263126-msgstr ""
31263126+msgstr "Enhed kunne ikke oversætte :("
3127312731283128#: src/components/WhoCanReply.tsx:222
31293129msgid "Dialog: adjust who can interact with this post"
···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Rediger billede"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Skjul dette svar?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
49944994-msgstr ""
49944994+msgstr "Skjul oversættelse"
4995499549964996#: src/components/interstitials/Trending.tsx:115
49974997msgid "Hide trending topics"
···6622662266236623#: src/screens/Search/SearchResults.tsx:178
66246624msgid "No results found for “<0>{query}</0>”."
66256625-msgstr ""
66256625+msgstr "Ingen resultater fundet for “<0>{query}</0>”."
6626662666276627#: src/screens/Search/Explore.tsx:830
66286628msgid "No results."
···7911791179127912#: src/screens/Search/components/SearchHistory.tsx:50
79137913msgid "Recent searches"
79147914-msgstr ""
79147914+msgstr "Seneste søgninger"
7915791579167916#: src/components/dialogs/LanguageSelectDialog.tsx:257
79177917msgid "Recently used"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Fjern fra dine feeds?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Fjern billede"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Vælg emojien {emojiName} som din avatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915-msgstr ""
89158915+msgstr "Vælg kildesprog"
8916891689178917#: src/view/com/composer/select-language/PostLanguageSelect.tsx:59
89188918#: src/view/com/composer/select-language/PostLanguageSelect.tsx:115
···10269102691027010270#: src/screens/Onboarding/StepProfile/index.tsx:133
1027110271msgid "This image could not be used. Try a different format like .jpg or .png."
1027210272-msgstr ""
1027210272+msgstr "Dette billede kunne ikke bruges. Prøv et andet format som .jpg eller .png."
10273102731027410274#: src/components/dialogs/BirthDateSettings.tsx:56
1027510275msgid "This information is private and not shared with other users."
···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Oversæt"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533-msgstr ""
1053310533+msgstr "Oversat"
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
1053910539-msgstr ""
1053910539+msgstr "Oversætter …"
10540105401054110541#: src/screens/Settings/ThreadPreferences.tsx:87
1054210542#: src/screens/Settings/ThreadPreferences.tsx:92
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Prøv igen"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579-msgstr ""
1057910579+msgstr "Prøv Google Translate"
10580105801058110581#: src/lib/interests.ts:74
1058210582msgid "TV"
···1125311253#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle)
1125411254#: src/components/ProfileCard.tsx:143
1125511255msgid "View {0}’s profile"
1125611256-msgstr ""
1125611256+msgstr "Se {0}s profil"
11257112571125811258#: src/components/dms/MessagesListHeader.tsx:142
1125911259msgid "View {displayName}'s profile"
···11310113101131111311#: src/screens/Profile/Header/Shell.tsx:173
1131211312msgid "View profile banner"
1131311313-msgstr ""
1131311313+msgstr "Se profilbanner"
11314113141131511315#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1131611316msgid "View the avatar"
···1156111561#: src/screens/Search/SearchResults.tsx:339
1156211562#: src/screens/Search/SearchResults.tsx:472
1156311563msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes."
1156411564-msgstr ""
1156411564+msgstr "Beklager, men din søgning kunne ikke gennemføres. Prøv igen om lidt."
11565115651156611566#: src/components/ageAssurance/AgeRestrictedScreen.tsx:62
1156711567msgid "We're sorry, you cannot access this screen at this time."
+25-25
src/locale/locales/de/messages.po
···88"Language: de\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: German\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Alt-Text"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Alt-Text beschreibt Bilder für blinde und sehbehinderte Leser und hilft, den Kontext für alle zu vermitteln."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "Cashtag {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Ändern"
···20202020msgid "Change report reason"
20212021msgstr "Grund für Meldung ändern"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025-msgstr ""
20252025+msgstr "Originalsprache ändern"
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
20282028msgid "Change your password"
···3123312331243124#: src/lib/translation/index.tsx:265
31253125msgid "Device failed to translate :("
31263126-msgstr ""
31263126+msgstr "Übersetzung auf dem Gerät fehlgeschlagen :("
3127312731283128#: src/components/WhoCanReply.tsx:222
31293129msgid "Dialog: adjust who can interact with this post"
···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Bild bearbeiten"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Diese Antwort ausblenden?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···7713771377147714#: src/screens/Profile/Header/Shell.tsx:174
77157715msgid "Profile banner placeholder"
77167716-msgstr ""
77167716+msgstr "Platzhalter für Profilbanner"
7717771777187718#: src/lib/strings/errors.ts:40
77197719msgid "Profile not found"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Aus deinen Feeds entfernen?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Bild entfernen"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Wähle das {emojiName}-Emoji als deinen Avatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr "Originalsprache auswählen"
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Übersetzen"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr "Übersetzt"
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056910569-msgstr "Versuche einen anderen Suchbegriff oder <0> erfahre, wie du Suchfilter verwendest (auf Englisch).</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569+msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
1057210572msgctxt "action"
1057310573msgid "Try again"
1057410574msgstr "Erneut versuchen"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579-msgstr ""
1057910579+msgstr "Google Übersetzer versuchen"
10580105801058110581#: src/lib/interests.ts:74
1058210582msgid "TV"
···11310113101131111311#: src/screens/Profile/Header/Shell.tsx:173
1131211312msgid "View profile banner"
1131311313-msgstr ""
1131311313+msgstr "Profilbanner ansehen"
11314113141131511315#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1131611316msgid "View the avatar"
+19-19
src/locale/locales/el/messages.po
···88"Language: el\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Greek\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr ""
11581158···11701170msgid "Alt Text"
11711171msgstr "Εναλλακτικό κείμενο"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Το εναλλακτικό κείμενο περιγράφει εικόνες για τυφλούς και με χαμηλή όραση χρήστες και βοηθάει να γίνει ξεκάθαρο το περιεχόμενο σε όλους."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Αλλαγή"
···20202020msgid "Change report reason"
20212021msgstr "Αλλαγή αιτίας αναφοράς"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Επεξεργασία εικόνας"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Απόκρυψη αυτής της απάντησης;"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr ""
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Αφαίρεση εικόνας"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Επιλέξτε το emoji {emojiName} ως εικόνα προφίλ σας"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Μετάφραση"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Προσπαθήστε ξανά"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+25-25
src/locale/locales/en-GB/messages.po
···88"Language: en_GB\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: English, United Kingdom\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Alt Text"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Alt text describes images for blind and low-vision users and helps give context to everyone."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "Cashtag {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Change"
···20202020msgid "Change report reason"
20212021msgstr "Change report reason"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025-msgstr ""
20252025+msgstr "Change the source language"
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
20282028msgid "Change your password"
···3123312331243124#: src/lib/translation/index.tsx:265
31253125msgid "Device failed to translate :("
31263126-msgstr ""
31263126+msgstr "Device failed to translate :("
3127312731283128#: src/components/WhoCanReply.tsx:222
31293129msgid "Dialog: adjust who can interact with this post"
···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Edit image"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Hide this reply?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···7713771377147714#: src/screens/Profile/Header/Shell.tsx:174
77157715msgid "Profile banner placeholder"
77167716-msgstr ""
77167716+msgstr "Profile banner placeholder"
7717771777187718#: src/lib/strings/errors.ts:40
77197719msgid "Profile not found"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Remove from your feeds?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Remove image"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Select the {emojiName} emoji as your avatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr "Select the source language"
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Translate"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr "Translated"
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056910569-msgstr "Try a different search term, or <0>read about how to use search filters</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569+msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
1057210572msgctxt "action"
1057310573msgid "Try again"
1057410574msgstr "Try again"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579-msgstr ""
1057910579+msgstr "Try Google Translate"
10580105801058110581#: src/lib/interests.ts:74
1058210582msgid "TV"
···11310113101131111311#: src/screens/Profile/Header/Shell.tsx:173
1131211312msgid "View profile banner"
1131311313-msgstr ""
1131311313+msgstr "View profile banner"
11314113141131511315#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1131611316msgid "View the avatar"
+19-19
src/locale/locales/en/messages.po
···846846#: src/view/com/composer/GifAltText.tsx:78
847847#: src/view/com/composer/GifAltText.tsx:147
848848#: src/view/com/composer/GifAltText.tsx:214
849849-#: src/view/com/composer/photos/Gallery.tsx:181
850850-#: src/view/com/composer/photos/Gallery.tsx:228
849849+#: src/view/com/composer/photos/Gallery.tsx:182
850850+#: src/view/com/composer/photos/Gallery.tsx:229
851851#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
852852#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
853853msgid "Add alt text"
···11471147#: src/components/images/Gallery.tsx:120
11481148#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11491149#: src/view/com/composer/GifAltText.tsx:102
11501150-#: src/view/com/composer/photos/Gallery.tsx:199
11501150+#: src/view/com/composer/photos/Gallery.tsx:200
11511151msgid "ALT"
11521152msgstr ""
11531153···11651165msgid "Alt Text"
11661166msgstr ""
1167116711681168-#: src/view/com/composer/photos/Gallery.tsx:273
11681168+#: src/view/com/composer/photos/Gallery.tsx:274
11691169msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11701170msgstr ""
11711171···19691969msgid "Cashtag {tag}"
19701970msgstr ""
1971197119721972-#: src/components/Post/Translated/index.tsx:395
19721972+#: src/components/Post/Translated/index.tsx:397
19731973#: src/screens/Settings/components/Email2FAToggle.tsx:31
19741974msgid "Change"
19751975msgstr ""
···20152015msgid "Change report reason"
20162016msgstr ""
2017201720182018-#: src/components/Post/Translated/index.tsx:385
20182018+#: src/components/Post/Translated/index.tsx:387
20192019msgid "Change the source language"
20202020msgstr "Change the source language"
20212021···3441344134423442#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34433443#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34443444-#: src/view/com/composer/photos/Gallery.tsx:206
34443444+#: src/view/com/composer/photos/Gallery.tsx:207
34453445msgid "Edit image"
34463446msgstr ""
34473447···49814981msgid "Hide this reply?"
49824982msgstr ""
4983498349844984-#: src/components/Post/Translated/index.tsx:192
49854985-#: src/components/Post/Translated/index.tsx:318
49844984+#: src/components/Post/Translated/index.tsx:194
49854985+#: src/components/Post/Translated/index.tsx:320
49864986#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49874987#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49884988msgid "Hide translation"
···80258025msgid "Remove from your feeds?"
80268026msgstr ""
8027802780288028-#: src/view/com/composer/photos/Gallery.tsx:215
80288028+#: src/view/com/composer/photos/Gallery.tsx:216
80298029msgid "Remove image"
80308030msgstr ""
80318031···89058905msgid "Select the {emojiName} emoji as your avatar"
89068906msgstr ""
8907890789088908-#: src/components/Post/Translated/index.tsx:402
89088908+#: src/components/Post/Translated/index.tsx:404
89098909msgid "Select the source language"
89108910msgstr "Select the source language"
89118911···10516105161051710517#: src/components/dms/MessageContextMenu.tsx:139
1051810518#: src/components/dms/MessageContextMenu.tsx:141
1051910519-#: src/components/Post/Translated/index.tsx:139
1052010520-#: src/components/Post/Translated/index.tsx:146
1051910519+#: src/components/Post/Translated/index.tsx:141
1052010520+#: src/components/Post/Translated/index.tsx:148
1052110521#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052210522#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052310523msgid "Translate"
1052410524msgstr ""
10525105251052610526-#: src/components/Post/Translated/index.tsx:292
1052610526+#: src/components/Post/Translated/index.tsx:294
1052710527msgid "Translated"
1052810528msgstr "Translated"
10529105291053010530-#: src/components/Post/Translated/index.tsx:89
1053010530+#: src/components/Post/Translated/index.tsx:93
1053110531#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053210532#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053310533msgid "Translating…"
···10560105601056110561#: src/screens/Search/SearchResults.tsx:186
1056210562msgctxt "english-only-resource"
1056310563-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056410564-msgstr "Try a different search term, or <0>read about how to use search filters.</0>."
1056310563+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056410564+msgstr "Try a different search term, or <0>read about how to use search filters</0>."
10565105651056610566#: src/view/com/util/error/ErrorScreen.tsx:104
1056710567msgctxt "action"
1056810568msgid "Try again"
1056910569msgstr ""
10570105701057110571-#: src/components/Post/Translated/index.tsx:205
1057210572-#: src/components/Post/Translated/index.tsx:213
1057110571+#: src/components/Post/Translated/index.tsx:207
1057210572+#: src/components/Post/Translated/index.tsx:215
1057310573msgid "Try Google Translate"
1057410574msgstr "Try Google Translate"
1057510575
+19-19
src/locale/locales/eo/messages.po
···88"Language: eo\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Esperanto\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Alternativa teksto"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Alternativa teksto priskribas bildojn por blindaj kaj vide handikapitaj uzantoj, kaj helpas doni kuntekston por ĉiuj."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Ŝanĝi"
···20202020msgid "Change report reason"
20212021msgstr "Ŝanĝi kialon de raporto"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Redakti bildon"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Ĉu kaŝi ĉi tiun respondon?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Ĉu forigi el viaj fluoj?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Forigi bildon"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Elekti emoĝion {emojiName} kiel profilbildon"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Traduki"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Reprovi"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+19-19
src/locale/locales/es/messages.po
···88"Language: es\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Spanish\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Texto alternativo"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "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."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Cambiar"
···20202020msgid "Change report reason"
20212021msgstr "Cambiar la razón de la denuncia"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Editar la imagen"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "¿Ocultar esta respuesta?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "¿Eliminar de tus feeds?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Eliminar la imagen"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Seleccionar el emoji {emojiName} como tu avatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Traducir"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Intentar de nuevo"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+20-20
src/locale/locales/eu/messages.po
···88"Language: eu\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Basque\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "AUKERAZKO TESTUA"
11581158···11701170msgid "Alt Text"
11711171msgstr "Aukerazko Testua"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Aukerazko testuak itsu eta ikusmen urriko erabiltzaileentzako irudiak deskribatzen ditu eta guztientzako testuingurua ematen laguntzen du."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "{tag} diru-etiketa"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Aldatu"
···20202020msgid "Change report reason"
20212021msgstr "Aldatu salaketa arrazoia"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Editatu irudia"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Ezkutatu erantzun hau?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Zure feedetatik kendu?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Kendu irudia"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Aukeratu {emojiName} emojia zure abatar gisa"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr "Hautatu iturburu-hizkuntza"
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Itzuli"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr "Itzulia"
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056910569-msgstr "Saiatu beste bilaketa-termino batekin edo <0>irakurri bilaketa-iragazkiak nola erabili</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569+msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
1057210572msgctxt "action"
1057310573msgid "Try again"
1057410574msgstr "Saiatu berriro"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+19-19
src/locale/locales/fi/messages.po
···88"Language: fi\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Finnish\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Tekstivastine"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Tekstivastine kuvailee kuvia sokeille ja heikkonäköisille käyttäjille sekä lisää kontekstia kaikille."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Vaihda"
···20202020msgid "Change report reason"
20212021msgstr ""
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Muokkaa kuvaa"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Piilotetaanko tämä vastaus?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr ""
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Poista kuva"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Valitse emoji {emojiName} profiikuvaksesi"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Käännä"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Yritä uudelleen"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+25-25
src/locale/locales/fr/messages.po
···88"Language: fr\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: French\n"
1414"Plural-Forms: nplurals=2; plural=(n > 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Texte alt"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Le texte alt décrit les images pour les personnes aveugles et malvoyantes, et aide à donner un contexte à tout le monde."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "Mot-blé {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Modifier"
···20202020msgid "Change report reason"
20212021msgstr "Changer la raison du signalement"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025-msgstr ""
20252025+msgstr "Changer la langue d’origine"
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
20282028msgid "Change your password"
···3123312331243124#: src/lib/translation/index.tsx:265
31253125msgid "Device failed to translate :("
31263126-msgstr ""
31263126+msgstr "L’appareil n’arrive pas à traduire :("
3127312731283128#: src/components/WhoCanReply.tsx:222
31293129msgid "Dialog: adjust who can interact with this post"
···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Modifier l’image"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Cacher cette réponse ?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···7713771377147714#: src/screens/Profile/Header/Shell.tsx:174
77157715msgid "Profile banner placeholder"
77167716-msgstr ""
77167716+msgstr "Bannière de profil vide"
7717771777187718#: src/lib/strings/errors.ts:40
77197719msgid "Profile not found"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Supprimer de vos fils d’actu ?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Supprimer l’image"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Sélectionner l’emoji {emojiName} comme avatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr "Sélectionner la langue source"
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Traduire"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr "Traduction"
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056910569-msgstr "Essayez avec une autre recherche, ou <0>découvrez-en plus sur les filtres de recherche (en anglais)</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569+msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
1057210572msgctxt "action"
1057310573msgid "Try again"
1057410574msgstr "Réessayer"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579-msgstr ""
1057910579+msgstr "Essayer avec Google Traduction"
10580105801058110581#: src/lib/interests.ts:74
1058210582msgid "TV"
···11310113101131111311#: src/screens/Profile/Header/Shell.tsx:173
1131211312msgid "View profile banner"
1131311313-msgstr ""
1131311313+msgstr "Voir la bannière du profil"
11314113141131511315#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1131611316msgid "View the avatar"
+19-19
src/locale/locales/fy/messages.po
···88"Language: fy\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Frisian\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Alt-tekst"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Alt-tekst beskriuwt ôfbyldingen foar bline en fisueel beheinde brûkers en biedt elkenien kontekst."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Wizigje"
···20202020msgid "Change report reason"
20212021msgstr "Rapportearreden wizigje"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Ofbylding bewurkje"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Dizze reaksje ferstopje?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Ut myn feeds fuortsmite?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Ofbylding fuortsmite"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Dyn avatar as de {emojiName}-emoji selektearje"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Oersette"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Probearje opnij"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+19-19
src/locale/locales/ga/messages.po
···88"Language: ga\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Irish\n"
1414"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Téacs Malartach"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "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."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Athraigh"
···20202020msgid "Change report reason"
20212021msgstr ""
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Cuir an íomhá seo in eagar"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "An bhfuil fonn ort an freagra seo a chur i bhfolach?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr ""
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Bain an íomhá de"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Roghnaigh an emoji {emojiName} mar abhatár"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Aistrigh"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Bain triail eile as"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+19-19
src/locale/locales/gd/messages.po
···88"Language: gd\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:46\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Scottish Gaelic\n"
1414"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n>2 && n<20) ? 2 : 3;\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "Roghainn teacsa"
11581158···11701170msgid "Alt Text"
11711171msgstr "Roghainn teacsa"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "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."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "Cashtag {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Atharraich"
···20202020msgid "Change report reason"
20212021msgstr "Atharraich adhbhar na h-aithrise"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Deasaich an dealbh"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "A bheil thu airson an fhreagairt seo a chur am falach?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "A bheil thu airson a thoirt air falbh o na h-inbhirean agad?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Thoir an dealbh air falbh"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Cleachd an emoji {emojiName} mar avatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Eadar-theangaich"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Feuch ris a-rithist"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+19-19
src/locale/locales/gl/messages.po
···88"Language: gl\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Galician\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Texto alternativo"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "O texto alternativo describe imaxes a persoas cegas ou con baixa visión e axuda a dar máis contexto."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Cambiar"
···20202020msgid "Change report reason"
20212021msgstr ""
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Editar imaxe"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Ocultar este rechouchío?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Eliminar das túas canles?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Eliminar a imaxe"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Seleccionar o emoji {emojiName} como o teu avatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Traducir"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Intentar de novo"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+19-19
src/locale/locales/hi/messages.po
···88"Language: hi\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Hindi\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "वैकल्पिक पाठ"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "वैकल्पिक पाठ अंधे और कम दृश्य लोगों के लिए छवियों का वर्णन करता है, और सब को संदर्भ देने में मदद करता है।"
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "बदलें"
···20202020msgid "Change report reason"
20212021msgstr ""
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "छवि संपादित करें"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "यह पोस्ट छिपाएँ?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr ""
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "छवि हटाएँ"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "{emojiName} इमोजी को अपने अवतार के रूप में चुनें"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "अनुवाद करें"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "फिर प्रयास करें"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+26-26
src/locale/locales/hu/messages.po
···88"Language: hu\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Hungarian\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "HLYT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Helyettesítő szöveg"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "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."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "Pénzcímke: {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Megváltoztatás"
···20202020msgid "Change report reason"
20212021msgstr "Jelentési ok megváltoztatása"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025-msgstr ""
20252025+msgstr "Forrásnyelv megváltoztatása"
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
20282028msgid "Change your password"
···3123312331243124#: src/lib/translation/index.tsx:265
31253125msgid "Device failed to translate :("
31263126-msgstr ""
31263126+msgstr "Az eszköz nem tudta lefordítani a szöveget :("
3127312731283128#: src/components/WhoCanReply.tsx:222
31293129msgid "Dialog: adjust who can interact with this post"
···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Kép szerkesztése"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Válasz elrejtése"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···6809680968106810#: src/components/StarterPack/QrCode.tsx:86
68116811msgid "on<0><1/><2><3/></2></0>"
68126812-msgstr "a<0><1/></0>Blueskyon"
68126812+msgstr "a <0><1/></0> Blueskyon"
6813681368146814#: src/screens/Settings/Settings.tsx:405
68156815msgid "Onboarding reset"
···7713771377147714#: src/screens/Profile/Header/Shell.tsx:174
77157715msgid "Profile banner placeholder"
77167716-msgstr ""
77167716+msgstr "Borítókép helyőrzője"
7717771777187718#: src/lib/strings/errors.ts:40
77197719msgid "Profile not found"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Eltávolítás a hírfolyamgyűjteményből"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Kép eltávolítása"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "A(z) {emojiName} emoji kiválasztása profilképként"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr "Forrásnyelv kiválasztása"
89168916···10523105231052410524#: src/components/dms/MessageContextMenu.tsx:139
1052510525#: src/components/dms/MessageContextMenu.tsx:141
1052610526-#: src/components/Post/Translated/index.tsx:139
1052710527-#: src/components/Post/Translated/index.tsx:146
1052610526+#: src/components/Post/Translated/index.tsx:141
1052710527+#: src/components/Post/Translated/index.tsx:148
1052810528#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052910529#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1053010530msgid "Translate"
1053110531msgstr "Fordítás"
10532105321053310533-#: src/components/Post/Translated/index.tsx:292
1053310533+#: src/components/Post/Translated/index.tsx:294
1053410534msgid "Translated"
1053510535msgstr "Lefordítva"
10536105361053710537-#: src/components/Post/Translated/index.tsx:89
1053710537+#: src/components/Post/Translated/index.tsx:93
1053810538#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053910539#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1054010540msgid "Translating…"
···10567105671056810568#: src/screens/Search/SearchResults.tsx:186
1056910569msgctxt "english-only-resource"
1057010570-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1057110571-msgstr "Próbálkozz másmilyen kifejezésekkel. <0>További információ a keresésszűrőkről (angol nyelven)</0>."
1057010570+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1057110571+msgstr ""
10572105721057310573#: src/view/com/util/error/ErrorScreen.tsx:104
1057410574msgctxt "action"
1057510575msgid "Try again"
1057610576msgstr "Újra"
10577105771057810578-#: src/components/Post/Translated/index.tsx:205
1057910579-#: src/components/Post/Translated/index.tsx:213
1057810578+#: src/components/Post/Translated/index.tsx:207
1057910579+#: src/components/Post/Translated/index.tsx:215
1058010580msgid "Try Google Translate"
1058110581-msgstr ""
1058110581+msgstr "Újrapróbálkozás a Google Fordítóval"
10582105821058310583#: src/lib/interests.ts:74
1058410584msgid "TV"
···11312113121131311313#: src/screens/Profile/Header/Shell.tsx:173
1131411314msgid "View profile banner"
1131511315-msgstr ""
1131511315+msgstr "Borítókép megtekintése"
11316113161131711317#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1131811318msgid "View the avatar"
+19-19
src/locale/locales/ia/messages.po
···88"Language: ia\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Interlingua\n"
1414"Plural-Forms: nplurals=2; plural=(n > 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Texto alternative"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Le texto alternative describe imagines pro usatores cec o con problemas de vision, e adjuta a dar contexto a totes."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Cambiar"
···20202020msgid "Change report reason"
20212021msgstr "Cambiar ration de signalamento"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Modificar imagine"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Occultar iste responsa?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Remover de tu canales?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Remover imagine"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Seliger le emoji {emojiName} como tu avatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Traducer"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Retenta"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+19-19
src/locale/locales/id/messages.po
···88"Language: id\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Indonesian\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Teks Alt"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Teks alt menjelaskan gambar untuk pengguna tunanetra dan pengguna dengan penglihatan rendah, serta membantu memberikan konteks kepada semua orang."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Ubah"
···20202020msgid "Change report reason"
20212021msgstr "Ubah alasan melapor"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Edit gambar"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Sembunyikan balasan ini?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Hapus dari feed Anda?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Hapus gambar"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Pilih emoji {emojiName} sebagai avatar Anda"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Terjemahkan"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Coba lagi"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+24-24
src/locale/locales/it/messages.po
···88"Language: it\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Italian\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Testo alternativo"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Il testo alternativo descrive le immagini per gli utenti non vedenti ed ipovedenti, fornendo un contesto a tutti."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "Cashtag {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Cambia"
···20202020msgid "Change report reason"
20212021msgstr "Modifica motivo della segnalazione"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025-msgstr ""
20252025+msgstr "Cambia la lingua di origine"
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
20282028msgid "Change your password"
···3123312331243124#: src/lib/translation/index.tsx:265
31253125msgid "Device failed to translate :("
31263126-msgstr ""
31263126+msgstr "Il dispositivo non è riuscito a tradurre :("
3127312731283128#: src/components/WhoCanReply.tsx:222
31293129msgid "Dialog: adjust who can interact with this post"
···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Modifica immagine"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Nascondere questa risposta?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···7713771377147714#: src/screens/Profile/Header/Shell.tsx:174
77157715msgid "Profile banner placeholder"
77167716-msgstr ""
77167716+msgstr "Segnaposto banner del profilo"
7717771777187718#: src/lib/strings/errors.ts:40
77197719msgid "Profile not found"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Rimuovere dai tuoi feed?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Rimuovi immagine"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Scegli la {emojiName} emoji come tuo avatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr "Seleziona la lingua di origine"
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Traduci"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr "Tradotto"
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Riprova"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579-msgstr ""
1057910579+msgstr "Prova con Google Translate"
10580105801058110581#: src/lib/interests.ts:74
1058210582msgid "TV"
···11310113101131111311#: src/screens/Profile/Header/Shell.tsx:173
1131211312msgid "View profile banner"
1131311313-msgstr ""
1131311313+msgstr "Vedi banner del profilo"
11314113141131511315#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1131611316msgid "View the avatar"
···88"Language: kab\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Kabyle\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···558558#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0)
559559#. placeholder {0}: formatPostStatCount(post.likeCount)
560560#. placeholder {1}: post.likeCount
561561-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
561561+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:489
562562msgid "<0>{0}</0> {1, plural, one {like} other {likes}}"
563563msgstr ""
564564565565#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0)
566566#. placeholder {0}: formatPostStatCount(post.quoteCount)
567567#. placeholder {1}: post.quoteCount
568568-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
568568+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471
569569msgid "<0>{0}</0> {1, plural, one {quote} other {quotes}}"
570570msgstr ""
571571572572#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0)
573573#. placeholder {0}: formatPostStatCount(post.repostCount)
574574#. placeholder {1}: post.repostCount
575575-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465
575575+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
576576msgid "<0>{0}</0> {1, plural, one {repost} other {reposts}}"
577577msgstr ""
578578579579#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0)
580580#. placeholder {0}: formatPostStatCount(post.bookmarkCount)
581581#. placeholder {1}: post.bookmarkCount
582582-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:516
582582+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
583583msgid "<0>{0}</0> {1, plural, one {save} other {saves}}"
584584msgstr ""
585585···733733msgid "Account"
734734msgstr ""
735735736736-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:425
736736+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422
737737#: src/screens/Messages/components/RequestButtons.tsx:97
738738#: src/view/com/profile/ProfileMenu.tsx:182
739739msgctxt "toast"
···753753msgid "Account is deactivated"
754754msgstr ""
755755756756-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450
756756+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:447
757757#: src/view/com/profile/ProfileMenu.tsx:158
758758msgctxt "toast"
759759msgid "Account muted"
···792792msgid "Account unfollowed"
793793msgstr ""
794794795795-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:439
795795+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
796796#: src/view/com/profile/ProfileMenu.tsx:148
797797msgctxt "toast"
798798msgid "Account unmuted"
···844844msgstr ""
845845846846#: src/components/dialogs/SwitchAccount.tsx:56
847847-#: src/screens/Deactivated.tsx:186
847847+#: src/screens/Deactivated.tsx:184
848848msgid "Add account"
849849msgstr ""
850850851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:171
855855-#: src/view/com/composer/photos/Gallery.tsx:218
856856-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:97
857857-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:105
854854+#: src/view/com/composer/photos/Gallery.tsx:181
855855+#: src/view/com/composer/photos/Gallery.tsx:228
856856+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
859859msgstr ""
860860···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:189
11551155+#: src/view/com/composer/photos/Gallery.tsx:199
11561156msgid "ALT"
11571157msgstr ""
1158115811591159#: src/screens/Settings/AccessibilitySettings.tsx:55
11601160#: src/view/com/composer/GifAltText.tsx:157
11611161-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:130
11611161+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:132
11621162#: src/view/com/composer/videos/SubtitleDialog.tsx:41
11631163#: src/view/com/composer/videos/SubtitleDialog.tsx:59
11641164#: src/view/com/composer/videos/SubtitleDialog.tsx:110
···11701170msgid "Alt Text"
11711171msgstr ""
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:262
11731173+#: src/view/com/composer/photos/Gallery.tsx:273
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr ""
1176117611771177#. placeholder {0}: i18n.number(MAX_ALT_TEXT)
11781178#: src/view/com/composer/GifAltText.tsx:182
11791179-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:151
11791179+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
11801180msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
11811181msgstr ""
11821182···14421442msgstr ""
1443144314441444#. placeholder {0}: niceDate(i18n, createdAt, 'medium')
14451445-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:728
14451445+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623
14461446msgid "Archived from {0}"
14471447msgstr ""
1448144814491449-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
14501450-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:737
14491449+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:594
14501450+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
14511451msgid "Archived post"
14521452msgstr ""
14531453···15051505msgid "Artistic or non-erotic nudity."
15061506msgstr ""
1507150715081508-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563
15091509-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565
15081508+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:576
15091509+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
15101510msgid "Assign topic for algo"
15111511msgstr ""
15121512···15411541#: src/screens/Login/SetNewPasswordForm.tsx:178
15421542#: src/screens/Messages/components/ChatDisabled.tsx:146
15431543#: src/screens/Messages/components/ChatDisabled.tsx:147
15441544-#: src/screens/Profile/Header/Shell.tsx:179
15441544+#: src/screens/Profile/Header/Shell.tsx:184
15451545#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
15461546#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
15471547#: src/screens/Signup/BackNextButtons.tsx:42
···16181618msgid "Birthday"
16191619msgstr ""
1620162016211621-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:826
16211621+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:814
16221622#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
16231623#: src/view/com/profile/ProfileMenu.tsx:553
16241624msgid "Block"
···1626162616271627#: src/components/dms/ConvoMenu.tsx:273
16281628#: src/components/dms/ConvoMenu.tsx:276
16291629-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:711
16301630-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:713
16291629+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:716
16301630+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:718
16311631#: src/screens/Messages/components/RequestButtons.tsx:150
16321632#: src/screens/Messages/components/RequestButtons.tsx:152
16331633#: src/view/com/profile/ProfileMenu.tsx:459
···16351635msgid "Block account"
16361636msgstr ""
1637163716381638-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:821
16381638+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
16391639#: src/view/com/profile/ProfileMenu.tsx:536
16401640msgid "Block Account?"
16411641msgstr ""
···16871687msgid "Blocked Accounts"
16881688msgstr ""
1689168916901690-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:823
16901690+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812
16911691#: src/view/com/profile/ProfileMenu.tsx:548
16921692msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
16931693msgstr ""
···17171717msgid "Bluesky"
17181718msgstr ""
1719171917201720-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:753
17201720+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:648
17211721msgid "Bluesky cannot confirm the authenticity of the claimed date."
17221722msgstr ""
17231723···19211921#: src/features/liveNow/components/GoLiveDialog.tsx:248
19221922#: src/features/liveNow/components/GoLiveDialog.tsx:254
19231923#: src/lib/media/picker.tsx:38
19241924-#: src/screens/Deactivated.tsx:152
19241924+#: src/screens/Deactivated.tsx:150
19251925#: src/screens/Profile/Header/EditProfileDialog.tsx:219
19261926#: src/screens/Profile/Header/EditProfileDialog.tsx:227
19271927#: src/screens/Search/Shell.tsx:396
···19461946msgid "Cancel quote post"
19471947msgstr ""
1948194819491949-#: src/screens/Deactivated.tsx:146
19491949+#: src/screens/Deactivated.tsx:144
19501950msgid "Cancel reactivation and sign out"
19511951msgstr ""
19521952···19541954msgid "Cancel search"
19551955msgstr ""
1956195619571957-#: src/components/PostControls/index.tsx:108
19581958-#: src/components/PostControls/index.tsx:139
19591959-#: src/components/PostControls/index.tsx:167
19571957+#: src/components/PostControls/index.tsx:109
19581958+#: src/components/PostControls/index.tsx:138
19591959+#: src/components/PostControls/index.tsx:164
19601960#: src/state/shell/composer/index.tsx:108
19611961msgid "Cannot interact with a blocked user"
19621962msgstr ""
···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:150
19771977+#: src/components/Post/Translated/index.tsx:395
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr ""
···20202020msgid "Change report reason"
20212021msgstr ""
2022202220232023-#: src/components/Post/Translated/index.tsx:146
20242024-msgid "Change source language"
20232023+#: src/components/Post/Translated/index.tsx:385
20242024+msgid "Change the source language"
20252025msgstr ""
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
···26892689msgid "Copy post at:// URI"
26902690msgstr ""
2691269126922692-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:518
26932693-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520
26922692+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:531
26932693+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
26942694msgid "Copy post text"
26952695msgstr ""
26962696···29702970msgstr ""
2971297129722972#: src/components/dms/MessageContextMenu.tsx:204
29732973-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
29732973+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:772
29742974#: src/screens/Messages/components/ChatStatusInfo.tsx:55
29752975#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
29762976#: src/screens/Settings/AppPasswords.tsx:213
···30433043msgid "Delete my account"
30443044msgstr ""
3045304530463046-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:751
30473047-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753
30463046+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756
30473047+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758
30483048#: src/view/com/composer/Composer.tsx:1430
30493049msgid "Delete post"
30503050msgstr ""
···30623062msgid "Delete this list?"
30633063msgstr ""
3064306430653065-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765
30653065+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:769
30663066msgid "Delete this post?"
30673067msgstr ""
30683068···30933093msgstr ""
3094309430953095#: src/view/com/composer/GifAltText.tsx:153
30963096-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:126
30963096+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128
30973097msgid "Descriptive alt text"
30983098msgstr ""
3099309931003100-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:655
31013101-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665
31003100+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660
31013101+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:670
31023102msgid "Detach quote"
31033103msgstr ""
3104310431053105-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
31053105+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:797
31063106msgid "Detach quote post?"
31073107msgstr ""
31083108···31213121msgid "Developer options"
31223122msgstr ""
3123312331243124+#: src/lib/translation/index.tsx:265
31253125+msgid "Device failed to translate :("
31263126+msgstr ""
31273127+31243128#: src/components/WhoCanReply.tsx:222
31253129msgid "Dialog: adjust who can interact with this post"
31263130msgstr ""
···33403344msgid "Double tap to close the dialog"
33413345msgstr ""
3342334633433343-#: src/screens/VideoFeed/index.tsx:1119
33473347+#: src/screens/VideoFeed/index.tsx:1111
33443348msgid "Double tap to like"
33453349msgstr ""
33463350···3442344634433447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34443448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34453445-#: src/view/com/composer/photos/Gallery.tsx:196
34493449+#: src/view/com/composer/photos/Gallery.tsx:206
34463450msgid "Edit image"
34473451msgstr ""
3448345234493449-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
34503450-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745
34533453+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
34543454+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750
34513455msgid "Edit interaction settings"
34523456msgstr ""
34533457···38033807msgid "Expand post text"
38043808msgstr ""
3805380938063806-#: src/screens/VideoFeed/index.tsx:991
38103810+#: src/screens/VideoFeed/index.tsx:987
38073811msgid "Expands or collapses post text"
38083812msgstr ""
38093813···38463850msgid "Explicit sexual images."
38473851msgstr ""
3848385238493849-#: src/Navigation.tsx:808
38533853+#: src/Navigation.tsx:809
38503854#: src/screens/Search/Shell.tsx:354
38513855#: src/view/shell/desktop/LeftNav.tsx:689
38523856#: src/view/shell/Drawer.tsx:417
···39323936msgid "Failed to delete message"
39333937msgstr ""
3934393839353935-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:214
39393939+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219
39363940msgid "Failed to delete post, please try again"
39373941msgstr ""
39383942···40904094msgid "Failed to submit appeal, please try again."
40914095msgstr ""
4092409640934093-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:247
40974097+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:249
40944098msgid "Failed to toggle thread mute, please try again"
40954099msgstr ""
40964100···41814185msgid "Feedback"
41824186msgstr ""
4183418741844184-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:301
41854185-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:325
41884188+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303
41894189+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:326
41864190msgctxt "toast"
41874191msgid "Feedback sent to feed operator"
41884192msgstr ""
···43434347#: src/components/ProfileHoverCard/index.web.tsx:508
43444348#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:153
43454349#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:388
43464346-#: src/screens/VideoFeed/index.tsx:875
43504350+#: src/screens/VideoFeed/index.tsx:870
43474351#: src/view/com/notifications/NotificationFeedItem.tsx:841
43484352#: src/view/com/notifications/NotificationFeedItem.tsx:848
43494353msgid "Follow"
···43554359msgid "Follow {0}"
43564360msgstr ""
4357436143584358-#: src/screens/VideoFeed/index.tsx:852
43624362+#: src/screens/VideoFeed/index.tsx:849
43594363msgid "Follow {handle}"
43604364msgstr ""
43614365···44504454#: src/components/ProfileHoverCard/index.web.tsx:507
44514455#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:156
44524456#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:384
44534453-#: src/screens/VideoFeed/index.tsx:873
44574457+#: src/screens/VideoFeed/index.tsx:868
44544458#: src/view/com/notifications/NotificationFeedItem.tsx:819
44554459#: src/view/com/notifications/NotificationFeedItem.tsx:836
44564460msgid "Following"
···44714475msgid "Following {0}"
44724476msgstr ""
4473447744744474-#: src/screens/VideoFeed/index.tsx:851
44784478+#: src/screens/VideoFeed/index.tsx:848
44754479msgid "Following {handle}"
44764480msgstr ""
44774481···46804684#: src/screens/ProfileList/components/ErrorScreen.tsx:35
46814685#: src/screens/ProfileList/components/ErrorScreen.tsx:41
46824686#: src/screens/VideoFeed/components/Header.tsx:163
46834683-#: src/screens/VideoFeed/index.tsx:1180
46844684-#: src/screens/VideoFeed/index.tsx:1184
46854685-#: src/view/com/auth/LoggedOut.tsx:92
46874687+#: src/screens/VideoFeed/index.tsx:1172
46884688+#: src/screens/VideoFeed/index.tsx:1176
46894689+#: src/view/com/auth/LoggedOut.tsx:93
46864690#: src/view/com/profile/ProfileFollowers.tsx:178
46874691#: src/view/com/profile/ProfileFollowers.tsx:179
46884692#: src/view/screens/NotFound.tsx:58
···49094913msgid "Hidden"
49104914msgstr ""
4911491549124912-#: src/screens/VideoFeed/index.tsx:648
49164916+#: src/screens/VideoFeed/index.tsx:647
49134917msgid "Hidden by your moderation settings."
49144918msgstr ""
49154919···49224926#: src/components/moderation/ContentHider.tsx:220
49234927#: src/components/moderation/LabelPreference.tsx:141
49244928#: src/components/moderation/PostHider.tsx:140
49254925-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781
49294929+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:780
49264930#: src/lib/moderation/useLabelBehaviorDescription.ts:18
49274931#: src/lib/moderation/useLabelBehaviorDescription.ts:23
49284932#: src/lib/moderation/useLabelBehaviorDescription.ts:28
···49494953msgid "Hide lists"
49504954msgstr ""
4951495549524952-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:612
49534953-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618
49564956+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
49574957+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
49544958msgid "Hide post for me"
49554959msgstr ""
4956496049574957-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
49584958-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:639
49614961+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
49624962+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:644
49594963msgid "Hide reply for everyone"
49604964msgstr ""
4961496549624962-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:611
49634963-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:617
49664966+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
49674967+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
49644968msgid "Hide reply for me"
49654969msgstr ""
49664970···49734977msgid "Hide this event"
49744978msgstr ""
4975497949764976-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
49804980+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
49774981msgid "Hide this post?"
49784982msgstr ""
4979498349804980-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
49814981-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
49844984+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
49854985+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:804
49824986msgid "Hide this reply?"
49834987msgstr ""
4984498849854985-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
49864986-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
49894989+#: src/components/Post/Translated/index.tsx:192
49904990+#: src/components/Post/Translated/index.tsx:318
49914991+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49874993msgid "Hide translation"
49884994msgstr ""
49894995···50505056msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
50515057msgstr ""
5052505850535053-#: src/Navigation.tsx:803
50545054-#: src/Navigation.tsx:823
50595059+#: src/Navigation.tsx:804
50605060+#: src/Navigation.tsx:824
50555061#: src/view/shell/bottom-bar/BottomBar.tsx:177
50565062#: src/view/shell/desktop/LeftNav.tsx:671
50575063#: src/view/shell/Drawer.tsx:443
···51525158msgid "If you need to update your email, <0>click here</0>."
51535159msgstr ""
5154516051555155-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767
51615161+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
51565162msgid "If you remove this post, you won't be able to recover it."
51575163msgstr ""
51585164···53225328msgid "Invalid handle. Please try a different one."
53235329msgstr ""
5324533053255325-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:397
53315331+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:396
53265332msgctxt "toast"
53275333msgid "Invalid interaction settings."
53285334msgstr ""
···5637564356385644#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
56395645#. placeholder {0}: post.likeCount || 0
56405640-#: src/components/PostControls/index.tsx:288
56465646+#: src/components/PostControls/index.tsx:278
56415647msgid "Like ({0, plural, one {# like} other {# likes}})"
56425648msgstr ""
56435649···57045710msgid "Likes of your reposts notifications"
57055711msgstr ""
5706571257075707-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:499
57135713+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
57085714msgid "Likes on this post"
57095715msgstr ""
57105716···60516057msgid "Message options"
60526058msgstr ""
6053605960546054-#: src/Navigation.tsx:818
60606060+#: src/Navigation.tsx:819
60556061msgid "Messages"
60566062msgstr ""
60576063···61846190msgid "Mute {0}"
61856191msgstr ""
6186619261876187-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
61886188-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700
61936193+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
61946194+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705
61896195#: src/view/com/profile/ProfileMenu.tsx:438
61906196#: src/view/com/profile/ProfileMenu.tsx:445
61916197msgid "Mute account"
···62376243msgid "Mute this word until you unmute it"
62386244msgstr ""
6239624562406240-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
62416241-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
62466246+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
62476247+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
62426248msgid "Mute thread"
62436249msgstr ""
6244625062456245-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592
62466246-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594
62516251+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:603
62526252+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:605
62476253msgid "Mute words & tags"
62486254msgstr ""
62496255···67266732msgstr ""
6727673367286734#: src/Navigation.tsx:575
67296729-#: src/Navigation.tsx:813
67356735+#: src/Navigation.tsx:814
67306736#: src/screens/Notifications/ActivityList.tsx:31
67316737#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
67326738#: src/screens/Settings/NotificationSettings/index.tsx:93
···67906796msgstr ""
6791679767926798#: src/screens/Login/PasswordUpdatedForm.tsx:37
67936793-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:759
67996799+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:654
67946800msgid "Okay"
67956801msgstr ""
67966802···69286934msgid "Open pack"
69296935msgstr ""
6930693669316931-#: src/components/PostControls/PostMenu/index.tsx:66
69376937+#: src/components/PostControls/PostMenu/index.tsx:67
69326938msgid "Open post options menu"
69336939msgstr ""
69346940···70607066msgid "Options:"
70617067msgstr ""
7062706870637063-#: src/screens/Deactivated.tsx:194
70697069+#: src/screens/Deactivated.tsx:192
70647070msgid "Or, continue with another account."
70657071msgstr ""
7066707270677067-#: src/screens/Deactivated.tsx:181
70737073+#: src/screens/Deactivated.tsx:179
70687074msgid "Or, sign in to one of your other accounts."
70697075msgstr ""
70707076···72607266msgid "Pin to Home"
72617267msgstr ""
7262726872637263-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:486
72647264-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493
72697269+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
72707270+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
72657271msgid "Pin to your profile"
72667272msgstr ""
72677273···75247530msgid "Post by @{0}"
75257531msgstr ""
7526753275277527-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:194
75337533+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199
75287534msgctxt "toast"
75297535msgid "Post deleted"
75307536msgstr ""
···75337539msgid "Post failed to upload. Please check your Internet connection and try again."
75347540msgstr ""
7535754175367536-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:143
75377537-#: src/screens/PostThread/components/ThreadItemPost.tsx:112
75387538-#: src/screens/PostThread/components/ThreadItemTreePost.tsx:108
75397539-#: src/screens/VideoFeed/index.tsx:552
75427542+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:130
75437543+#: src/screens/PostThread/components/ThreadItemPost.tsx:113
75447544+#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109
75457545+#: src/screens/VideoFeed/index.tsx:551
75407546msgid "Post has been deleted"
75417547msgstr ""
75427548···77037709#: src/view/shell/Drawer.tsx:80
77047710#: src/view/shell/Drawer.tsx:599
77057711msgid "Profile"
77127712+msgstr ""
77137713+77147714+#: src/screens/Profile/Header/Shell.tsx:174
77157715+msgid "Profile banner placeholder"
77067716msgstr ""
7707771777087718#: src/lib/strings/errors.ts:40
···77867796msgid "Quote post"
77877797msgstr ""
7788779877897789-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
77997799+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:346
77907800msgid "Quote post was re-attached"
77917801msgstr ""
7792780277937793-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
78037803+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
77947804msgid "Quote post was successfully detached"
77957805msgstr ""
77967806···78087818msgid "Quotes"
78097819msgstr ""
7810782078117811-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:481
78217821+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467
78127822msgid "Quotes of this post"
78137823msgstr ""
78147824···78207830msgid "Rate limit exceeded. Please try again later."
78217831msgstr ""
7822783278237823-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654
78247824-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664
78337833+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659
78347834+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
78257835msgid "Re-attach quote"
78267836msgstr ""
78277837···78297839msgid "React with {emoji}"
78307840msgstr ""
7831784178327832-#: src/screens/Deactivated.tsx:135
78427842+#: src/screens/Deactivated.tsx:133
78337843msgid "Reactivate your account"
78347844msgstr ""
78357845···78487858msgid "Read blog post"
78497859msgstr ""
7850786078517851-#: src/screens/VideoFeed/index.tsx:992
78617861+#: src/screens/VideoFeed/index.tsx:988
78527862msgid "Read less"
78537863msgstr ""
7854786478557855-#: src/screens/VideoFeed/index.tsx:992
78657865+#: src/screens/VideoFeed/index.tsx:988
78567866msgid "Read more"
78577867msgstr ""
78587868···80208030msgid "Remove from your feeds?"
80218031msgstr ""
8022803280238023-#: src/view/com/composer/photos/Gallery.tsx:205
80338033+#: src/view/com/composer/photos/Gallery.tsx:215
80248034msgid "Remove image"
80258035msgstr ""
80268036···8172818281738183#. Accessibility label for the reply button, verb form followed by number of replies and noun form
81748184#. placeholder {0}: post.replyCount || 0
81758175-#: src/components/PostControls/index.tsx:242
81858185+#: src/components/PostControls/index.tsx:236
81768186msgid "Reply ({0, plural, one {# reply} other {# replies}})"
81778187msgstr ""
81788188···81988208msgid "Reply sorting"
81998209msgstr ""
8200821082018201-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
82118211+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384
82028212msgctxt "toast"
82038213msgid "Reply visibility updated"
82048214msgstr ""
8205821582068206-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:382
82168216+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
82078217msgid "Reply was successfully hidden"
82088218msgstr ""
82098219···82468256msgid "Report message"
82478257msgstr ""
8248825882498249-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:720
82508250-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
82598259+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:725
82608260+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
82518261msgid "Report post"
82528262msgstr ""
82538263···83398349msgid "Reposts"
83408350msgstr ""
8341835183428342-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461
83528352+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:447
83438353msgid "Reposts of this post"
83448354msgstr ""
83458355···8482849284838493#: src/screens/ProfileList/components/ErrorScreen.tsx:36
84848494#: src/screens/Settings/components/ChangeHandleDialog.tsx:579
84858485-#: src/screens/VideoFeed/index.tsx:1181
84958495+#: src/screens/VideoFeed/index.tsx:1173
84868496#: src/view/screens/NotFound.tsx:61
84878497msgid "Returns to previous page"
84888498msgstr ""
···85088518#: src/view/com/composer/GifAltText.tsx:205
85098519#: src/view/com/composer/photos/EditImageDialog.web.tsx:63
85108520#: src/view/com/composer/photos/EditImageDialog.web.tsx:76
85118511-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:165
85128512-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:175
85218521+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:167
85228522+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:177
85138523msgid "Save"
85148524msgstr ""
85158525···89008910msgid "Select the {emojiName} emoji as your avatar"
89018911msgstr ""
8902891289038903-#: src/components/Post/Translated/index.tsx:156
89138913+#: src/components/Post/Translated/index.tsx:402
89048914msgid "Select the source language"
89058915msgstr ""
89068916···91999209#: src/components/moderation/ScreenHider.tsx:179
92009210#: src/components/moderation/ScreenHider.tsx:182
92019211#: src/screens/List/ListHiddenScreen.tsx:194
92029202-#: src/screens/VideoFeed/index.tsx:651
92039203-#: src/screens/VideoFeed/index.tsx:657
92129212+#: src/screens/VideoFeed/index.tsx:650
92139213+#: src/screens/VideoFeed/index.tsx:656
92049214msgid "Show anyway"
92059215msgstr ""
92069216···92179227msgid "Show customization options"
92189228msgstr ""
9219922992209220-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:549
92219221-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:551
92309230+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562
92319231+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564
92229232msgid "Show less like this"
92239233msgstr ""
92249234···92399249msgid "Show More"
92409250msgstr ""
9241925192429242-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:541
92439243-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
92529252+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
92539253+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556
92449254msgid "Show more like this"
92459255msgstr ""
92469256···92669276msgid "Show replies as"
92679277msgstr ""
9268927892699269-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:628
92709270-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
92799279+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
92809280+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643
92719281msgid "Show reply for everyone"
92729282msgstr ""
92739283···92949304msgid "Show when you’re live"
92959305msgstr ""
9296930692979297-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:700
93079307+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:595
92989308msgid "Shows information about when this post was created"
92999309msgstr ""
93009310···93409350msgid "Sign in as..."
93419351msgstr ""
9342935293439343-#: src/screens/Deactivated.tsx:197
93449344-#: src/screens/Deactivated.tsx:203
93539353+#: src/screens/Deactivated.tsx:195
93549354+#: src/screens/Deactivated.tsx:201
93459355msgid "Sign in or create an account"
93469356msgstr ""
93479357···93579367msgid "Sign in to Bluesky or create a new account"
93589368msgstr ""
9359936993609360-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
93619361-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:529
93709370+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540
93719371+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:542
93629372msgid "Sign in to view post"
93639373msgstr ""
93649374···9478948894799489#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
94809490#: src/components/moderation/ReportDialog/index.tsx:273
94819481-#: src/screens/Deactivated.tsx:88
94919491+#: src/screens/Deactivated.tsx:86
94829492#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
94839493#: src/view/screens/Storybook/Admonitions.tsx:56
94849494msgid "Something went wrong, please try again"
···95099519msgid "Sorry, we're unable to load account suggestions at this time."
95109520msgstr ""
9511952195129512-#: src/App.native.tsx:142
95139513-#: src/App.web.tsx:118
95229522+#: src/App.native.tsx:143
95239523+#: src/App.web.tsx:119
95149524msgid "Sorry! Your session expired. Please sign in again."
95159525msgstr ""
95169526···98969906msgid "That's all, folks!"
98979907msgstr ""
9898990898999899-#: src/screens/VideoFeed/index.tsx:1153
99099909+#: src/screens/VideoFeed/index.tsx:1145
99009910msgid "That's everything!"
99019911msgstr ""
99029912···1008210092msgstr ""
10083100931008410094#. placeholder {0}: e.toString()
1008510085-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:430
1008610086-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:444
1008710087-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455
1009510095+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
1009610096+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:441
1009710097+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:452
1008810098#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117
1008910099#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:128
1009010100#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90
···10309103191031010320#. placeholder {0}: niceDate(i18n, createdAt)
1031110321#. placeholder {1}: niceDate(i18n, indexedAt)
1031210312-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:740
1032210322+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
1031310323msgid "This post claims to have been created on <0>{0}</0>, but was first seen by Bluesky on <1>{1}</1>."
1031410324msgstr ""
1031510325···1033710347msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
1033810348msgstr ""
10339103491034010340-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:813
1035010350+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:805
1034110351msgid "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."
1034210352msgstr ""
1034310353···1041410424msgid "This will remove @{0} from the quick access list."
1041510425msgstr ""
10416104261041710417-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
1042710427+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
1041810428msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
1041910429msgstr ""
1042010430···10511105211051210522#: src/components/dms/MessageContextMenu.tsx:139
1051310523#: src/components/dms/MessageContextMenu.tsx:141
1051410514-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
1051510515-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:512
1051610516-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:640
1051710517-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
1052410524+#: src/components/Post/Translated/index.tsx:139
1052510525+#: src/components/Post/Translated/index.tsx:146
1052610526+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1051810528msgid "Translate"
1051910529msgstr ""
10520105301052110521-#: src/components/Post/Translated/index.tsx:78
1053110531+#: src/components/Post/Translated/index.tsx:292
1052210532msgid "Translated"
1052310533msgstr ""
10524105341052510525-#: src/components/Post/Translated/index.tsx:76
1052610526-msgid "Translated from {langName}"
1052710527-msgstr ""
1052810528-1052910529-#: src/components/Post/Translated/index.tsx:50
1053010530-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:626
1053510535+#: src/components/Post/Translated/index.tsx:89
1053610536+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053110538msgid "Translating…"
1053210539msgstr ""
1053310540···1056410571#: src/view/com/util/error/ErrorScreen.tsx:104
1056510572msgctxt "action"
1056610573msgid "Try again"
1057410574+msgstr ""
1057510575+1057610576+#: src/components/Post/Translated/index.tsx:205
1057710577+#: src/components/Post/Translated/index.tsx:213
1057810578+msgid "Try Google Translate"
1056710579msgstr ""
10568105801056910581#: src/lib/interests.ts:74
···1070110713msgid "Unfollow account"
1070210714msgstr ""
10703107151070410704-#: src/screens/VideoFeed/index.tsx:856
1071610716+#: src/screens/VideoFeed/index.tsx:852
1070510717msgid "Unfollows the user"
1070610718msgstr ""
1070710719···10735107471073610748#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
1073710749#. placeholder {0}: post.likeCount || 0
1073810738-#: src/components/PostControls/index.tsx:278
1075010750+#: src/components/PostControls/index.tsx:270
1073910751msgid "Unlike ({0, plural, one {# like} other {# likes}})"
1074010752msgstr ""
1074110753···1075610768msgid "Unmute {0}"
1075710769msgstr ""
10758107701075910759-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:693
1076010760-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
1077110771+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:698
1077210772+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:704
1076110773#: src/view/com/profile/ProfileMenu.tsx:437
1076210774#: src/view/com/profile/ProfileMenu.tsx:443
1076310775msgid "Unmute account"
···1077210784msgid "Unmute list"
1077310785msgstr ""
10774107861077510775-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
1077610776-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
1078710787+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
1078810788+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
1077710789msgid "Unmute thread"
1077810790msgstr ""
1077910791···1079810810msgid "Unpin from home"
1079910811msgstr ""
10800108121080110801-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
1080210802-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:492
1081310813+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
1081410814+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
1080310815msgid "Unpin from profile"
1080410816msgstr ""
1080510817···1087210884msgid "Update your email"
1087310885msgstr ""
10874108861087510875-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350
1088710887+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351
1087610888msgctxt "toast"
1087710889msgid "Updating quote attachment failed"
1087810890msgstr ""
10879108911088010880-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:402
1089210892+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
1088110893msgctxt "toast"
1088210894msgid "Updating reply visibility failed"
1088310895msgstr ""
···1117611188msgstr ""
11177111891117811190#. placeholder {0}: sanitizeHandle( post.author.handle, '@', )
1117911179-#: src/screens/VideoFeed/index.tsx:1114
1119111191+#: src/screens/VideoFeed/index.tsx:1107
1118011192msgid "Video from {0}. Tap to play or pause the video"
1118111193msgstr ""
1118211194···1118511197msgid "Video Games"
1118611198msgstr ""
11187111991118811188-#: src/screens/VideoFeed/index.tsx:1111
1120011200+#: src/screens/VideoFeed/index.tsx:1106
1118911201msgid "Video is paused"
1119011202msgstr ""
11191112031119211192-#: src/screens/VideoFeed/index.tsx:1111
1120411204+#: src/screens/VideoFeed/index.tsx:1106
1119311205msgid "Video is playing"
1119411206msgstr ""
1119511207···1122411236msgstr ""
11225112371122611238#. placeholder {0}: profile.handle
1122711227-#: src/screens/Profile/Header/Shell.tsx:262
1123911239+#: src/screens/Profile/Header/Shell.tsx:267
1122811240msgid "View {0}'s avatar"
1122911241msgstr ""
1123011242···1123311245#. placeholder {0}: profile.handle
1123411246#: src/screens/Profile/components/ProfileFeedHeader.tsx:459
1123511247#: src/screens/Search/components/SearchProfileCard.tsx:36
1123611236-#: src/screens/VideoFeed/index.tsx:815
1124811248+#: src/screens/VideoFeed/index.tsx:813
1123711249#: src/view/com/notifications/NotificationFeedItem.tsx:609
1123811250msgid "View {0}'s profile"
1123911251msgstr ""
···1125911271msgid "View debug entry"
1126011272msgstr ""
11261112731126211262-#: src/screens/VideoFeed/index.tsx:679
1126311263-#: src/screens/VideoFeed/index.tsx:697
1127411274+#: src/screens/VideoFeed/index.tsx:678
1127511275+#: src/screens/VideoFeed/index.tsx:696
1126411276msgid "View details"
1126511277msgstr ""
1126611278···1129611308msgid "View profile"
1129711309msgstr ""
11298113101131111311+#: src/screens/Profile/Header/Shell.tsx:173
1131211312+msgid "View profile banner"
1131311313+msgstr ""
1131411314+1129911315#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1130011316msgid "View the avatar"
1130111317msgstr ""
···1158511601msgid "We've confirmed your age assurance status. You can now close this dialog."
1158611602msgstr ""
11587116031158811588-#: src/screens/Deactivated.tsx:119
1160411604+#: src/screens/Deactivated.tsx:117
1158911605msgid "Welcome back!"
1159011606msgstr ""
1159111607···1173311749msgid "Yes, delete this starter pack"
1173411750msgstr ""
11735117511173611736-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:806
1175211752+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800
1173711753msgid "Yes, detach"
1173811754msgstr ""
11739117551174011740-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:816
1175611756+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:807
1174111757msgid "Yes, hide"
1174211758msgstr ""
11743117591174411744-#: src/screens/Deactivated.tsx:141
1176011760+#: src/screens/Deactivated.tsx:139
1174511761msgid "Yes, reactivate my account"
1174611762msgstr ""
1174711763···1186111877msgid "You can only select one video at a time."
1186211878msgstr ""
11863118791186411864-#: src/screens/Deactivated.tsx:127
1188011880+#: src/screens/Deactivated.tsx:125
1186511881msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
1186611882msgstr ""
1186711883···1205912075msgstr ""
12060120761206112077#. placeholder {0}: currentAccount?.handle
1206212062-#: src/screens/Deactivated.tsx:122
1207812078+#: src/screens/Deactivated.tsx:120
1206312079msgid "You previously deactivated @{0}."
1206412080msgstr ""
1206512081···1209312109msgid "You will no longer receive notifications for {0}"
1209412110msgstr ""
12095121111209612096-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:239
1211212112+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:243
1209712113msgid "You will no longer receive notifications for this thread"
1209812114msgstr ""
12099121151210012100-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:229
1211612116+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:234
1210112117msgid "You will now receive notifications for this thread"
1210212118msgstr ""
1210312119···1215212168msgid "You're in line"
1215312169msgstr ""
12154121701215512155-#: src/screens/Deactivated.tsx:83
1217112171+#: src/screens/Deactivated.tsx:81
1215612172#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
1215712173msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
1215812174msgstr ""
···1220212218msgid "You've reached your daily limit for video uploads (too many videos)"
1220312219msgstr ""
12204122201220512205-#: src/screens/VideoFeed/index.tsx:1162
1222112221+#: src/screens/VideoFeed/index.tsx:1154
1220612222msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
1220712223msgstr ""
1220812224
+19-19
src/locale/locales/km/messages.po
···88"Language: km\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Khmer\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ជំនួស"
11581158···11701170msgid "Alt Text"
11711171msgstr "អត្ថបទជំនួស"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "អត្ថបទជំនួសពិពណ៌នារូបភាពសម្រាប់អ្នកប្រើប្រាស់ពិការភ្នែក និងភ្នែកទាប និងជួយផ្តល់បរិបទដល់មនុស្សគ្រប់គ្នា"
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "ផ្លាស់ប្តូរ"
···20202020msgid "Change report reason"
20212021msgstr ""
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "កែរូបភាព"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "លាក់ការឆ្លើយតបនេះ?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr ""
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "លុបរូបភាព"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "ជ្រើសរើសរូបអារម្មណ៍ {emojiName} ជារូបតំណាងរបស់អ្នក"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "បកប្រែ"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "ព្យាយាមម្តងទៀត"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+25-25
src/locale/locales/ko/messages.po
···88"Language: ko\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Korean\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "대체 텍스트"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "대체 텍스트는 시각장애인과 저시력 사용자를 위해 이미지를 설명하며 모든 사용자의 이해를 돕습니다."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "캐시태그 {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "변경"
···20202020msgid "Change report reason"
20212021msgstr "신고 이유 변경"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025-msgstr ""
20252025+msgstr "출발어 변경"
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
20282028msgid "Change your password"
···3123312331243124#: src/lib/translation/index.tsx:265
31253125msgid "Device failed to translate :("
31263126-msgstr ""
31263126+msgstr "기기에서 번역하지 못했습니다."
3127312731283128#: src/components/WhoCanReply.tsx:222
31293129msgid "Dialog: adjust who can interact with this post"
···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "이미지 편집하기"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "이 답글을 숨기시겠습니까?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···7713771377147714#: src/screens/Profile/Header/Shell.tsx:174
77157715msgid "Profile banner placeholder"
77167716-msgstr ""
77167716+msgstr "프로필 배너 자리 표시자"
7717771777187718#: src/lib/strings/errors.ts:40
77197719msgid "Profile not found"
···80308030msgid "Remove from your feeds?"
80318031msgstr "내 피드에서 제거하시겠습니까?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "이미지 제거"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "{emojiName} 이모티콘을 아바타로 선택하기"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr "출발어 선택"
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "번역"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr "번역됨"
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056910569-msgstr "다른 검색어를 사용해 보거나 <0>검색 필터 사용 방법(영어)</0>에 대해 읽어보세요."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569+msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
1057210572msgctxt "action"
1057310573msgid "Try again"
1057410574msgstr "다시 시도"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579-msgstr ""
1057910579+msgstr "Google 번역 사용"
10580105801058110581#: src/lib/interests.ts:74
1058210582msgid "TV"
···11310113101131111311#: src/screens/Profile/Header/Shell.tsx:173
1131211312msgid "View profile banner"
1131311313-msgstr ""
1131311313+msgstr "프로필 배너 보기"
11314113141131511315#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1131611316msgid "View the avatar"
+198-182
src/locale/locales/lt/messages.po
···88"Language: lt\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Lithuanian\n"
1414"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"
···558558#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0)
559559#. placeholder {0}: formatPostStatCount(post.likeCount)
560560#. placeholder {1}: post.likeCount
561561-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
561561+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:489
562562msgid "<0>{0}</0> {1, plural, one {like} other {likes}}"
563563msgstr ""
564564565565#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0)
566566#. placeholder {0}: formatPostStatCount(post.quoteCount)
567567#. placeholder {1}: post.quoteCount
568568-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
568568+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471
569569msgid "<0>{0}</0> {1, plural, one {quote} other {quotes}}"
570570msgstr ""
571571572572#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0)
573573#. placeholder {0}: formatPostStatCount(post.repostCount)
574574#. placeholder {1}: post.repostCount
575575-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465
575575+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
576576msgid "<0>{0}</0> {1, plural, one {repost} other {reposts}}"
577577msgstr ""
578578579579#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0)
580580#. placeholder {0}: formatPostStatCount(post.bookmarkCount)
581581#. placeholder {1}: post.bookmarkCount
582582-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:516
582582+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
583583msgid "<0>{0}</0> {1, plural, one {save} other {saves}}"
584584msgstr ""
585585···733733msgid "Account"
734734msgstr ""
735735736736-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:425
736736+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:422
737737#: src/screens/Messages/components/RequestButtons.tsx:97
738738#: src/view/com/profile/ProfileMenu.tsx:182
739739msgctxt "toast"
···753753msgid "Account is deactivated"
754754msgstr ""
755755756756-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450
756756+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:447
757757#: src/view/com/profile/ProfileMenu.tsx:158
758758msgctxt "toast"
759759msgid "Account muted"
···792792msgid "Account unfollowed"
793793msgstr ""
794794795795-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:439
795795+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
796796#: src/view/com/profile/ProfileMenu.tsx:148
797797msgctxt "toast"
798798msgid "Account unmuted"
···844844msgstr ""
845845846846#: src/components/dialogs/SwitchAccount.tsx:56
847847-#: src/screens/Deactivated.tsx:186
847847+#: src/screens/Deactivated.tsx:184
848848msgid "Add account"
849849msgstr ""
850850851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:171
855855-#: src/view/com/composer/photos/Gallery.tsx:218
856856-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:97
857857-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:105
854854+#: src/view/com/composer/photos/Gallery.tsx:181
855855+#: src/view/com/composer/photos/Gallery.tsx:228
856856+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
859859msgstr ""
860860···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:189
11551155+#: src/view/com/composer/photos/Gallery.tsx:199
11561156msgid "ALT"
11571157msgstr ""
1158115811591159#: src/screens/Settings/AccessibilitySettings.tsx:55
11601160#: src/view/com/composer/GifAltText.tsx:157
11611161-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:130
11611161+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:132
11621162#: src/view/com/composer/videos/SubtitleDialog.tsx:41
11631163#: src/view/com/composer/videos/SubtitleDialog.tsx:59
11641164#: src/view/com/composer/videos/SubtitleDialog.tsx:110
···11701170msgid "Alt Text"
11711171msgstr ""
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:262
11731173+#: src/view/com/composer/photos/Gallery.tsx:273
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr ""
1176117611771177#. placeholder {0}: i18n.number(MAX_ALT_TEXT)
11781178#: src/view/com/composer/GifAltText.tsx:182
11791179-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:151
11791179+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:153
11801180msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
11811181msgstr ""
11821182···14421442msgstr ""
1443144314441444#. placeholder {0}: niceDate(i18n, createdAt, 'medium')
14451445-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:728
14451445+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623
14461446msgid "Archived from {0}"
14471447msgstr ""
1448144814491449-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
14501450-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:737
14491449+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:594
14501450+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
14511451msgid "Archived post"
14521452msgstr ""
14531453···15051505msgid "Artistic or non-erotic nudity."
15061506msgstr ""
1507150715081508-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563
15091509-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:565
15081508+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:576
15091509+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
15101510msgid "Assign topic for algo"
15111511msgstr ""
15121512···15411541#: src/screens/Login/SetNewPasswordForm.tsx:178
15421542#: src/screens/Messages/components/ChatDisabled.tsx:146
15431543#: src/screens/Messages/components/ChatDisabled.tsx:147
15441544-#: src/screens/Profile/Header/Shell.tsx:179
15441544+#: src/screens/Profile/Header/Shell.tsx:184
15451545#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
15461546#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
15471547#: src/screens/Signup/BackNextButtons.tsx:42
···16181618msgid "Birthday"
16191619msgstr ""
1620162016211621-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:826
16211621+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:814
16221622#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
16231623#: src/view/com/profile/ProfileMenu.tsx:553
16241624msgid "Block"
···1626162616271627#: src/components/dms/ConvoMenu.tsx:273
16281628#: src/components/dms/ConvoMenu.tsx:276
16291629-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:711
16301630-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:713
16291629+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:716
16301630+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:718
16311631#: src/screens/Messages/components/RequestButtons.tsx:150
16321632#: src/screens/Messages/components/RequestButtons.tsx:152
16331633#: src/view/com/profile/ProfileMenu.tsx:459
···16351635msgid "Block account"
16361636msgstr ""
1637163716381638-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:821
16381638+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
16391639#: src/view/com/profile/ProfileMenu.tsx:536
16401640msgid "Block Account?"
16411641msgstr ""
···16871687msgid "Blocked Accounts"
16881688msgstr ""
1689168916901690-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:823
16901690+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812
16911691#: src/view/com/profile/ProfileMenu.tsx:548
16921692msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
16931693msgstr ""
···17171717msgid "Bluesky"
17181718msgstr ""
1719171917201720-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:753
17201720+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:648
17211721msgid "Bluesky cannot confirm the authenticity of the claimed date."
17221722msgstr ""
17231723···19211921#: src/features/liveNow/components/GoLiveDialog.tsx:248
19221922#: src/features/liveNow/components/GoLiveDialog.tsx:254
19231923#: src/lib/media/picker.tsx:38
19241924-#: src/screens/Deactivated.tsx:152
19241924+#: src/screens/Deactivated.tsx:150
19251925#: src/screens/Profile/Header/EditProfileDialog.tsx:219
19261926#: src/screens/Profile/Header/EditProfileDialog.tsx:227
19271927#: src/screens/Search/Shell.tsx:396
···19461946msgid "Cancel quote post"
19471947msgstr ""
1948194819491949-#: src/screens/Deactivated.tsx:146
19491949+#: src/screens/Deactivated.tsx:144
19501950msgid "Cancel reactivation and sign out"
19511951msgstr ""
19521952···19541954msgid "Cancel search"
19551955msgstr ""
1956195619571957-#: src/components/PostControls/index.tsx:108
19581958-#: src/components/PostControls/index.tsx:139
19591959-#: src/components/PostControls/index.tsx:167
19571957+#: src/components/PostControls/index.tsx:109
19581958+#: src/components/PostControls/index.tsx:138
19591959+#: src/components/PostControls/index.tsx:164
19601960#: src/state/shell/composer/index.tsx:108
19611961msgid "Cannot interact with a blocked user"
19621962msgstr ""
···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:150
19771977+#: src/components/Post/Translated/index.tsx:395
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr ""
···20202020msgid "Change report reason"
20212021msgstr ""
2022202220232023-#: src/components/Post/Translated/index.tsx:146
20242024-msgid "Change source language"
20232023+#: src/components/Post/Translated/index.tsx:385
20242024+msgid "Change the source language"
20252025msgstr ""
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
···26892689msgid "Copy post at:// URI"
26902690msgstr ""
2691269126922692-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:518
26932693-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520
26922692+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:531
26932693+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
26942694msgid "Copy post text"
26952695msgstr ""
26962696···29702970msgstr ""
2971297129722972#: src/components/dms/MessageContextMenu.tsx:204
29732973-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
29732973+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:772
29742974#: src/screens/Messages/components/ChatStatusInfo.tsx:55
29752975#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
29762976#: src/screens/Settings/AppPasswords.tsx:213
···30433043msgid "Delete my account"
30443044msgstr ""
3045304530463046-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:751
30473047-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:753
30463046+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756
30473047+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758
30483048#: src/view/com/composer/Composer.tsx:1430
30493049msgid "Delete post"
30503050msgstr ""
···30623062msgid "Delete this list?"
30633063msgstr ""
3064306430653065-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765
30653065+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:769
30663066msgid "Delete this post?"
30673067msgstr ""
30683068···30933093msgstr ""
3094309430953095#: src/view/com/composer/GifAltText.tsx:153
30963096-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:126
30963096+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128
30973097msgid "Descriptive alt text"
30983098msgstr ""
3099309931003100-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:655
31013101-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665
31003100+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660
31013101+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:670
31023102msgid "Detach quote"
31033103msgstr ""
3104310431053105-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
31053105+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:797
31063106msgid "Detach quote post?"
31073107msgstr ""
31083108···31213121msgid "Developer options"
31223122msgstr ""
3123312331243124+#: src/lib/translation/index.tsx:265
31253125+msgid "Device failed to translate :("
31263126+msgstr ""
31273127+31243128#: src/components/WhoCanReply.tsx:222
31253129msgid "Dialog: adjust who can interact with this post"
31263130msgstr ""
···33403344msgid "Double tap to close the dialog"
33413345msgstr ""
3342334633433343-#: src/screens/VideoFeed/index.tsx:1119
33473347+#: src/screens/VideoFeed/index.tsx:1111
33443348msgid "Double tap to like"
33453349msgstr ""
33463350···3442344634433447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34443448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34453445-#: src/view/com/composer/photos/Gallery.tsx:196
34493449+#: src/view/com/composer/photos/Gallery.tsx:206
34463450msgid "Edit image"
34473451msgstr ""
3448345234493449-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:732
34503450-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745
34533453+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
34543454+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:750
34513455msgid "Edit interaction settings"
34523456msgstr ""
34533457···38033807msgid "Expand post text"
38043808msgstr ""
3805380938063806-#: src/screens/VideoFeed/index.tsx:991
38103810+#: src/screens/VideoFeed/index.tsx:987
38073811msgid "Expands or collapses post text"
38083812msgstr ""
38093813···38463850msgid "Explicit sexual images."
38473851msgstr ""
3848385238493849-#: src/Navigation.tsx:808
38533853+#: src/Navigation.tsx:809
38503854#: src/screens/Search/Shell.tsx:354
38513855#: src/view/shell/desktop/LeftNav.tsx:689
38523856#: src/view/shell/Drawer.tsx:417
···39323936msgid "Failed to delete message"
39333937msgstr ""
3934393839353935-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:214
39393939+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219
39363940msgid "Failed to delete post, please try again"
39373941msgstr ""
39383942···40904094msgid "Failed to submit appeal, please try again."
40914095msgstr ""
4092409640934093-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:247
40974097+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:249
40944098msgid "Failed to toggle thread mute, please try again"
40954099msgstr ""
40964100···41814185msgid "Feedback"
41824186msgstr ""
4183418741844184-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:301
41854185-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:325
41884188+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:303
41894189+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:326
41864190msgctxt "toast"
41874191msgid "Feedback sent to feed operator"
41884192msgstr ""
···43434347#: src/components/ProfileHoverCard/index.web.tsx:508
43444348#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:153
43454349#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:388
43464346-#: src/screens/VideoFeed/index.tsx:875
43504350+#: src/screens/VideoFeed/index.tsx:870
43474351#: src/view/com/notifications/NotificationFeedItem.tsx:841
43484352#: src/view/com/notifications/NotificationFeedItem.tsx:848
43494353msgid "Follow"
···43554359msgid "Follow {0}"
43564360msgstr ""
4357436143584358-#: src/screens/VideoFeed/index.tsx:852
43624362+#: src/screens/VideoFeed/index.tsx:849
43594363msgid "Follow {handle}"
43604364msgstr ""
43614365···44504454#: src/components/ProfileHoverCard/index.web.tsx:507
44514455#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:156
44524456#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:384
44534453-#: src/screens/VideoFeed/index.tsx:873
44574457+#: src/screens/VideoFeed/index.tsx:868
44544458#: src/view/com/notifications/NotificationFeedItem.tsx:819
44554459#: src/view/com/notifications/NotificationFeedItem.tsx:836
44564460msgid "Following"
···44714475msgid "Following {0}"
44724476msgstr ""
4473447744744474-#: src/screens/VideoFeed/index.tsx:851
44784478+#: src/screens/VideoFeed/index.tsx:848
44754479msgid "Following {handle}"
44764480msgstr ""
44774481···46804684#: src/screens/ProfileList/components/ErrorScreen.tsx:35
46814685#: src/screens/ProfileList/components/ErrorScreen.tsx:41
46824686#: src/screens/VideoFeed/components/Header.tsx:163
46834683-#: src/screens/VideoFeed/index.tsx:1180
46844684-#: src/screens/VideoFeed/index.tsx:1184
46854685-#: src/view/com/auth/LoggedOut.tsx:92
46874687+#: src/screens/VideoFeed/index.tsx:1172
46884688+#: src/screens/VideoFeed/index.tsx:1176
46894689+#: src/view/com/auth/LoggedOut.tsx:93
46864690#: src/view/com/profile/ProfileFollowers.tsx:178
46874691#: src/view/com/profile/ProfileFollowers.tsx:179
46884692#: src/view/screens/NotFound.tsx:58
···49094913msgid "Hidden"
49104914msgstr ""
4911491549124912-#: src/screens/VideoFeed/index.tsx:648
49164916+#: src/screens/VideoFeed/index.tsx:647
49134917msgid "Hidden by your moderation settings."
49144918msgstr ""
49154919···49224926#: src/components/moderation/ContentHider.tsx:220
49234927#: src/components/moderation/LabelPreference.tsx:141
49244928#: src/components/moderation/PostHider.tsx:140
49254925-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781
49294929+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:780
49264930#: src/lib/moderation/useLabelBehaviorDescription.ts:18
49274931#: src/lib/moderation/useLabelBehaviorDescription.ts:23
49284932#: src/lib/moderation/useLabelBehaviorDescription.ts:28
···49494953msgid "Hide lists"
49504954msgstr ""
4951495549524952-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:612
49534953-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618
49564956+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
49574957+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
49544958msgid "Hide post for me"
49554959msgstr ""
4956496049574957-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:629
49584958-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:639
49614961+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
49624962+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:644
49594963msgid "Hide reply for everyone"
49604964msgstr ""
4961496549624962-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:611
49634963-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:617
49664966+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
49674967+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
49644968msgid "Hide reply for me"
49654969msgstr ""
49664970···49734977msgid "Hide this event"
49744978msgstr ""
4975497949764976-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
49804980+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
49774981msgid "Hide this post?"
49784982msgstr ""
4979498349804980-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
49814981-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
49844984+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777
49854985+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:804
49824986msgid "Hide this reply?"
49834987msgstr ""
4984498849854985-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632
49864986-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
49894989+#: src/components/Post/Translated/index.tsx:192
49904990+#: src/components/Post/Translated/index.tsx:318
49914991+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49874993msgid "Hide translation"
49884994msgstr ""
49894995···50505056msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
50515057msgstr ""
5052505850535053-#: src/Navigation.tsx:803
50545054-#: src/Navigation.tsx:823
50595059+#: src/Navigation.tsx:804
50605060+#: src/Navigation.tsx:824
50555061#: src/view/shell/bottom-bar/BottomBar.tsx:177
50565062#: src/view/shell/desktop/LeftNav.tsx:671
50575063#: src/view/shell/Drawer.tsx:443
···51525158msgid "If you need to update your email, <0>click here</0>."
51535159msgstr ""
5154516051555155-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767
51615161+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
51565162msgid "If you remove this post, you won't be able to recover it."
51575163msgstr ""
51585164···53225328msgid "Invalid handle. Please try a different one."
53235329msgstr ""
5324533053255325-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:397
53315331+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:396
53265332msgctxt "toast"
53275333msgid "Invalid interaction settings."
53285334msgstr ""
···5637564356385644#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
56395645#. placeholder {0}: post.likeCount || 0
56405640-#: src/components/PostControls/index.tsx:288
56465646+#: src/components/PostControls/index.tsx:278
56415647msgid "Like ({0, plural, one {# like} other {# likes}})"
56425648msgstr ""
56435649···57045710msgid "Likes of your reposts notifications"
57055711msgstr ""
5706571257075707-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:499
57135713+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
57085714msgid "Likes on this post"
57095715msgstr ""
57105716···60516057msgid "Message options"
60526058msgstr ""
6053605960546054-#: src/Navigation.tsx:818
60606060+#: src/Navigation.tsx:819
60556061msgid "Messages"
60566062msgstr ""
60576063···61846190msgid "Mute {0}"
61856191msgstr ""
6186619261876187-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
61886188-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700
61936193+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
61946194+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705
61896195#: src/view/com/profile/ProfileMenu.tsx:438
61906196#: src/view/com/profile/ProfileMenu.tsx:445
61916197msgid "Mute account"
···62376243msgid "Mute this word until you unmute it"
62386244msgstr ""
6239624562406240-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
62416241-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
62466246+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
62476247+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
62426248msgid "Mute thread"
62436249msgstr ""
6244625062456245-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:592
62466246-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594
62516251+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:603
62526252+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:605
62476253msgid "Mute words & tags"
62486254msgstr ""
62496255···67266732msgstr ""
6727673367286734#: src/Navigation.tsx:575
67296729-#: src/Navigation.tsx:813
67356735+#: src/Navigation.tsx:814
67306736#: src/screens/Notifications/ActivityList.tsx:31
67316737#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
67326738#: src/screens/Settings/NotificationSettings/index.tsx:93
···67906796msgstr ""
6791679767926798#: src/screens/Login/PasswordUpdatedForm.tsx:37
67936793-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:759
67996799+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:654
67946800msgid "Okay"
67956801msgstr ""
67966802···69286934msgid "Open pack"
69296935msgstr ""
6930693669316931-#: src/components/PostControls/PostMenu/index.tsx:66
69376937+#: src/components/PostControls/PostMenu/index.tsx:67
69326938msgid "Open post options menu"
69336939msgstr ""
69346940···70607066msgid "Options:"
70617067msgstr ""
7062706870637063-#: src/screens/Deactivated.tsx:194
70697069+#: src/screens/Deactivated.tsx:192
70647070msgid "Or, continue with another account."
70657071msgstr ""
7066707270677067-#: src/screens/Deactivated.tsx:181
70737073+#: src/screens/Deactivated.tsx:179
70687074msgid "Or, sign in to one of your other accounts."
70697075msgstr ""
70707076···72607266msgid "Pin to Home"
72617267msgstr ""
7262726872637263-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:486
72647264-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:493
72697269+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
72707270+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
72657271msgid "Pin to your profile"
72667272msgstr ""
72677273···75247530msgid "Post by @{0}"
75257531msgstr ""
7526753275277527-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:194
75337533+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199
75287534msgctxt "toast"
75297535msgid "Post deleted"
75307536msgstr ""
···75337539msgid "Post failed to upload. Please check your Internet connection and try again."
75347540msgstr ""
7535754175367536-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:143
75377537-#: src/screens/PostThread/components/ThreadItemPost.tsx:112
75387538-#: src/screens/PostThread/components/ThreadItemTreePost.tsx:108
75397539-#: src/screens/VideoFeed/index.tsx:552
75427542+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:130
75437543+#: src/screens/PostThread/components/ThreadItemPost.tsx:113
75447544+#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109
75457545+#: src/screens/VideoFeed/index.tsx:551
75407546msgid "Post has been deleted"
75417547msgstr ""
75427548···77037709#: src/view/shell/Drawer.tsx:80
77047710#: src/view/shell/Drawer.tsx:599
77057711msgid "Profile"
77127712+msgstr ""
77137713+77147714+#: src/screens/Profile/Header/Shell.tsx:174
77157715+msgid "Profile banner placeholder"
77067716msgstr ""
7707771777087718#: src/lib/strings/errors.ts:40
···77867796msgid "Quote post"
77877797msgstr ""
7788779877897789-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
77997799+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:346
77907800msgid "Quote post was re-attached"
77917801msgstr ""
7792780277937793-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
78037803+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:345
77947804msgid "Quote post was successfully detached"
77957805msgstr ""
77967806···78087818msgid "Quotes"
78097819msgstr ""
7810782078117811-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:481
78217821+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467
78127822msgid "Quotes of this post"
78137823msgstr ""
78147824···78207830msgid "Rate limit exceeded. Please try again later."
78217831msgstr ""
7822783278237823-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654
78247824-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664
78337833+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659
78347834+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:669
78257835msgid "Re-attach quote"
78267836msgstr ""
78277837···78297839msgid "React with {emoji}"
78307840msgstr ""
7831784178327832-#: src/screens/Deactivated.tsx:135
78427842+#: src/screens/Deactivated.tsx:133
78337843msgid "Reactivate your account"
78347844msgstr ""
78357845···78487858msgid "Read blog post"
78497859msgstr ""
7850786078517851-#: src/screens/VideoFeed/index.tsx:992
78617861+#: src/screens/VideoFeed/index.tsx:988
78527862msgid "Read less"
78537863msgstr ""
7854786478557855-#: src/screens/VideoFeed/index.tsx:992
78657865+#: src/screens/VideoFeed/index.tsx:988
78567866msgid "Read more"
78577867msgstr ""
78587868···80208030msgid "Remove from your feeds?"
80218031msgstr ""
8022803280238023-#: src/view/com/composer/photos/Gallery.tsx:205
80338033+#: src/view/com/composer/photos/Gallery.tsx:215
80248034msgid "Remove image"
80258035msgstr ""
80268036···8172818281738183#. Accessibility label for the reply button, verb form followed by number of replies and noun form
81748184#. placeholder {0}: post.replyCount || 0
81758175-#: src/components/PostControls/index.tsx:242
81858185+#: src/components/PostControls/index.tsx:236
81768186msgid "Reply ({0, plural, one {# reply} other {# replies}})"
81778187msgstr ""
81788188···81988208msgid "Reply sorting"
81998209msgstr ""
8200821082018201-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
82118211+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:384
82028212msgctxt "toast"
82038213msgid "Reply visibility updated"
82048214msgstr ""
8205821582068206-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:382
82168216+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
82078217msgid "Reply was successfully hidden"
82088218msgstr ""
82098219···82468256msgid "Report message"
82478257msgstr ""
8248825882498249-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:720
82508250-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:722
82598259+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:725
82608260+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
82518261msgid "Report post"
82528262msgstr ""
82538263···83398349msgid "Reposts"
83408350msgstr ""
8341835183428342-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:461
83528352+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:447
83438353msgid "Reposts of this post"
83448354msgstr ""
83458355···8482849284838493#: src/screens/ProfileList/components/ErrorScreen.tsx:36
84848494#: src/screens/Settings/components/ChangeHandleDialog.tsx:579
84858485-#: src/screens/VideoFeed/index.tsx:1181
84958495+#: src/screens/VideoFeed/index.tsx:1173
84868496#: src/view/screens/NotFound.tsx:61
84878497msgid "Returns to previous page"
84888498msgstr ""
···85088518#: src/view/com/composer/GifAltText.tsx:205
85098519#: src/view/com/composer/photos/EditImageDialog.web.tsx:63
85108520#: src/view/com/composer/photos/EditImageDialog.web.tsx:76
85118511-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:165
85128512-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:175
85218521+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:167
85228522+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:177
85138523msgid "Save"
85148524msgstr ""
85158525···89008910msgid "Select the {emojiName} emoji as your avatar"
89018911msgstr ""
8902891289038903-#: src/components/Post/Translated/index.tsx:156
89138913+#: src/components/Post/Translated/index.tsx:402
89048914msgid "Select the source language"
89058915msgstr ""
89068916···91999209#: src/components/moderation/ScreenHider.tsx:179
92009210#: src/components/moderation/ScreenHider.tsx:182
92019211#: src/screens/List/ListHiddenScreen.tsx:194
92029202-#: src/screens/VideoFeed/index.tsx:651
92039203-#: src/screens/VideoFeed/index.tsx:657
92129212+#: src/screens/VideoFeed/index.tsx:650
92139213+#: src/screens/VideoFeed/index.tsx:656
92049214msgid "Show anyway"
92059215msgstr ""
92069216···92179227msgid "Show customization options"
92189228msgstr ""
9219922992209220-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:549
92219221-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:551
92309230+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562
92319231+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564
92229232msgid "Show less like this"
92239233msgstr ""
92249234···92399249msgid "Show More"
92409250msgstr ""
9241925192429242-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:541
92439243-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
92529252+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:554
92539253+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556
92449254msgid "Show more like this"
92459255msgstr ""
92469256···92669276msgid "Show replies as"
92679277msgstr ""
9268927892699269-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:628
92709270-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:638
92799279+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
92809280+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643
92719281msgid "Show reply for everyone"
92729282msgstr ""
92739283···92949304msgid "Show when you’re live"
92959305msgstr ""
9296930692979297-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:700
93079307+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:595
92989308msgid "Shows information about when this post was created"
92999309msgstr ""
93009310···93409350msgid "Sign in as..."
93419351msgstr ""
9342935293439343-#: src/screens/Deactivated.tsx:197
93449344-#: src/screens/Deactivated.tsx:203
93539353+#: src/screens/Deactivated.tsx:195
93549354+#: src/screens/Deactivated.tsx:201
93459355msgid "Sign in or create an account"
93469356msgstr ""
93479357···93579367msgid "Sign in to Bluesky or create a new account"
93589368msgstr ""
9359936993609360-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:527
93619361-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:529
93709370+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540
93719371+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:542
93629372msgid "Sign in to view post"
93639373msgstr ""
93649374···9478948894799489#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
94809490#: src/components/moderation/ReportDialog/index.tsx:273
94819481-#: src/screens/Deactivated.tsx:88
94919491+#: src/screens/Deactivated.tsx:86
94829492#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
94839493#: src/view/screens/Storybook/Admonitions.tsx:56
94849494msgid "Something went wrong, please try again"
···95099519msgid "Sorry, we're unable to load account suggestions at this time."
95109520msgstr ""
9511952195129512-#: src/App.native.tsx:142
95139513-#: src/App.web.tsx:118
95229522+#: src/App.native.tsx:143
95239523+#: src/App.web.tsx:119
95149524msgid "Sorry! Your session expired. Please sign in again."
95159525msgstr ""
95169526···98969906msgid "That's all, folks!"
98979907msgstr ""
9898990898999899-#: src/screens/VideoFeed/index.tsx:1153
99099909+#: src/screens/VideoFeed/index.tsx:1145
99009910msgid "That's everything!"
99019911msgstr ""
99029912···1008210092msgstr ""
10083100931008410094#. placeholder {0}: e.toString()
1008510085-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:430
1008610086-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:444
1008710087-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455
1009510095+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
1009610096+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:441
1009710097+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:452
1008810098#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117
1008910099#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:128
1009010100#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90
···10309103191031010320#. placeholder {0}: niceDate(i18n, createdAt)
1031110321#. placeholder {1}: niceDate(i18n, indexedAt)
1031210312-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:740
1032210322+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635
1031310323msgid "This post claims to have been created on <0>{0}</0>, but was first seen by Bluesky on <1>{1}</1>."
1031410324msgstr ""
1031510325···1033710347msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
1033810348msgstr ""
10339103491034010340-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:813
1035010350+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:805
1034110351msgid "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."
1034210352msgstr ""
1034310353···1041410424msgid "This will remove @{0} from the quick access list."
1041510425msgstr ""
10416104261041710417-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
1042710427+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
1041810428msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
1041910429msgstr ""
1042010430···10511105211051210522#: src/components/dms/MessageContextMenu.tsx:139
1051310523#: src/components/dms/MessageContextMenu.tsx:141
1051410514-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
1051510515-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:512
1051610516-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:640
1051710517-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
1052410524+#: src/components/Post/Translated/index.tsx:139
1052510525+#: src/components/Post/Translated/index.tsx:146
1052610526+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1051810528msgid "Translate"
1051910529msgstr ""
10520105301052110521-#: src/components/Post/Translated/index.tsx:78
1053110531+#: src/components/Post/Translated/index.tsx:292
1052210532msgid "Translated"
1052310533msgstr ""
10524105341052510525-#: src/components/Post/Translated/index.tsx:76
1052610526-msgid "Translated from {langName}"
1052710527-msgstr ""
1052810528-1052910529-#: src/components/Post/Translated/index.tsx:50
1053010530-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:626
1053510535+#: src/components/Post/Translated/index.tsx:89
1053610536+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053110538msgid "Translating…"
1053210539msgstr ""
1053310540···1056410571#: src/view/com/util/error/ErrorScreen.tsx:104
1056510572msgctxt "action"
1056610573msgid "Try again"
1057410574+msgstr ""
1057510575+1057610576+#: src/components/Post/Translated/index.tsx:205
1057710577+#: src/components/Post/Translated/index.tsx:213
1057810578+msgid "Try Google Translate"
1056710579msgstr ""
10568105801056910581#: src/lib/interests.ts:74
···1070110713msgid "Unfollow account"
1070210714msgstr ""
10703107151070410704-#: src/screens/VideoFeed/index.tsx:856
1071610716+#: src/screens/VideoFeed/index.tsx:852
1070510717msgid "Unfollows the user"
1070610718msgstr ""
1070710719···10735107471073610748#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
1073710749#. placeholder {0}: post.likeCount || 0
1073810738-#: src/components/PostControls/index.tsx:278
1075010750+#: src/components/PostControls/index.tsx:270
1073910751msgid "Unlike ({0, plural, one {# like} other {# likes}})"
1074010752msgstr ""
1074110753···1075610768msgid "Unmute {0}"
1075710769msgstr ""
10758107701075910759-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:693
1076010760-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699
1077110771+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:698
1077210772+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:704
1076110773#: src/view/com/profile/ProfileMenu.tsx:437
1076210774#: src/view/com/profile/ProfileMenu.tsx:443
1076310775msgid "Unmute account"
···1077210784msgid "Unmute list"
1077310785msgstr ""
10774107861077510775-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:578
1077610776-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582
1078710787+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:590
1078810788+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
1077710789msgid "Unmute thread"
1077810790msgstr ""
1077910791···1079810810msgid "Unpin from home"
1079910811msgstr ""
10800108121080110801-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
1080210802-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:492
1081310813+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:483
1081410814+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
1080310815msgid "Unpin from profile"
1080410816msgstr ""
1080510817···1087210884msgid "Update your email"
1087310885msgstr ""
10874108861087510875-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350
1088710887+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351
1087610888msgctxt "toast"
1087710889msgid "Updating quote attachment failed"
1087810890msgstr ""
10879108911088010880-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:402
1089210892+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
1088110893msgctxt "toast"
1088210894msgid "Updating reply visibility failed"
1088310895msgstr ""
···1117611188msgstr ""
11177111891117811190#. placeholder {0}: sanitizeHandle( post.author.handle, '@', )
1117911179-#: src/screens/VideoFeed/index.tsx:1114
1119111191+#: src/screens/VideoFeed/index.tsx:1107
1118011192msgid "Video from {0}. Tap to play or pause the video"
1118111193msgstr ""
1118211194···1118511197msgid "Video Games"
1118611198msgstr ""
11187111991118811188-#: src/screens/VideoFeed/index.tsx:1111
1120011200+#: src/screens/VideoFeed/index.tsx:1106
1118911201msgid "Video is paused"
1119011202msgstr ""
11191112031119211192-#: src/screens/VideoFeed/index.tsx:1111
1120411204+#: src/screens/VideoFeed/index.tsx:1106
1119311205msgid "Video is playing"
1119411206msgstr ""
1119511207···1122411236msgstr ""
11225112371122611238#. placeholder {0}: profile.handle
1122711227-#: src/screens/Profile/Header/Shell.tsx:262
1123911239+#: src/screens/Profile/Header/Shell.tsx:267
1122811240msgid "View {0}'s avatar"
1122911241msgstr ""
1123011242···1123311245#. placeholder {0}: profile.handle
1123411246#: src/screens/Profile/components/ProfileFeedHeader.tsx:459
1123511247#: src/screens/Search/components/SearchProfileCard.tsx:36
1123611236-#: src/screens/VideoFeed/index.tsx:815
1124811248+#: src/screens/VideoFeed/index.tsx:813
1123711249#: src/view/com/notifications/NotificationFeedItem.tsx:609
1123811250msgid "View {0}'s profile"
1123911251msgstr ""
···1125911271msgid "View debug entry"
1126011272msgstr ""
11261112731126211262-#: src/screens/VideoFeed/index.tsx:679
1126311263-#: src/screens/VideoFeed/index.tsx:697
1127411274+#: src/screens/VideoFeed/index.tsx:678
1127511275+#: src/screens/VideoFeed/index.tsx:696
1126411276msgid "View details"
1126511277msgstr ""
1126611278···1129611308msgid "View profile"
1129711309msgstr ""
11298113101131111311+#: src/screens/Profile/Header/Shell.tsx:173
1131211312+msgid "View profile banner"
1131311313+msgstr ""
1131411314+1129911315#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1130011316msgid "View the avatar"
1130111317msgstr ""
···1158511601msgid "We've confirmed your age assurance status. You can now close this dialog."
1158611602msgstr ""
11587116031158811588-#: src/screens/Deactivated.tsx:119
1160411604+#: src/screens/Deactivated.tsx:117
1158911605msgid "Welcome back!"
1159011606msgstr ""
1159111607···1173311749msgid "Yes, delete this starter pack"
1173411750msgstr ""
11735117511173611736-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:806
1175211752+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800
1173711753msgid "Yes, detach"
1173811754msgstr ""
11739117551174011740-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:816
1175611756+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:807
1174111757msgid "Yes, hide"
1174211758msgstr ""
11743117591174411744-#: src/screens/Deactivated.tsx:141
1176011760+#: src/screens/Deactivated.tsx:139
1174511761msgid "Yes, reactivate my account"
1174611762msgstr ""
1174711763···1186111877msgid "You can only select one video at a time."
1186211878msgstr ""
11863118791186411864-#: src/screens/Deactivated.tsx:127
1188011880+#: src/screens/Deactivated.tsx:125
1186511881msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
1186611882msgstr ""
1186711883···1205912075msgstr ""
12060120761206112077#. placeholder {0}: currentAccount?.handle
1206212062-#: src/screens/Deactivated.tsx:122
1207812078+#: src/screens/Deactivated.tsx:120
1206312079msgid "You previously deactivated @{0}."
1206412080msgstr ""
1206512081···1209312109msgid "You will no longer receive notifications for {0}"
1209412110msgstr ""
12095121111209612096-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:239
1211212112+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:243
1209712113msgid "You will no longer receive notifications for this thread"
1209812114msgstr ""
12099121151210012100-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:229
1211612116+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:234
1210112117msgid "You will now receive notifications for this thread"
1210212118msgstr ""
1210312119···1215212168msgid "You're in line"
1215312169msgstr ""
12154121701215512155-#: src/screens/Deactivated.tsx:83
1217112171+#: src/screens/Deactivated.tsx:81
1215612172#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
1215712173msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
1215812174msgstr ""
···1220212218msgid "You've reached your daily limit for video uploads (too many videos)"
1220312219msgstr ""
12204122201220512205-#: src/screens/VideoFeed/index.tsx:1162
1222112221+#: src/screens/VideoFeed/index.tsx:1154
1220612222msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
1220712223msgstr ""
1220812224
+19-19
src/locale/locales/ne/messages.po
···88"Language: ne\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Nepali\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "वैकल्पिक"
11581158···11701170msgid "Alt Text"
11711171msgstr "वैकल्पिक पाठ"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "वैकल्पिक पाठले दृष्टिहीन र कमजोर दृष्टि भएका प्रयोगकर्ताहरूका लागि चित्रहरू वर्णन गर्छ, र सबैलाई सन्दर्भ दिन मद्दत गर्दछ।"
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "परिवर्तन गर्नुहोस्"
···20202020msgid "Change report reason"
20212021msgstr ""
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "चित्र सम्पादन गर्नुहोस्"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "यो उत्तर लुकाउनुहोस्?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr ""
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "तस्बिर हटाउनुहोस्"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "{emojiName} इमोजीलाई आफ्नो अवतारको रूपमा चयन गर्नुहोस्"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "अनुवाद गर्नुहोस्"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "पुनः प्रयास गर्नुहोस्"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+19-19
src/locale/locales/nl/messages.po
···88"Language: nl\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Dutch\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Alt-tekst"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Alt-tekst beschrijft afbeeldingen voor blinde en slechtziende gebruikers en biedt iedereen context."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Wijzigen"
···20202020msgid "Change report reason"
20212021msgstr "Reden van melding wijzigen"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Afbeelding bewerken"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Deze reactie verbergen?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr ""
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Afbeelding verwijderen"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Selecteer de {emojiName}-emoji als je avatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Vertalen"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Opnieuw proberen"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+19-19
src/locale/locales/pl/messages.po
···88"Language: pl\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Polish\n"
1414"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"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Tekst alternatywny"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Tekst alternatywny opisuje zdjęcia dla użytkowników niewidomych i niedowidzących oraz pomaga określić kontekst."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Zmień"
···20202020msgid "Change report reason"
20212021msgstr ""
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Edytuj obrazek"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Ukryć ten komentarz?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr ""
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Usuń zdjęcie"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Wybierz emoji {emojiName} jako zdjęcie profilowe"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Przetłumacz"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Spróbuj ponownie"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+19-19
src/locale/locales/pt-BR/messages.po
···88"Language: pt\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Portuguese, Brazilian\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Texto Alternativo"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "O texto alternativo descreve imagens para usuários cegos e com baixa visão, além de dar contexto a todos."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "Cashtag {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Alterar"
···20202020msgid "Change report reason"
20212021msgstr "Alterar motivo da denúncia"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Editar imagem"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Ocultar esta resposta?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Remover dos seus feeds?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Remover imagem"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Selecione o emoji {emojiName} como avatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Traduzir"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Tentar novamente"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+20-20
src/locale/locales/pt-PT/messages.po
···88"Language: pt\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Portuguese\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Texto Alternativo"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "O texto alternativo descreve conteúdo multimédia para utilizadores de visão reduzida ou cegos, e ajuda a dar contexto para todos."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "Cashtag {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Alterar"
···20202020msgid "Change report reason"
20212021msgstr "Alterar motivo da denúncia"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Editar imagem"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Ocultar essa resposta?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Remover dos seus feeds?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Remover imagem"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Selecione o emoji {emojiName} como foto de perfil"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr "Selecione o idioma da origem"
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Traduzir"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr "Tradução"
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056910569-msgstr "Tente um termo de pesquisa diferente, ou <0>leia sobre como usar filtros de pesquisa.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569+msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
1057210572msgctxt "action"
1057310573msgid "Try again"
1057410574msgstr "Tente novamente"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+25-25
src/locale/locales/ro/messages.po
···88"Language: ro\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Romanian\n"
1414"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Text alternativ"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Textul alternativ descrie imaginile pentru utilizatorii cu deficiențe de vedere și oferă context pentru toată lumea."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "Cashtag {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Modificare"
···20202020msgid "Change report reason"
20212021msgstr "Modificați motivul raportului"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025-msgstr ""
20252025+msgstr "Schimbați limba sursă"
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
20282028msgid "Change your password"
···3123312331243124#: src/lib/translation/index.tsx:265
31253125msgid "Device failed to translate :("
31263126-msgstr ""
31263126+msgstr "Dispozitivul nu a reușit să traducă :("
3127312731283128#: src/components/WhoCanReply.tsx:222
31293129msgid "Dialog: adjust who can interact with this post"
···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Editare imagine"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Ascundeți acest răspuns?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···7713771377147714#: src/screens/Profile/Header/Shell.tsx:174
77157715msgid "Profile banner placeholder"
77167716-msgstr ""
77167716+msgstr "Substituent banner profil"
7717771777187718#: src/lib/strings/errors.ts:40
77197719msgid "Profile not found"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Eliminați din fluxurile dvs.?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Eliminare imagine"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Selectați emoji-ul {emojiName} ca avatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr "Selectați limba sursă"
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Traducere"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr "Tradus"
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056910569-msgstr "Încercați un alt termen de căutare, sau <0>citiți despre cum să utilizați filtrele de căutare</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569+msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
1057210572msgctxt "action"
1057310573msgid "Try again"
1057410574msgstr "Încercați din nou"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579-msgstr ""
1057910579+msgstr "Încercați Google Translate"
10580105801058110581#: src/lib/interests.ts:74
1058210582msgid "TV"
···11310113101131111311#: src/screens/Profile/Header/Shell.tsx:173
1131211312msgid "View profile banner"
1131311313-msgstr ""
1131311313+msgstr "Vizualizați bannerul profilului"
11314113141131511315#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1131611316msgid "View the avatar"
+19-19
src/locale/locales/ru/messages.po
···88"Language: ru\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:46\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Russian\n"
1414"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"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "АЛЬТ"
11581158···11701170msgid "Alt Text"
11711171msgstr "Альтернативный текст"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Альтернативный текст описывает изображение для незрячих и слабовидящих пользователей и предоставляет дополнительный контекст для всех."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "Хештег {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Изменить"
···20202020msgid "Change report reason"
20212021msgstr "Причина изменения жалобы"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Редактировать изображение"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Скрыть этот ответ?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Удалить из ваших лент?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Удалить изображение"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Выбрать эмодзи {emojiName} в качестве своего аватара"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Перевести"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Попробовать ещё раз"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+26-26
src/locale/locales/sv/messages.po
···88"Language: sv\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Swedish\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Alternativtext"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Alternativtexter beskriver bilder för blinda och användare med nedsatt syn. De hjälper också gemene man med kontext och sammanhang."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "Cashtagg {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Ändra"
···20202020msgid "Change report reason"
20212021msgstr "Ändra skäl till anmälan"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025-msgstr ""
20252025+msgstr "Ändra källspråk"
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
20282028msgid "Change your password"
···3123312331243124#: src/lib/translation/index.tsx:265
31253125msgid "Device failed to translate :("
31263126-msgstr ""
31263126+msgstr "Enheten kunde inte översätta :("
3127312731283128#: src/components/WhoCanReply.tsx:222
31293129msgid "Dialog: adjust who can interact with this post"
···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Redigera bild"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Dölj det här svaret?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···7713771377147714#: src/screens/Profile/Header/Shell.tsx:174
77157715msgid "Profile banner placeholder"
77167716-msgstr ""
77167716+msgstr "Platshållare för profilbanderoll"
7717771777187718#: src/lib/strings/errors.ts:40
77197719msgid "Profile not found"
···79847984#: src/view/com/util/UserBanner.tsx:189
79857985#: src/view/com/util/UserBanner.tsx:192
79867986msgid "Remove Banner"
79877987-msgstr "Ta bort omslag"
79877987+msgstr "Ta bort banderoll"
7988798879897989#: src/view/com/composer/videos/SubtitleDialog.tsx:286
79907990msgid "Remove caption file"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Ta bort från dina flöden?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Ta bort bild"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Välj emojin {emojiName} som din avatar"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr "Välj källspråk"
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Översätt"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr "Översatt"
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056910569-msgstr "Prova ett annat sökord eller <0>läs om hur du använder sökfilter</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569+msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
1057210572msgctxt "action"
1057310573msgid "Try again"
1057410574msgstr "Försök igen"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579-msgstr ""
1057910579+msgstr "Försök med Google Översätt"
10580105801058110581#: src/lib/interests.ts:74
1058210582msgid "TV"
···11310113101131111311#: src/screens/Profile/Header/Shell.tsx:173
1131211312msgid "View profile banner"
1131311313-msgstr ""
1131311313+msgstr "Visa profilbanderoll"
11314113141131511315#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1131611316msgid "View the avatar"
+19-19
src/locale/locales/th/messages.po
···88"Language: th\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Thai\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr ""
11581158···11701170msgid "Alt Text"
11711171msgstr ""
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "ข้อความแสดงแทนอธิบายรูปภาพสำหรับผู้ใช้ที่พิการทางสายตาและผู้มีสายตาเลือนลาง และช่วยให้บริบทแก่ทุกคน"
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "เปลี่ยน"
···20202020msgid "Change report reason"
20212021msgstr ""
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "แก้ไขรูปภาพ"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "ซ่อนการตอบกลับใช่ไหม"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr ""
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "ลบรูปภาพ"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "เลือกอีโมจิ {emojiName} เป็นอวาตาร์ของคุณ"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr ""
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr ""
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+19-19
src/locale/locales/tr/messages.po
···88"Language: tr\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Turkish\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Alternatif Metin"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "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."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "{tag} finans etiketi"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Değiştir"
···20202020msgid "Change report reason"
20212021msgstr "Rapor gerekçesini değiştir"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Resmi düzenle"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Bu yanıtı gizle?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Akışlarınızdan kaldırılsın mı?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Resmi kaldır"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "{emojiName} emojisini avatar olarak seç"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr "Kaynak dili seç"
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Çevir"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr "Çevrildi"
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Tekrar dene"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+19-19
src/locale/locales/uk/messages.po
···88"Language: uk\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Ukrainian\n"
1414"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"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr ""
11581158···11701170msgid "Alt Text"
11711171msgstr "Альтернативний текст"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "Альтернативний текст описує зображення для незрячих та користувачів із вадами зору, та надає додатковий контекст для всіх."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Змінити"
···20202020msgid "Change report reason"
20212021msgstr ""
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Редагувати зображення"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Приховати цю відповідь?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr ""
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Видалити зображення"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Обрати {emojiName} емодзі як ваш аватар"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Перекласти"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Спробувати ще раз"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+19-19
src/locale/locales/vi/messages.po
···88"Language: vi\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Vietnamese\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "ALT"
11581158···11701170msgid "Alt Text"
11711171msgstr "Văn bản thay thế"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "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."
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr ""
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "Thay đổi"
···20202020msgid "Change report reason"
20212021msgstr "Thay đổi lý do báo cáo"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "Chỉnh sửa hình ảnh"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "Ẩn trả lời này?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "Xóa khỏi bảng tin của bạn?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "Xóa hình"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "Chọn emoji {emojiName} làm hình hiển thị"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "Dịch"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "Thử lại"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+27-27
src/locale/locales/zh-CN/messages.po
···88"Language: zh\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Chinese Simplified\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "替代文本"
11581158···11701170msgid "Alt Text"
11711171msgstr "替代文本"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "为图片新增替代文本,从而帮助视障者大致了解图片内容。"
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "标签 {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "更改"
···20202020msgid "Change report reason"
20212021msgstr "更改举报原因"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025-msgstr ""
20252025+msgstr "更改原始语言"
2026202620272027#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
20282028msgid "Change your password"
···3123312331243124#: src/lib/translation/index.tsx:265
31253125msgid "Device failed to translate :("
31263126-msgstr ""
31263126+msgstr "调用设备翻译失败 :("
3127312731283128#: src/components/WhoCanReply.tsx:222
31293129msgid "Dialog: adjust who can interact with this post"
···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "编辑图片"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "要隐藏这则回复吗?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···7713771377147714#: src/screens/Profile/Header/Shell.tsx:174
77157715msgid "Profile banner placeholder"
77167716-msgstr ""
77167716+msgstr "个人资料横幅占位符"
7717771777187718#: src/lib/strings/errors.ts:40
77197719msgid "Profile not found"
···7911791179127912#: src/screens/Search/components/SearchHistory.tsx:50
79137913msgid "Recent searches"
79147914-msgstr ""
79147914+msgstr "最近的搜索记录"
7915791579167916#: src/components/dialogs/LanguageSelectDialog.tsx:257
79177917msgid "Recently used"
···80308030msgid "Remove from your feeds?"
80318031msgstr "要从你的动态源中删除吗?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "删除图片"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "选择 {emojiName} 表情符号作为你的头像"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr "选择原始语言"
89168916···10269102691027010270#: src/screens/Onboarding/StepProfile/index.tsx:133
1027110271msgid "This image could not be used. Try a different format like .jpg or .png."
1027210272-msgstr ""
1027210272+msgstr "无法使用这张图片,请改用其他图片格式,例如 .jpg 或 .png。"
10273102731027410274#: src/components/dialogs/BirthDateSettings.tsx:56
1027510275msgid "This information is private and not shared with other users."
···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "翻译"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr "已翻译"
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "重试"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579-msgstr ""
1057910579+msgstr "尝试 Google 翻译"
10580105801058110581#: src/lib/interests.ts:74
1058210582msgid "TV"
···1125311253#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle)
1125411254#: src/components/ProfileCard.tsx:143
1125511255msgid "View {0}’s profile"
1125611256-msgstr ""
1125611256+msgstr "查看 {0} 的个人资料"
11257112571125811258#: src/components/dms/MessagesListHeader.tsx:142
1125911259msgid "View {displayName}'s profile"
···11310113101131111311#: src/screens/Profile/Header/Shell.tsx:173
1131211312msgid "View profile banner"
1131311313-msgstr ""
1131311313+msgstr "查看个人资料横幅"
11314113141131511315#: src/view/com/profile/ProfileSubpageHeader.tsx:124
1131611316msgid "View the avatar"
+19-19
src/locale/locales/zh-HK/messages.po
···88"Language: zh\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Chinese Traditional, Hong Kong\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "替代文字"
11581158···11701170msgid "Alt Text"
11711171msgstr "替代文字"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "加入替代文字會幫盲人同視障人士講述圖片內容,同埋幫助每個人提供更多資料。"
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "標籤 {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "變更"
···20202020msgid "Change report reason"
20212021msgstr "變更擧報理由"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "編輯圖片"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "係咪要隱藏呢個回覆?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "係咪要喺你嘅動態源度刪除?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "刪除圖片"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "揀個 {emojiName} Emoji 做你嘅頭像"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr ""
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "翻譯"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr ""
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "試多次"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+19-19
src/locale/locales/zh-TW/messages.po
···88"Language: zh\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2026-03-05 02:45\n"
1111+"PO-Revision-Date: 2026-03-05 20:12\n"
1212"Last-Translator: \n"
1313"Language-Team: Chinese Traditional\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···851851#: src/view/com/composer/GifAltText.tsx:78
852852#: src/view/com/composer/GifAltText.tsx:147
853853#: src/view/com/composer/GifAltText.tsx:214
854854-#: src/view/com/composer/photos/Gallery.tsx:181
855855-#: src/view/com/composer/photos/Gallery.tsx:228
854854+#: src/view/com/composer/photos/Gallery.tsx:182
855855+#: src/view/com/composer/photos/Gallery.tsx:229
856856#: src/view/com/composer/photos/ImageAltTextDialog.tsx:99
857857#: src/view/com/composer/photos/ImageAltTextDialog.tsx:107
858858msgid "Add alt text"
···11521152#: src/components/images/Gallery.tsx:120
11531153#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
11541154#: src/view/com/composer/GifAltText.tsx:102
11551155-#: src/view/com/composer/photos/Gallery.tsx:199
11551155+#: src/view/com/composer/photos/Gallery.tsx:200
11561156msgid "ALT"
11571157msgstr "替代文字"
11581158···11701170msgid "Alt Text"
11711171msgstr "替代文字"
1172117211731173-#: src/view/com/composer/photos/Gallery.tsx:273
11731173+#: src/view/com/composer/photos/Gallery.tsx:274
11741174msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
11751175msgstr "替代文字可協助失明及弱視人士瞭解圖片內容,也有助於為每個人提供更多資訊。"
11761176···19741974msgid "Cashtag {tag}"
19751975msgstr "標籤 {tag}"
1976197619771977-#: src/components/Post/Translated/index.tsx:395
19771977+#: src/components/Post/Translated/index.tsx:397
19781978#: src/screens/Settings/components/Email2FAToggle.tsx:31
19791979msgid "Change"
19801980msgstr "變更"
···20202020msgid "Change report reason"
20212021msgstr "變更檢舉理由"
2022202220232023-#: src/components/Post/Translated/index.tsx:385
20232023+#: src/components/Post/Translated/index.tsx:387
20242024msgid "Change the source language"
20252025msgstr ""
20262026···3446344634473447#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
34483448#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
34493449-#: src/view/com/composer/photos/Gallery.tsx:206
34493449+#: src/view/com/composer/photos/Gallery.tsx:207
34503450msgid "Edit image"
34513451msgstr "編輯圖片"
34523452···49864986msgid "Hide this reply?"
49874987msgstr "要隱藏這則回覆嗎?"
4988498849894989-#: src/components/Post/Translated/index.tsx:192
49904990-#: src/components/Post/Translated/index.tsx:318
49894989+#: src/components/Post/Translated/index.tsx:194
49904990+#: src/components/Post/Translated/index.tsx:320
49914991#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
49924992#: src/components/PostControls/PostMenu/PostMenuItems.tsx:516
49934993msgid "Hide translation"
···80308030msgid "Remove from your feeds?"
80318031msgstr "要從您的動態源中刪除嗎?"
8032803280338033-#: src/view/com/composer/photos/Gallery.tsx:215
80338033+#: src/view/com/composer/photos/Gallery.tsx:216
80348034msgid "Remove image"
80358035msgstr "刪除圖片"
80368036···89108910msgid "Select the {emojiName} emoji as your avatar"
89118911msgstr "選擇 {emojiName} 表情符號作為您的大頭貼照"
8912891289138913-#: src/components/Post/Translated/index.tsx:402
89138913+#: src/components/Post/Translated/index.tsx:404
89148914msgid "Select the source language"
89158915msgstr "選擇來源語言"
89168916···10521105211052210522#: src/components/dms/MessageContextMenu.tsx:139
1052310523#: src/components/dms/MessageContextMenu.tsx:141
1052410524-#: src/components/Post/Translated/index.tsx:139
1052510525-#: src/components/Post/Translated/index.tsx:146
1052410524+#: src/components/Post/Translated/index.tsx:141
1052510525+#: src/components/Post/Translated/index.tsx:148
1052610526#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
1052710527#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
1052810528msgid "Translate"
1052910529msgstr "翻譯"
10530105301053110531-#: src/components/Post/Translated/index.tsx:292
1053110531+#: src/components/Post/Translated/index.tsx:294
1053210532msgid "Translated"
1053310533msgstr "已翻譯"
10534105341053510535-#: src/components/Post/Translated/index.tsx:89
1053510535+#: src/components/Post/Translated/index.tsx:93
1053610536#: src/components/PostControls/PostMenu/PostMenuItems.tsx:506
1053710537#: src/components/PostControls/PostMenu/PostMenuItems.tsx:508
1053810538msgid "Translating…"
···10565105651056610566#: src/screens/Search/SearchResults.tsx:186
1056710567msgctxt "english-only-resource"
1056810568-msgid "Try a different search term, or <0>read about how to use search filters.</0>."
1056810568+msgid "Try a different search term, or <0>read about how to use search filters</0>."
1056910569msgstr ""
10570105701057110571#: src/view/com/util/error/ErrorScreen.tsx:104
···1057310573msgid "Try again"
1057410574msgstr "再試一次"
10575105751057610576-#: src/components/Post/Translated/index.tsx:205
1057710577-#: src/components/Post/Translated/index.tsx:213
1057610576+#: src/components/Post/Translated/index.tsx:207
1057710577+#: src/components/Post/Translated/index.tsx:215
1057810578msgid "Try Google Translate"
1057910579msgstr ""
1058010580
+1-1
src/screens/Search/SearchResults.tsx
···194194 })}
195195 to={urls.website.blog.searchTipsAndTricks}
196196 style={[a.text_md, a.leading_snug]}>
197197- read about how to use search filters.
197197+ read about how to use search filters
198198 </InlineLinkText>
199199 .
200200 </Trans>
+3-2
src/view/com/composer/photos/Gallery.tsx
···2424import {tokens, useTheme} from '#/alf'
2525import * as Dialog from '#/components/Dialog'
2626import {MediaInsetBorder} from '#/components/MediaInsetBorder'
2727-import {IS_NATIVE} from '#/env'
2727+import {IS_IOS, IS_NATIVE} from '#/env'
2828import {type PostAction} from '../state/composer'
2929import {EditImageDialog} from './EditImageDialog'
3030import {ImageAltTextDialog} from './ImageAltTextDialog'
···149149 const [altBtnViewTag, setAltBtnViewTag] = useState<number>()
150150151151 const altBtnRef = (node: View | null) => {
152152- if (node) {
152152+ // for iOS 26 fluid transition
153153+ if (IS_IOS && node) {
153154 const tag = findNodeHandle(node)
154155 if (tag != null) setAltBtnViewTag(tag)
155156 }