hlsLoading: boolean
hasSubtitleTrack: boolean
+ isGif: boolean
+ altText?: string
}) {
const {
play,
@@ -125,13 +130,14 @@ export function Controls({
const autoplayDisabled = useAutoplayDisabled() || isWithinMessage
useEffect(() => {
if (active) {
- if (onScreen) {
+ // GIFs play immediately, videos wait until onScreen
+ if (onScreen || isGif) {
if (!autoplayDisabled) play()
} else {
pause()
}
}
- }, [onScreen, pause, active, play, autoplayDisabled])
+ }, [onScreen, pause, active, play, autoplayDisabled, isGif])
// use minimal quality when not focused
useEffect(() => {
@@ -287,6 +293,17 @@ export function Controls({
((focused || autoplayDisabled) && !playing) ||
(interactingViaKeypress ? hasFocus : hovered)
+ if (isGif) {
+ return (
+
+ )
+ }
+
return (
{}
+
export function VideoEmbed({embed}: {embed: AppBskyEmbedVideo.View}) {
const t = useTheme()
const ref = useRef(null)
- const {active, setActive, sendPosition, currentActiveView} =
- useActiveVideoWeb()
+ const {
+ active: activeFromContext,
+ setActive,
+ sendPosition,
+ currentActiveView,
+ } = useActiveVideoWeb()
const [onScreen, setOnScreen] = useState(false)
const [isFullscreen] = useFullscreen()
const lastKnownTime = useRef(undefined)
+ const isGif = embed.presentation === 'gif'
+ // GIFs don't participate in the "one video at a time" system
+ const active = isGif || activeFromContext
+
useEffect(() => {
if (!ref.current) return
if (isFullscreen && !IS_WEB_FIREFOX) return
@@ -43,15 +53,18 @@ export function VideoEmbed({embed}: {embed: AppBskyEmbedVideo.View}) {
const entry = entries[0]
if (!entry) return
setOnScreen(entry.isIntersecting)
- sendPosition(
- entry.boundingClientRect.y + entry.boundingClientRect.height / 2,
- )
+ // GIFs don't send position - they don't compete to be the active video
+ if (!isGif) {
+ sendPosition(
+ entry.boundingClientRect.y + entry.boundingClientRect.height / 2,
+ )
+ }
},
{threshold: 0.5},
)
observer.observe(ref.current)
return () => observer.disconnect()
- }, [sendPosition, isFullscreen])
+ }, [sendPosition, isFullscreen, isGif])
const [key, setKey] = useState(0)
const renderError = useCallback(
@@ -107,7 +120,7 @@ export function VideoEmbed({embed}: {embed: AppBskyEmbedVideo.View}) {
return (
{
+ return (
+ !IS_E2E &&
+ IS_NATIVE &&
+ isExistingUserAsOf(
+ '2026-02-05T00:00:00.000Z',
+ props.currentProfile.createdAt,
+ )
+ )
+})
+
+export function DraftsAnnouncement() {
+ const t = useTheme()
+ const {_} = useLingui()
+ const nuxDialogs = useNuxDialogContext()
+ const control = Dialog.useDialogControl()
+
+ Dialog.useAutoOpen(control)
+
+ const onClose = useCallback(() => {
+ nuxDialogs.dismissActiveNux()
+ }, [nuxDialogs])
+
+ return (
+
+
+
+
+
+
+
+
+
+ New Feature
+
+
+
+
+
+
+
+ Drafts
+
+
+
+ Not ready to hit post? Keep your best ideas in Drafts until the
+ timing is just right.
+
+
+
+
+ {!IS_WEB && (
+
+ )}
+
+
+
+
+
+ )
+}
diff --git a/src/components/dialogs/nuxs/index.tsx b/src/components/dialogs/nuxs/index.tsx
index ba555befd1..2d2e2c6a6a 100644
--- a/src/components/dialogs/nuxs/index.tsx
+++ b/src/components/dialogs/nuxs/index.tsx
@@ -19,9 +19,9 @@ import {useProfileQuery} from '#/state/queries/profile'
import {type SessionAccount, useSession} from '#/state/session'
import {useOnboardingState} from '#/state/shell'
import {
- enabled as isLiveNowBetaDialogEnabled,
- LiveNowBetaDialog,
-} from '#/components/dialogs/nuxs/LiveNowBetaDialog'
+ DraftsAnnouncement,
+ enabled as isDraftsAnnouncementEnabled,
+} from '#/components/dialogs/nuxs/DraftsAnnouncement'
import {isSnoozed, snooze, unsnooze} from '#/components/dialogs/nuxs/snoozing'
import {type EnabledCheckProps} from '#/components/dialogs/nuxs/utils'
import {useAnalytics} from '#/analytics'
@@ -37,8 +37,8 @@ const queuedNuxs: {
enabled?: (props: EnabledCheckProps) => boolean
}[] = [
{
- id: Nux.LiveNowBetaDialog,
- enabled: isLiveNowBetaDialogEnabled,
+ id: Nux.DraftsAnnouncement,
+ enabled: isDraftsAnnouncementEnabled,
},
]
@@ -186,7 +186,7 @@ function Inner({
return (
{/*For example, activeNux === Nux.NeueTypography && */}
- {activeNux === Nux.LiveNowBetaDialog && }
+ {activeNux === Nux.DraftsAnnouncement && }
)
}
diff --git a/src/lib/api/index.ts b/src/lib/api/index.ts
index 20f0745d69..083c587b3b 100644
--- a/src/lib/api/index.ts
+++ b/src/lib/api/index.ts
@@ -354,6 +354,8 @@ async function resolveMedia(
alt: videoDraft.altText || undefined,
captions: captions.length === 0 ? undefined : captions,
aspectRatio,
+ presentation:
+ videoDraft.video.mimeType === 'image/gif' ? 'gif' : 'default',
}
}
if (embedDraft.media?.type === 'gif') {
diff --git a/src/locale/locales/an/messages.po b/src/locale/locales/an/messages.po
index 52ebc52dc7..e83024e553 100644
--- a/src/locale/locales/an/messages.po
+++ b/src/locale/locales/an/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: an\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Aragonese\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# republicación} other {# republicacions}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# segundo} other {# segundos}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# elemento no leyiu} other {# elementos no leyius}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# elemento no leyiu} other {# elementos no leyius}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# mes} other {# meses}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {seguidor} other {seguidors}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {seguindo} other {seguindo}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {me-fa-goyo} other {me-fa-goyos}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {me-fa-goyo} other {me-fa-goyos}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {publicación} other {publicacions}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {cita} other {citas}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {republicación} other {republicacions}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr ""
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
@@ -432,7 +436,7 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# elemento no leyiu} other {# elementos no leyius}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>y {2, plural, one {# atro} other {# atros}} s'incluyen en o tuyo paquet d'inicio"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {seguidor} other {seguidors}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {seguindo} other {seguindo}}"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Anyadir-ne {0} mas pa continar"
msgid "Add {displayName} to starter pack"
msgstr "Anyadir {displayName} a lo paquet d'inicio"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Anyadir advertencia de conteniu"
@@ -754,11 +763,11 @@ msgstr "Anyadir texto alternativo (opcional)"
msgid "Add another account"
msgstr "Anyadir una atra cuenta"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Anyadir una atra publicación"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "Anyadir clau d'app"
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr "Detalles adicionals (limite 300 carácters)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Adulto"
@@ -879,10 +888,10 @@ msgstr "Adulto"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Conteniu adulto"
@@ -894,8 +903,8 @@ msgstr "Lo conteniu pa adultos nomás se puede habilitar a traviés d'a web en <
msgid "Adult content is disabled."
msgstr "Lo conteniu adulto ye desactivau."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Etiquetas de conteniu d'adultos"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Toz"
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Sesión ya iniciada como @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Texto alternativo"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Texto alternativo"
@@ -1059,7 +1068,7 @@ msgstr "Un codigo de verificación s'ha ninviau a {0}. Escribe aquí ixe codigo.
msgid "An error has occurred"
msgstr "I ha habiu una error"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "I ha habiu una error"
@@ -1067,7 +1076,7 @@ msgstr "I ha habiu una error"
msgid "An error occurred while compressing the video."
msgstr "I ha habiu una error en comprimir lo video."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "I ha habiu una error en chenerar lo suyo paquet d'inicio. Quiers intentar-lo de nuevo?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "I ha habiu una error en cargar lo video. Per favor torne a intentar-lo."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "I ha habiu una error mientres cargaba lo video. Per favor torne a intentar-lo."
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Animals"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF animau"
@@ -1306,12 +1315,12 @@ msgstr "Aplicar canals recomendadas predeterminadas"
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Archivau dende {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Publicación archivada"
@@ -1332,11 +1341,11 @@ msgstr "Yes seguro que quiers eliminar este paquet d'inicio?"
msgid "Are you sure you want to discard your changes?"
msgstr "De seguro que quiers descartar los tuyos cambios?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Yes seguro que quiers deixar esta conversación? Los mensaches serán eliminaus pa tu, pero no pas pa l'atro participant."
@@ -1344,11 +1353,7 @@ msgstr "Yes seguro que quiers deixar esta conversación? Los mensaches serán el
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Yes seguro que deseyas sacar esto d'as tuyas canals?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Seguro que quiers descartar este borrador?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Seguro que quiers eliminar esta publicación?"
@@ -1364,7 +1369,7 @@ msgstr "Yes escribindo en <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Arte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Desnudez artistica u no erotica."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Autorreproducir videos y GIFs"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Dezaga"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky no puede confirmar l'autenticidat d'a data declarada."
@@ -1623,7 +1630,7 @@ msgstr "Condicions d'o servicio de Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky triará un conchunto de cuentas recomendadas de personas en o suyo ret."
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Revisar mas canals"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Explorar mas sucherencias"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Explora mas sucherencias"
@@ -1770,8 +1777,8 @@ msgstr "Camera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Camera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Cancelar busqueda"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "No se puede interactuar con un usuario blocau"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Conversa"
@@ -1989,7 +1996,7 @@ msgstr "Triar un metodo de verificación de dominio"
msgid "Choose Feeds"
msgstr "Triar canals"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Triar pa yo"
@@ -2096,6 +2103,7 @@ msgstr "Tacatot🐴 tacatat 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Tacatot🐴 tacatat 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Zarrar finestra de GIF"
msgid "Close image"
msgstr "Zarrar la imachen"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Zarrar lo visor d'imachen"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Zarra l'alerta d'actualización de clau"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2242,12 +2251,12 @@ msgstr "Completa la incorporación y prencipia a usar la tuya cuenta"
msgid "Complete the challenge"
msgstr "Completa lo desafío"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Redactar una nueva publicación"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2264,11 @@ msgstr ""
msgid "Compose reply"
msgstr "Redactar la respuesta"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Comprimindo video..."
@@ -2263,7 +2276,6 @@ msgstr "Comprimindo video..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Configuración de filtrau de conteniu pa la categoría: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Configurau en <0>achustes de moderación0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Conteniu y multimedia"
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "Advertencia de conteniu"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Advertencias de conteniu"
@@ -2401,7 +2413,7 @@ msgstr "Fondo d'o menú contextual, faga clic pa zarrar lo menú."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Continar"
@@ -2420,7 +2432,7 @@ msgstr "Continar filo..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "No s'ha puesto salir d'este chat "
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "No s'ha puesto cargar esta canal"
@@ -2643,8 +2655,8 @@ msgstr "Crear un codigo QR pa pack d'inicio"
msgid "Create a starter pack"
msgstr "Crea un paquet d'inicio"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "Crea un paquet d'inicio pa yo"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Crea-ne unatro"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Crear una cuenta nueva"
@@ -2772,7 +2784,7 @@ msgstr "Data de naixencia"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Desactivar cuenta"
@@ -2871,7 +2883,7 @@ msgstr "Borrar la mía cuenta"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Borrar una publicación"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Desactivar subtitulos"
@@ -2996,8 +3008,11 @@ msgstr "Desactivau"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Descartar"
@@ -3006,11 +3021,12 @@ msgstr "Descartar"
msgid "Discard changes?"
msgstr "Descartar cambios?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Descartar borrador?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Descartar la publicación?"
@@ -3037,7 +3053,7 @@ msgstr "Descartar"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Descartar error"
@@ -3049,11 +3065,16 @@ msgstr "Descartar la guía d'introducción"
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Amagar esta sección"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr "Dople toque pa zarrar lo dialogo"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Toca dos vegadas pa indicar que te fa goyo"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Descargar Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Descargar fichero CAR"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Arrociega pa anyadir imagenes"
@@ -3285,13 +3313,13 @@ msgstr "Editar achustes d'interacción d'a publicación"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Editar lo perfil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Editar lo perfil"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Activar subtítols"
@@ -3421,13 +3449,13 @@ msgstr "Activar subtítols"
msgid "Enable this source only"
msgstr "Habilitar nomás esta fuent"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Activar las tendencias"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Activar los videos populares en Discover d'a tuya canal"
@@ -3464,7 +3492,7 @@ msgstr "Escribe una parola u etiqueta"
msgid "Enter code"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Dentrar en pantalla completa"
@@ -3501,7 +3529,7 @@ msgstr "Escribe la tuya clau"
msgid "Enter your username and password"
msgstr "Escribe lo tuyo identificador y clau"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Cambia a pantalla completa"
@@ -3509,7 +3537,7 @@ msgstr "Cambia a pantalla completa"
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Error"
@@ -3570,7 +3598,7 @@ msgstr "Excluyir a los usuarios que sigues"
msgid "Excludes users you follow"
msgstr "Excluye a los usuarios que sigues"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Salir de pantalla completa"
@@ -3578,11 +3606,7 @@ msgstr "Salir de pantalla completa"
msgid "Exits account deletion process"
msgstr "Salir d'o proceso d'eliminación de cuenta"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Salir d'a vista d'imachen"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Expandir lo texto alt"
@@ -3598,11 +3622,11 @@ msgstr "Expandir u comprimir la publicación completa a la cual yes respondendo"
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Ixampla u reduce lo texto d'a publicación"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Uri esperada pa resolver un rechistro"
@@ -3639,7 +3663,7 @@ msgstr "Imáchens sexuals explicitas."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
@@ -3657,8 +3681,8 @@ msgstr "Exportar los míos datos"
msgid "Export My Data"
msgstr "Exportar los míos Datos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Multimedia externos"
@@ -3730,7 +3754,7 @@ msgstr "Error en eliminar la publicación, per favor intenta-lo de nuevo"
msgid "Failed to delete starter pack"
msgstr "Error en eliminar lo paquet d'inicio"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Canal"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Canal de {0}"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Comentarios"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Canals"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr "Finalizando"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Trobar chent a qui seguir"
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Seguir"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Seguir {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Seguir {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Seguir cuenta"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Seguir cuenta"
msgid "Follow all"
msgstr "Seguir a toz"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Seguir tamién"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "Seguidors que conoixes"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Seguindo"
msgid "Following {0}"
msgstr "Seguindo {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Seguindo {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Preferencias d'a canal de seguimiento"
@@ -4264,7 +4297,7 @@ msgstr "Per razons de seguranza, no podrás tornar-lo a veyer. Si pierdes esta c
msgid "For the best experience, we recommend using the theme font."
msgstr "Pa una millor experiencia, recomendamos que uses la fuent d'o tema."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "De <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Chenera un paquet d'inicio"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Obtiene aduya"
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Da-le una cara a lo tuyo perfil"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Tornar"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Conteniu Grafico"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Aduya"
@@ -4632,9 +4670,9 @@ msgstr "Lista amagada"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Amagar lista d'usuarios"
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Amaga lo conteniu"
@@ -4760,9 +4798,9 @@ msgstr "Aguarte! Somos dando acceso a videos gradualment, y encara yes en a list
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Inicio"
@@ -4819,7 +4857,7 @@ msgstr "L'entiendo"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Si lo texto alternativo ye largo, alterna con o estau expandiu d'o texto alternativo"
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr "Si yes un desenrollador/a, puez alochar lo tuyo propio servidor."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Si yes mirando de cambiar lo tuyo identificador u correu electronico, fe-lo antes de desactivar la tuya cuenta."
@@ -4996,6 +5034,10 @@ msgstr "Achustes d'interacción"
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Nomás yes tu per agora! Anyade mas personas a lo tuyo paquet d'inicio buscando alto."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID de fayena: {0}"
@@ -5122,20 +5164,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Etiquetado per {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Etiquetau per l'autor."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Etiquetas"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "S'han anyadiu las etiquetas"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "Obtiene mas información sobre cómo autoalochar la tuya PDS."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Mas información sobre la moderación que s'ha aplicau en esta publicación"
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Aprender mas sobre esta advertencia"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Aprender-ne mas."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Deixar"
@@ -5286,7 +5328,7 @@ msgstr "Salir de Bluesky"
msgid "left to go."
msgstr "quedan."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Deixa-me triar"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Me fa goyo"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Me fa goyo ({0, plural, one {# me-fa-goyo} other {# me-fa-goyos}})"
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Me fa goyo en esta publicación"
@@ -5474,7 +5516,7 @@ msgstr "La lista ya no ye silenciada"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Listas"
@@ -5496,10 +5538,20 @@ msgstr ""
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Cargar-ne mas"
msgid "Load more suggested feeds"
msgstr "Cargar mas canals sucheridas"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Cargar notificacions nuevas"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo de @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo de <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Fe un pa yo"
msgid "Make sure this is where you intend to go!"
msgstr "Asegura-te que ye aquí ta an quiers ir!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Chestionar las canals alzadas"
@@ -5638,7 +5690,16 @@ msgstr ""
msgid "Media"
msgstr "Multimedia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Fichers multipedia que pueden estar perturbadors u no adecuaus pa ciertas audiencias."
@@ -5653,7 +5714,7 @@ msgstr "usuarios mencionaus"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Mencions"
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Cintas"
msgid "Music"
msgstr "Mosica"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Navega a la siguient pantalla"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Navega a lo tuyo perfil"
@@ -5983,6 +6049,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
@@ -6018,12 +6085,12 @@ msgstr "Nuevos mensaches"
msgid "New password"
msgstr "Nueva clau"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Nueva publicación"
@@ -6085,7 +6152,7 @@ msgstr "Noticias"
msgid "Next"
msgstr "Siguient"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Imachen nueva"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "Sin panel de DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6136,7 +6207,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Encara sini \"me-fa-goyos\""
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "Ya no sigues a {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "No i hai citas encara"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Sin resultau"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Sin resultaus"
@@ -6238,7 +6309,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr "No s'ha trobau resultaus pa \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "No gracias"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr ""
msgid "Not Found"
msgstr "No trobau"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Nota sobre compartir"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Achustes de notificación"
@@ -6349,10 +6424,10 @@ msgstr "Sons de notificación"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Notificacions"
@@ -6368,8 +6443,8 @@ msgstr "agora"
msgid "Now"
msgstr "Agora"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Desnudez"
@@ -6390,7 +6465,7 @@ msgstr "Qué problema!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "D'acuerdo"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Ye bien"
@@ -6417,23 +6492,23 @@ msgstr "en<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Reiniciando"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Falta lo texto alternativo d'uno u mas GIFs."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Falta lo texto alternativo en una u cuantas imáchens."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Falta lo texto alternativo d'uno u mas videos."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ups, bella cosa ha saliu mal!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ui!"
msgid "Open avatar creator"
msgstr "Ubrir lo creyador de avatares"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "Ubrir opcions de conversación"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Ubrir lo menú lateral"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Ubrir selector d'emoji"
@@ -6557,7 +6636,7 @@ msgstr "Ubrir rechistro d'o sistema"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Ubre un dialogo pa anyadir una advertencia de conteniu a la tuya publicación"
@@ -6589,25 +6668,25 @@ msgstr "Ubre lo dialogo de cambio d'identificador"
msgid "Opens composer"
msgstr "Ubrir compositor"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Ubre lo selector d'emojis"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Ubre lo fluxo pa crear una nueva cuenta de Bluesky"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Ubre lo fluxo pa iniciar sesión en a tuya cuenta existent de Bluesky"
@@ -6620,7 +6699,7 @@ msgstr "Ubre lo dialogo de selección de GIF"
msgid "Opens helpdesk in browser"
msgstr "Ubre lo centro d'aduya en o navegador"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "Ubre lo formulario de restablimiento de clau"
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Unatro"
@@ -6763,13 +6846,13 @@ msgstr "Clau actualizada"
msgid "Password updated!"
msgstr "Clau actualizada!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pausar"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Pausar video"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "Fotografía"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Imáchens destinadas a adultos."
@@ -6874,9 +6957,9 @@ msgstr "Canals clavadas"
msgid "Pinned to your feeds"
msgstr "Las tuyas canals clavadas"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Reproducir"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Reproducir {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Reproducir video"
@@ -6893,11 +6976,11 @@ msgstr "Reproducir video"
msgid "Play Video"
msgstr "Reproducir Video"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Reproduce u pausa lo GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Reproduce u pausa lo video"
@@ -6909,7 +6992,7 @@ msgstr "Reproducir GIF"
msgid "Plays the video"
msgstr "Reproduce lo video"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "Politica"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornografía"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Publicar"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Publicar"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Publicar-lo tot"
@@ -7217,7 +7300,7 @@ msgstr "Preta pa veyer los seguidors d'esta cuenta que tamién sigues"
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Imachen previa"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Politica de privacidat"
@@ -7266,7 +7349,11 @@ msgstr "Politica de privacidat"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Procesando video..."
@@ -7280,10 +7367,10 @@ msgstr "Procesando..."
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Perfil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Listas publicas y compartibles pa blocar u silenciar a usuarios de vez."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Citar una publicación"
@@ -7385,7 +7473,7 @@ msgstr "Citas deshabilitadas"
msgid "Quotes"
msgstr "Citas"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Citas d'esta publicación"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Amostrar-ne menos"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Amostrar-ne mas"
@@ -7720,13 +7808,13 @@ msgstr "Respuestas deshabilitadas"
msgid "Replies to this post are disabled."
msgstr "Las respuestas en esta publicación son deshabilitadas."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Responder"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Responder ({0, plural, one {# respuesta} other {# respuestas}})"
@@ -7892,7 +7980,7 @@ msgstr "Tornau a publicar per tu"
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Republicacions d'esta publicación"
@@ -7996,14 +8084,14 @@ msgstr "Reintenta la zaguera acción, que presentó una error"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Tornar ta la pachina anterior"
msgid "Returns to home page"
msgstr "Tornar ta la pachina d'inicio"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Tornar ta la pachina anterior"
@@ -8063,7 +8151,7 @@ msgstr "Torna ta lo paso anterior"
msgid "Save"
msgstr "Alzar"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Alzar"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Alzar cambios"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Alzar en as mías canals"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "Desplazar enta alto"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Buscar"
@@ -8164,7 +8269,7 @@ msgstr "Buscar"
msgid "Search @{0}'s posts"
msgstr "Mirar en as publicacions de @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Buscar por nombre u interés"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Mirar canals"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Mirar en publicacions"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Buscar perfils"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Mirar..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Mira perfils"
@@ -8283,12 +8388,12 @@ msgstr "Veyer publicacions sobre #{tag} per usuario"
msgid "See jobs at Bluesky"
msgstr "Veyer emplegos en Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "Tría en qué idioma deseyas traducir las publicacions d'a tuya canal."
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Ninviar correu"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Ninviar comentarios"
@@ -8566,7 +8671,7 @@ msgstr "Estableix lo correu electronico pa restablir la clau"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Achustes"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Configuración alzada"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Actividat sexual u desnudez erotica."
@@ -8634,7 +8739,7 @@ msgstr "Sexualment suchestivo"
msgid "Share"
msgstr "Compartir"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Compartir"
@@ -8712,13 +8817,13 @@ msgstr "Comparte la tuya canal favorita!"
msgid "Shared Preferences Tester"
msgstr "Prebador de Preferencias Compartidas"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Veyer"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Veyer texto alternativo"
@@ -8820,7 +8925,7 @@ msgstr "Amostrar advertencia y filtrar d'as canals"
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Amuestra información sobre cuán se va crear esta publicación"
@@ -8828,8 +8933,8 @@ msgstr "Amuestra información sobre cuán se va crear esta publicación"
msgid "Shows other accounts you can switch to"
msgstr "Amuestra atras cuentas a las cuals puez cambiar"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Amuestra lo conteniu"
@@ -8842,14 +8947,14 @@ msgstr "Amuestra lo conteniu"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Se requiere iniciar sesión"
msgid "Signed in as @{0}"
msgstr "Sesión iniciada como @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Cuentas semellants"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "Programación"
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Belatras canals que podrían fer-te goyo"
@@ -8994,7 +9095,7 @@ msgstr "I ha habiu una error"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "I ha habiu una error, per favor intenta de nuevo"
@@ -9020,7 +9121,7 @@ msgstr "I ha habiu una error. Intenta-lo atra vegada."
msgid "Something wrong? Let us know."
msgstr "Bella cosa va mal? Fe-nos-lo saber."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "Paquez d'inicio"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Los paquez d'inicio te permiten compartir facilment las tuyas canals y personas favoritas con os tuyos amigos."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "Subscribi-te a @{0} pa usar estas etiquetas:"
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Suscribir-se a lo etiquetador"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Suscribir-se a este etiquetador"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Sucheriu pa tu"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Suchestivo"
@@ -9354,8 +9459,8 @@ msgstr "Condicions"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Condicions de servicio"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "Ixo ye tot, amigos!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Ixo ye tot!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "La cuenta podrá interactuar con tu dimpués de desblocar-la."
@@ -9447,7 +9552,7 @@ msgstr "La canal de Descubrir"
msgid "The Discover feed now knows what you like"
msgstr "La canal de Descubrir agora sabe lo que te fa goyo"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "La experiencia ye millor en l'aplicación. Descarga Bluesky agora y continaremos an lo deixés."
@@ -9527,7 +9632,7 @@ msgstr "Tema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "No i hai limite de tiempo pa la desactivación d'a cuenta, torna en atro momento."
@@ -9711,6 +9816,10 @@ msgstr "Este conteniu no se puede veyer sin una cuenta de Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Esta conversa ye con una cuenta eliminada u desactivada. Preta pa veyer las opcions"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Esta canal ye vueda! Ye posible que amenestas seguir a mas usuarios u achustar la configuración d'idioma."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Esta canal ye vueda."
@@ -9798,7 +9907,7 @@ msgstr "Esta lista ye vueda."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Este servicio de moderación no ye disponible. Consulta mas detalles contino. Si lo problema persiste, contacta-nos."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Esta publicación diz haber estau creada lo <0>{0}0>, pero la hemos vista en Bluesky lo <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Esta publicación será amagada d'as canals y filos. Esto no se puede desfer."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "L'autor d'esta publicación ha deshabilitau las citas de publicacions."
@@ -9834,7 +9943,7 @@ msgstr "Esta respuesta será clasificada en una sección amagada a la fin d'o tu
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Este servicio no ha proporcionau termins de servicio ni una politica de privacidat."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "Esto eliminará la tuya publicación d'esta cita pa toz los usuarios y l
msgid "Thread options"
msgstr "Opcions de filos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Preferencias de filos"
@@ -9951,7 +10060,7 @@ msgstr "Hue"
msgid "Toggle to enable or disable adult content"
msgstr "Alternar habilitar u deshabilitar conteniu pa adultos"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Activa/desactiva lo son"
@@ -9988,8 +10097,8 @@ msgstr "Tema"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Traducir"
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Desblocar"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Desblocar"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Desblocar cuenta"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Desblocar cuenta?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "Desfer republicación"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Desfer la republicación ({0, plural, one {# republicación} other {# republicaciones}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Deixar de seguir a {0}"
@@ -10151,7 +10264,7 @@ msgstr "Deixar de seguir a {0}"
msgid "Unfollow account"
msgstr "Deixar de seguir esta cuenta"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Deixa de seguir a l'usuario"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Ya no me fa goyo"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Ya no me fa goyo ({0, plural, one {# me-fa-goyo} other {# me-fa-goyos}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr ""
msgid "Unmute thread"
msgstr "Deixar de silenciar filo"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Deixar de silenciar video"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Dar-se de baixa"
@@ -10285,7 +10398,7 @@ msgstr "Dar-se de baixa"
msgid "Unsubscribe from list"
msgstr "Dar-se de baixa d'a lista"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Dar-se de baixa d'este etiquetador"
@@ -10293,7 +10406,7 @@ msgstr "Dar-se de baixa d'este etiquetador"
msgid "Unsubscribed from list"
msgstr "Dau de baixa d'a lista"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "Puyar dende los tuyos fichers"
msgid "Upload from Library"
msgstr "Puyar dende la biblioteca"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Cargando imáchens..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Cargando thumbnail d'o vinclo..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Cargando video..."
@@ -10389,8 +10506,8 @@ msgstr "Utilizar lo furnidor predeterminau"
msgid "Use in-app browser"
msgstr "Usar navegador integrau"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Fer servir lo navegador interno pa ubrir vinclos"
@@ -10445,6 +10562,10 @@ msgstr "Usuario te bloca"
msgid "User list by {0}"
msgstr "Lista d'usuarios per {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Lista d'usuarios per tu"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Video"
@@ -10614,20 +10735,24 @@ msgstr "Canal de video"
msgid "Video from {0}: {text}"
msgstr "Video de {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Videojuegos"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Lo video ye en pausa"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Lo video se ye reproducindo"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Video no trobau."
@@ -10635,11 +10760,11 @@ msgstr "Video no trobau."
msgid "Video settings"
msgstr "Configuración d'o video"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Video cargau"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Video: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videos"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Veyer l'avatar de {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Veyer lo perfil de {0}"
@@ -10708,7 +10833,7 @@ msgstr "Veyer mas"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Somos tenendo problemas de ret, intenta de nuevo"
@@ -10968,7 +11093,7 @@ msgstr "Vai, pero no hemos puesto cargar las tuyas parolas silenciadas en este m
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Vai, no s'ha puesto completar la tuya busqueda. Torna-lo a intentar uns minutos."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Vai! La publicación a la cual yes respondendo ha estau eliminada."
@@ -10977,7 +11102,7 @@ msgstr "Vai! La publicación a la cual yes respondendo ha estau eliminada."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Vai! No trobamos la pachina que buscabas."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Vai! Nomás puez subscribir-te a vinte etiquetadors, y has alcanzau lo tuyo limite de vinte."
@@ -11018,10 +11143,9 @@ msgstr "Cuáls son los tuyos intereses?"
msgid "What do you want to call your starter pack?"
msgstr "Cómo quiers clamar a lo tuyo paquet d'inicio?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Qué fas?"
@@ -11097,6 +11221,14 @@ msgstr "Per qué creyes que este usuario ha d'estar revisau?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Escribe un mensache"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Redacta una publicación"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Redacta una respuesta"
@@ -11133,8 +11265,8 @@ msgstr ""
msgid "Yes"
msgstr "Sí xxxxxxxxxxxxxxxxxxx"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Sí, desactivar"
@@ -11188,7 +11320,7 @@ msgstr "Yes en ringlera."
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11200,7 +11332,7 @@ msgstr "No tiens permiso pa puyar videos."
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Agora puez iniciar sesión con a tuya nueva clau."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Puez reactivar la tuya cuenta pa continar iniciando sesión. Lo tuyo perfil y publicacions serán visibles pa atros usuarios."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "Has blocau a este usuario"
msgid "You have blocked this user. You cannot view their content."
msgstr "Has blocau a este usuario. No puez veyer lo suyo conteniu."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Has alcanzau temporalment lo limite de puyadas de videos. Torna a intentar-lo mas enta debant."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Encara no has creau un paquet d'inicio!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Has de seguir a lo menos a siet personas mas pa chenerar un paquet d'inicio."
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "Has d'atorgar acceso a la tuya biblioteca de fotos pa alzar un codigo QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Ya yes en coda"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Has iniciau sesión con una clau d'aplicación. Per favor, inicia sesión con a tuya clau principal pa continar con a desactivación d'a tuya cuenta."
@@ -11589,7 +11729,7 @@ msgstr "Has alcanzau lo tuyo limite diario de carga de videos (masiaus bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Has alcanzau lo tuyo limite diario de carga de videos (masiaus videos)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Ya has visto toz los videos que i heba. Y si te descansas una mica?"
@@ -11625,7 +11765,7 @@ msgstr "Hemos recibiu lo tuyo recurso. Si s'acepta, t'avisaremos per correu elec
msgid "Your birth date"
msgstr "La tuya data de naixencia"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Lo tuyo navegador no soporta este formato de video. Per favor intenta-lo con un navegador diferent."
@@ -11692,8 +11832,8 @@ msgstr "Lo tuyo identificador completo será <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr ""
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr "La tuya ha de tener a lo menos 8 carácters."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Lo tuyo perfil, publicacions, canals y listas no tornarán a estar visibles pa atros usuarios de Bluesky. Puez reactivar la tuya cuenta dentrando-ie en cualsequier momento."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/ar/messages.po b/src/locale/locales/ar/messages.po
index 2496319bd9..76f6d9a078 100644
--- a/src/locale/locales/ar/messages.po
+++ b/src/locale/locales/ar/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ar_SA\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Arabic, Saudi Arabia\n"
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
@@ -23,7 +23,7 @@ msgstr ""
msgid "\"{interestsDisplayName}\" category (active)"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:162
+#: src/screens/Messages/components/ChatListItem.tsx:163
msgid "(contains embedded content)"
msgstr ""
@@ -43,7 +43,7 @@ msgstr ""
msgid "{0, plural, one {# following} other {# following}}"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:265
+#: src/components/contacts/screens/ViewMatches.tsx:267
msgid "{0, plural, one {# friend found!} other {# friends found!}}"
msgstr ""
@@ -83,9 +83,9 @@ msgstr ""
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr ""
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:489
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
@@ -112,28 +116,28 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:455
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:500
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:79
msgid "{0, plural, other {{1} posts}}"
msgstr ""
#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
-#: src/screens/StarterPack/StarterPackScreen.tsx:492
+#: src/screens/StarterPack/StarterPackScreen.tsx:496
msgid "{0, plural, other {# people have}} used this starter pack!"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:360
+#: src/components/dialogs/StarterPackDialog.tsx:361
msgid "{0, plural, other {+# more}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -164,11 +168,11 @@ msgstr ""
msgid "{0} is live"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:188
+#: src/screens/Signup/StepHandle/index.tsx:185
msgid "{0} is not available"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
msgid "{0} joined this week"
msgstr ""
@@ -185,20 +189,20 @@ msgstr ""
msgid "{0} reacted {1}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:233
+#: src/screens/Messages/components/ChatListItem.tsx:234
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:577
-#: src/view/com/util/UserAvatar.tsx:595
+#: src/view/com/util/UserAvatar.tsx:575
+#: src/view/com/util/UserAvatar.tsx:593
msgid "{0}'s avatar"
msgstr ""
@@ -243,7 +247,7 @@ msgid "{DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Display name is too long. The
msgstr ""
#: src/lib/generate-starterpack.ts:104
-#: src/screens/StarterPack/Wizard/index.tsx:201
+#: src/screens/StarterPack/Wizard/index.tsx:202
msgid "{displayName}'s Starter Pack"
msgstr ""
@@ -432,11 +436,11 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:430
+#: src/screens/Settings/FindContactsSettings.tsx:435
msgid "{numMatches, plural, one {# contact found} other {# contacts found}}"
msgstr ""
@@ -449,25 +453,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago"
msgstr ""
#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:108
msgid "{rank}."
msgstr ""
#. trending topic time spent trending. should be as short as possible to fit in a pill
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:203
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200
msgid "{type}h ago"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:60
+#: src/components/verification/VerifierDialog.tsx:61
msgid "{userName} is a trusted verifier"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:67
+#: src/components/verification/VerificationsDialog.tsx:68
msgid "{userName} is verified"
msgstr ""
#. Possessive, meaning "the verifications of {userName}"
-#: src/components/verification/VerificationsDialog.tsx:69
+#: src/components/verification/VerificationsDialog.tsx:70
msgid "{userName}'s verifications"
msgstr ""
@@ -476,34 +480,34 @@ msgstr ""
msgid "+{computedTotal}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:524
+#: src/screens/StarterPack/Wizard/index.tsx:525
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:577
+#: src/screens/StarterPack/Wizard/index.tsx:578
msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:511
-#: src/screens/StarterPack/Wizard/index.tsx:565
+#: src/screens/StarterPack/Wizard/index.tsx:512
+#: src/screens/StarterPack/Wizard/index.tsx:566
msgid "<0>{0}0> and<1> 1><2>{1} 2>are included in your starter pack"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:558
+#: src/screens/StarterPack/Wizard/index.tsx:559
msgid "<0>{0}0> is included in your starter pack"
msgstr ""
-#: src/components/WhoCanReply.tsx:351
+#: src/components/WhoCanReply.tsx:352
msgid "<0>{0}0> members"
msgstr ""
@@ -516,7 +520,7 @@ msgstr ""
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:502
+#: src/screens/StarterPack/Wizard/index.tsx:503
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr ""
@@ -545,24 +549,24 @@ msgid "A collection of popular feeds you can find on Bluesky, including News, Bo
msgstr ""
#. If last message does not contain text, fall back to "{user} reacted to {a message}"
-#: src/screens/Messages/components/ChatListItem.tsx:212
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "a message"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:99
+#: src/components/contacts/screens/PhoneInput.tsx:101
msgid "A network error occurred. Please check your internet connection"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:96
-#: src/components/contacts/screens/VerifyNumber.tsx:152
+#: src/components/contacts/screens/VerifyNumber.tsx:98
+#: src/components/contacts/screens/VerifyNumber.tsx:154
msgid "A network error occurred. Please check your internet connection."
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:140
+#: src/components/contacts/screens/VerifyNumber.tsx:142
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:92
msgid "A new form of verification"
msgstr ""
@@ -580,8 +584,8 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
-#: src/Navigation.tsx:534
-#: src/screens/Settings/AboutSettings.tsx:75
+#: src/Navigation.tsx:535
+#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
#: src/screens/Settings/Settings.tsx:263
msgid "About"
@@ -615,11 +619,11 @@ msgstr ""
msgid "Accessibility"
msgstr ""
-#: src/Navigation.tsx:385
+#: src/Navigation.tsx:386
msgid "Accessibility Settings"
msgstr ""
-#: src/Navigation.tsx:401
+#: src/Navigation.tsx:402
#: src/screens/Login/LoginForm.tsx:194
#: src/screens/Settings/AccountSettings.tsx:51
#: src/screens/Settings/Settings.tsx:178
@@ -627,20 +631,20 @@ msgstr ""
msgid "Account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:419
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423
#: src/screens/Messages/components/RequestButtons.tsx:91
-#: src/view/com/profile/ProfileMenu.tsx:181
+#: src/view/com/profile/ProfileMenu.tsx:182
msgctxt "toast"
msgid "Account blocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:194
+#: src/view/com/profile/ProfileMenu.tsx:195
msgctxt "toast"
msgid "Account followed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442
-#: src/view/com/profile/ProfileMenu.tsx:157
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:446
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account muted"
msgstr ""
@@ -668,45 +672,45 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:84
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:290
-#: src/view/com/profile/ProfileMenu.tsx:171
+#: src/view/com/profile/ProfileMenu.tsx:172
msgctxt "toast"
msgid "Account unblocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:206
+#: src/view/com/profile/ProfileMenu.tsx:207
msgctxt "toast"
msgid "Account unfollowed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:432
-#: src/view/com/profile/ProfileMenu.tsx:147
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unmuted"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:97
+#: src/components/verification/VerifierDialog.tsx:98
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:182
+#: src/lib/hooks/useNotificationHandler.ts:185
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102
#: src/screens/Settings/NotificationSettings/index.tsx:192
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:502
+#: src/Navigation.tsx:503
msgid "Activity notifications"
msgstr ""
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:333
-#: src/components/dialogs/StarterPackDialog.tsx:374
-#: src/components/dialogs/StarterPackDialog.tsx:380
+#: src/components/dialogs/StarterPackDialog.tsx:375
+#: src/components/dialogs/StarterPackDialog.tsx:381
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:613
+#: src/screens/StarterPack/Wizard/index.tsx:614
msgid "Add {0} more to continue"
msgstr ""
@@ -714,8 +718,8 @@ msgstr ""
msgid "Add {displayName} to starter pack"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr ""
@@ -754,11 +758,11 @@ msgstr ""
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:856
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1496
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,7 +780,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:220
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
@@ -785,8 +789,8 @@ msgstr ""
msgid "Add media to post"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:520
-#: src/components/moderation/ReportDialog/index.tsx:524
+#: src/components/moderation/ReportDialog/index.tsx:514
+#: src/components/moderation/ReportDialog/index.tsx:518
msgid "Add more details (optional)"
msgstr ""
@@ -815,7 +819,7 @@ msgstr ""
msgid "Add recommended feeds"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:546
+#: src/screens/StarterPack/Wizard/index.tsx:547
msgid "Add some feeds to your starter pack!"
msgstr ""
@@ -831,18 +835,18 @@ msgstr ""
msgid "Add this feed to your feeds"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:342
-#: src/view/com/profile/ProfileMenu.tsx:345
+#: src/view/com/profile/ProfileMenu.tsx:343
+#: src/view/com/profile/ProfileMenu.tsx:346
msgid "Add to lists"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:141
+#: src/components/PostControls/BookmarkButton.tsx:142
msgid "Add to saved posts"
msgstr ""
#: src/components/dialogs/StarterPackDialog.tsx:176
-#: src/view/com/profile/ProfileMenu.tsx:333
-#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:334
+#: src/view/com/profile/ProfileMenu.tsx:337
msgid "Add to starter packs"
msgstr ""
@@ -850,7 +854,7 @@ msgstr ""
msgid "Add user to list"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:231
+#: src/ageAssurance/components/NoAccessScreen.tsx:228
msgid "Add your birthdate"
msgstr ""
@@ -859,19 +863,19 @@ msgstr ""
msgid "Added to list"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:258
+#: src/components/dialogs/StarterPackDialog.tsx:259
msgid "Added to starter pack"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:111
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:113
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:538
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr ""
@@ -879,10 +883,10 @@ msgstr ""
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr ""
@@ -894,8 +898,8 @@ msgstr ""
msgid "Adult content is disabled."
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr ""
@@ -911,17 +915,17 @@ msgstr ""
msgid "Age Assurance"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:69
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:71
msgid "Age assurance inquiry failed to send, please try again."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:77
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:79
msgctxt "toast"
msgid "Age assurance inquiry was submitted"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:354
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:199
+#: src/ageAssurance/components/NoAccessScreen.tsx:352
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:201
msgid "Age assurance only takes a few minutes"
msgstr ""
@@ -930,17 +934,17 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:174
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:91
-#: src/screens/StarterPack/StarterPackScreen.tsx:386
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:390
msgid "All accounts have been followed!"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:141
+#: src/components/contacts/screens/ViewMatches.tsx:143
msgid "All friends followed!"
msgstr ""
@@ -960,7 +964,7 @@ msgstr ""
msgid "Allow access to your direct messages"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:448
msgid "Allow anyone to reply"
msgstr ""
@@ -979,23 +983,23 @@ msgstr ""
msgid "Allow others to be notified of your posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:498
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:501
msgid "Allow people you follow to reply"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:512
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:515
msgid "Allow people you mention to reply"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:630
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:633
msgid "Allow quote posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:592
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:595
msgid "Allow users in {0} to reply"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:484
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:487
msgid "Allow your followers to reply"
msgstr ""
@@ -1009,15 +1013,15 @@ msgstr ""
msgid "Already have a code?"
msgstr ""
-#: src/components/WelcomeModal.tsx:189
+#: src/components/WelcomeModal.tsx:191
msgid "Already have an account?"
msgstr ""
-#: src/screens/Login/ChooseAccountForm.tsx:43
+#: src/screens/Login/ChooseAccountForm.tsx:44
msgid "Already signed in as @{0}"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1037,7 @@ msgstr ""
msgid "Alt text"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
msgid "Alt Text"
msgstr ""
@@ -1067,7 +1071,7 @@ msgstr ""
msgid "An error occurred while compressing the video."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:196
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,11 +1080,11 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:240
+#: src/components/contacts/screens/ViewMatches.tsx:242
msgid "An error occurred while hiding suggestion. {0}"
msgstr ""
@@ -1092,18 +1096,18 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:575
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:578
msgid "An error occurred while loading your lists :/"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:75
+#: src/components/StarterPack/QrCodeDialog.tsx:77
msgid "An error occurred while saving the QR code!"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:51
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:76
-#: src/screens/StarterPack/StarterPackScreen.tsx:352
-#: src/screens/StarterPack/StarterPackScreen.tsx:374
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:53
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:78
+#: src/screens/StarterPack/StarterPackScreen.tsx:356
+#: src/screens/StarterPack/StarterPackScreen.tsx:378
msgid "An error occurred while trying to follow all"
msgstr ""
@@ -1111,9 +1115,9 @@ msgstr ""
msgid "An error occurred while uploading the video."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:117
-#: src/components/contacts/screens/VerifyNumber.tsx:128
-#: src/components/contacts/screens/VerifyNumber.tsx:181
+#: src/components/contacts/screens/PhoneInput.tsx:119
+#: src/components/contacts/screens/VerifyNumber.tsx:130
+#: src/components/contacts/screens/VerifyNumber.tsx:183
msgid "An error occurred. {0}"
msgstr ""
@@ -1126,8 +1130,8 @@ msgstr ""
msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
-#: src/components/verification/VerifierDialog.tsx:86
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:85
+#: src/components/verification/VerifierDialog.tsx:87
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
@@ -1135,11 +1139,11 @@ msgstr ""
msgid "An issue not included in these options"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:38
+#: src/components/dms/dialogs/NewChatDialog.tsx:39
msgid "An issue occurred starting the chat"
msgstr ""
-#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47
+#: src/components/dms/dialogs/ShareViaChatDialog.tsx:48
msgid "An issue occurred while trying to open the chat"
msgstr ""
@@ -1152,7 +1156,7 @@ msgstr ""
msgid "An issue occurred, please try again."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:119
msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
msgstr ""
@@ -1165,7 +1169,7 @@ msgstr ""
msgid "an unknown labeler"
msgstr ""
-#: src/components/WhoCanReply.tsx:372
+#: src/components/WhoCanReply.tsx:373
msgid "and"
msgstr ""
@@ -1181,7 +1185,7 @@ msgstr ""
msgid "Animals"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:154
msgid "Animated GIF"
msgstr ""
@@ -1189,15 +1193,15 @@ msgstr ""
msgid "Announcement"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:38
msgid "Announcing verification on Bluesky"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:451
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:454
msgid "Anyone"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:134
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:136
msgid "Anyone can interact"
msgstr ""
@@ -1207,7 +1211,7 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:543
#: src/screens/Settings/AppIconSettings/index.tsx:64
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
@@ -1248,7 +1252,7 @@ msgstr ""
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:354
#: src/screens/Settings/AppPasswords.tsx:50
msgid "App Passwords"
msgstr ""
@@ -1289,7 +1293,7 @@ msgstr ""
msgid "Appeal this decision"
msgstr ""
-#: src/Navigation.tsx:393
+#: src/Navigation.tsx:394
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:228
#: src/screens/Settings/Settings.tsx:231
@@ -1306,12 +1310,12 @@ msgstr ""
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:670
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:678
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr ""
@@ -1319,11 +1323,11 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:200
+#: src/components/dms/MessageContextMenu.tsx:197
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:659
+#: src/screens/StarterPack/StarterPackScreen.tsx:664
msgid "Are you sure you want to delete this starter pack?"
msgstr ""
@@ -1332,11 +1336,11 @@ msgstr ""
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr ""
@@ -1344,11 +1348,7 @@ msgstr ""
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:805
-msgid "Are you sure you'd like to discard this draft?"
-msgstr ""
-
-#: src/view/com/composer/Composer.tsx:995
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -1364,12 +1364,12 @@ msgstr ""
msgid "Art"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:558
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:560
msgid "Assign topic for algo"
msgstr ""
@@ -1394,8 +1394,8 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:333
#: src/components/moderation/LabelsOnMeDialog.tsx:334
-#: src/screens/Login/ChooseAccountForm.tsx:91
-#: src/screens/Login/ChooseAccountForm.tsx:96
+#: src/screens/Login/ChooseAccountForm.tsx:92
+#: src/screens/Login/ChooseAccountForm.tsx:97
#: src/screens/Login/ForgotPasswordForm.tsx:123
#: src/screens/Login/ForgotPasswordForm.tsx:129
#: src/screens/Login/LoginForm.tsx:313
@@ -1404,11 +1404,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:184
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
-#: src/screens/StarterPack/Wizard/index.tsx:323
+#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr ""
@@ -1448,8 +1450,8 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:54
-#: src/components/dms/MessageProfileButton.tsx:58
+#: src/components/dms/dialogs/NewChatDialog.tsx:55
+#: src/components/dms/MessageProfileButton.tsx:59
#: src/screens/Messages/ChatList.tsx:371
#: src/screens/Messages/Conversation.tsx:228
msgid "Before you can message another user, you must first verify your email."
@@ -1463,7 +1465,7 @@ msgstr ""
msgid "Begin age assurance process"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:50
msgid "Begin the age assurance process by completing the fields below."
msgstr ""
@@ -1479,30 +1481,30 @@ msgstr ""
msgid "Birthday"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:821
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/view/com/profile/ProfileMenu.tsx:550
+#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Block"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:261
#: src/components/dms/ConvoMenu.tsx:264
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:706
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708
#: src/screens/Messages/components/RequestButtons.tsx:144
#: src/screens/Messages/components/RequestButtons.tsx:146
-#: src/view/com/profile/ProfileMenu.tsx:456
-#: src/view/com/profile/ProfileMenu.tsx:463
+#: src/view/com/profile/ProfileMenu.tsx:457
+#: src/view/com/profile/ProfileMenu.tsx:464
msgid "Block account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:813
-#: src/view/com/profile/ProfileMenu.tsx:533
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:816
+#: src/view/com/profile/ProfileMenu.tsx:534
msgid "Block Account?"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:97
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:100
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:90
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:93
msgid "Block accounts"
msgstr ""
@@ -1510,7 +1512,7 @@ msgstr ""
msgid "Block and Delete"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:125
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:118
msgid "Block list"
msgstr ""
@@ -1518,7 +1520,7 @@ msgstr ""
msgid "Block or report"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:120
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:113
msgid "Block these accounts?"
msgstr ""
@@ -1543,13 +1545,13 @@ msgstr ""
msgid "Blocked accounts"
msgstr ""
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:195
#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:815
-#: src/view/com/profile/ProfileMenu.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818
+#: src/view/com/profile/ProfileMenu.tsx:546
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -1561,11 +1563,11 @@ msgstr ""
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:122
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:115
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:542
+#: src/view/com/profile/ProfileMenu.tsx:543
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr ""
@@ -1578,7 +1580,7 @@ msgstr ""
msgid "Bluesky"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:700
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr ""
@@ -1587,7 +1589,7 @@ msgctxt "Name of app icon variant"
msgid "Bluesky Classic™"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:232
+#: src/components/contacts/screens/GetContacts.tsx:234
msgid "Bluesky helps friends find each other by creating an encoded digital fingerprint, called a \"hash\", and then looking for matching hashes."
msgstr ""
@@ -1603,7 +1605,7 @@ msgstr ""
msgid "Bluesky is better with friends!"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:35
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:42
msgid "Bluesky is more fun with friends"
msgstr ""
@@ -1611,7 +1613,7 @@ msgstr ""
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:312
+#: src/components/contacts/screens/ViewMatches.tsx:314
msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>"
msgstr ""
@@ -1619,11 +1621,11 @@ msgstr ""
msgid "Bluesky Social Terms of Service"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:542
+#: src/screens/Settings/FindContactsSettings.tsx:548
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
@@ -1631,7 +1633,7 @@ msgstr ""
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:133
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -1664,20 +1666,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:777
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:906
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:887
-#: src/components/FeedInterstitials.tsx:890
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:915
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -1698,7 +1700,7 @@ msgstr ""
msgid "Browse starter pack {displayName}"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90
msgid "Browse topic {0}"
msgstr ""
@@ -1710,18 +1712,18 @@ msgstr ""
msgid "Business"
msgstr ""
-#: src/screens/Bookmarks/index.tsx:284
+#: src/screens/Bookmarks/index.tsx:304
msgid "Button to go back to the home timeline"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:842
+#: src/components/moderation/ReportDialog/index.tsx:836
#: src/screens/Search/components/StarterPackCard.tsx:106
-#: src/screens/Search/Explore.tsx:943
+#: src/screens/Search/Explore.tsx:932
msgid "By {0}"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:453
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:455
msgid "By <0>{0}0>"
msgstr ""
@@ -1729,7 +1731,7 @@ msgstr ""
msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:294
+#: src/components/contacts/screens/PhoneInput.tsx:296
msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more0>"
msgstr ""
@@ -1754,10 +1756,10 @@ msgid "Camera"
msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:128
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:134
-#: src/components/contacts/screens/GetContacts.tsx:289
-#: src/components/contacts/screens/GetContacts.tsx:294
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:130
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:136
+#: src/components/contacts/screens/GetContacts.tsx:291
+#: src/components/contacts/screens/GetContacts.tsx:296
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:152
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:157
#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
@@ -1770,8 +1772,8 @@ msgstr ""
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1790,8 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1050
-#: src/view/com/composer/Composer.tsx:1061
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1819,10 +1821,10 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:107
-#: src/components/PostControls/index.tsx:138
-#: src/components/PostControls/index.tsx:166
-#: src/state/shell/composer/index.tsx:95
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:139
+#: src/components/PostControls/index.tsx:167
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -1861,7 +1863,7 @@ msgstr ""
msgid "Change Handle"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:437
+#: src/components/moderation/ReportDialog/index.tsx:431
msgid "Change moderation service"
msgstr ""
@@ -1874,11 +1876,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:302
+#: src/components/moderation/ReportDialog/index.tsx:296
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:382
+#: src/components/moderation/ReportDialog/index.tsx:376
msgid "Change report reason"
msgstr ""
@@ -1899,11 +1901,11 @@ msgstr ""
msgid "Changes saved"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:99
-#: src/Navigation.tsx:559
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/lib/hooks/useNotificationHandler.ts:102
+#: src/Navigation.tsx:560
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr ""
@@ -1913,11 +1915,11 @@ msgctxt "toast"
msgid "Chat deleted"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:114
+#: src/lib/hooks/useNotificationHandler.ts:117
msgid "Chat messages - silent"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:105
+#: src/lib/hooks/useNotificationHandler.ts:108
msgid "Chat messages - sound"
msgstr ""
@@ -1926,7 +1928,7 @@ msgctxt "toast"
msgid "Chat muted"
msgstr ""
-#: src/Navigation.tsx:569
+#: src/Navigation.tsx:570
#: src/screens/Messages/components/InboxPreview.tsx:22
msgid "Chat request inbox"
msgstr ""
@@ -1938,7 +1940,7 @@ msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:78
-#: src/Navigation.tsx:564
+#: src/Navigation.tsx:565
#: src/screens/Messages/ChatList.tsx:81
#: src/screens/Messages/ChatList.tsx:85
#: src/screens/Messages/ChatList.tsx:380
@@ -1985,15 +1987,15 @@ msgstr ""
msgid "Choose domain verification method"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:217
+#: src/screens/StarterPack/Wizard/index.tsx:218
msgid "Choose Feeds"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:213
+#: src/screens/StarterPack/Wizard/index.tsx:214
msgid "Choose People"
msgstr ""
@@ -2017,11 +2019,11 @@ msgstr ""
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:273
+#: src/screens/Signup/StepInfo/index.tsx:271
msgid "Choose your password"
msgstr ""
-#: src/screens/Signup/index.tsx:181
+#: src/screens/Signup/index.tsx:192
msgid "Choose your username"
msgstr ""
@@ -2033,8 +2035,8 @@ msgstr ""
msgid "Clear all storage data (restart after this)"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:116
-#: src/screens/Settings/AboutSettings.tsx:120
+#: src/screens/Settings/AboutSettings.tsx:114
+#: src/screens/Settings/AboutSettings.tsx:118
msgid "Clear image cache"
msgstr ""
@@ -2050,11 +2052,11 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:126
+#: src/ageAssurance/components/NoAccessScreen.tsx:123
msgid "Click here to contact our support team"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:245
+#: src/ageAssurance/components/NoAccessScreen.tsx:242
msgid "Click here to log out"
msgstr ""
@@ -2063,7 +2065,7 @@ msgid "Click here to restart the verification process."
msgstr ""
#: src/ageAssurance/components/NoAccessScreen.tsx:103
-#: src/ageAssurance/components/NoAccessScreen.tsx:228
+#: src/ageAssurance/components/NoAccessScreen.tsx:225
msgid "Click here to update your birthdate"
msgstr ""
@@ -2087,17 +2089,17 @@ msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:270
#: src/ageAssurance/components/RedirectOverlay.tsx:320
#: src/ageAssurance/components/RedirectOverlay.tsx:326
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:172
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:231
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:173
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:179
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:232
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:238
#: src/components/dialogs/GifSelect.tsx:269
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:198
#: src/components/dialogs/SearchablePeopleList.tsx:295
@@ -2111,14 +2113,14 @@ msgstr ""
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:445
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:204
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
-#: src/components/verification/VerificationsDialog.tsx:144
-#: src/components/verification/VerifierDialog.tsx:150
-#: src/components/WhoCanReply.tsx:234
-#: src/components/WhoCanReply.tsx:241
+#: src/components/verification/VerificationsDialog.tsx:145
+#: src/components/verification/VerifierDialog.tsx:147
+#: src/components/WhoCanReply.tsx:235
+#: src/components/WhoCanReply.tsx:242
#: src/screens/Settings/components/ChangePasswordDialog.tsx:287
#: src/screens/Settings/components/ChangePasswordDialog.tsx:292
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:335
@@ -2143,15 +2145,15 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:222
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:228
#: src/components/dialogs/GifSelect.tsx:263
-#: src/components/verification/VerificationsDialog.tsx:136
-#: src/components/verification/VerifierDialog.tsx:142
+#: src/components/verification/VerificationsDialog.tsx:137
+#: src/components/verification/VerifierDialog.tsx:139
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:204
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:298
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:330
msgid "Close dialog"
msgstr ""
-#: src/view/shell/index.web.tsx:130
+#: src/view/shell/index.web.tsx:131
msgid "Close drawer menu"
msgstr ""
@@ -2168,7 +2170,8 @@ msgstr ""
msgid "Close image"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr ""
@@ -2182,7 +2185,7 @@ msgstr ""
msgid "Close this dialog"
msgstr ""
-#: src/components/WelcomeModal.tsx:214
+#: src/components/WelcomeModal.tsx:216
msgid "Close welcome modal"
msgstr ""
@@ -2190,7 +2193,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1058
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2229,25 +2232,25 @@ msgid "Comics"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:344
#: src/view/screens/CommunityGuidelines.tsx:37
msgid "Community Guidelines"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:322
+#: src/screens/Onboarding/StepFinished/index.tsx:325
msgid "Complete onboarding and start using your account"
msgstr ""
-#: src/screens/Signup/index.tsx:183
+#: src/screens/Signup/index.tsx:194
msgid "Complete the challenge"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:143
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2258,7 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1891
+#: src/view/com/composer/Composer.tsx:2295
msgid "Compressing video..."
msgstr ""
@@ -2263,7 +2266,6 @@ msgstr ""
msgid "Configure content filtering setting for category: {name}"
msgstr ""
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2274,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr ""
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2287,8 +2289,8 @@ msgstr ""
msgid "Confirm delete account"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:368
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:95
+#: src/ageAssurance/components/NoAccessScreen.tsx:366
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:97
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:40
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:105
msgid "Confirm your location"
@@ -2310,36 +2312,36 @@ msgid "Connecting..."
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:296
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:207
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:208
msgid "Connection issue"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:305
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:138
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:29
+#: src/ageAssurance/components/NoAccessScreen.tsx:303
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:140
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:30
msgid "Contact our moderation team"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155
-#: src/screens/Signup/index.tsx:222
-#: src/screens/Signup/index.tsx:225
+#: src/screens/Signup/index.tsx:233
+#: src/screens/Signup/index.tsx:236
msgid "Contact support"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:57
-#: src/screens/Settings/FindContactsSettings.tsx:154
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:64
+#: src/screens/Settings/FindContactsSettings.tsx:156
msgid "Contact sync is not available on this device, as the app is unable to access your contacts."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:93
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:95
msgid "Contact us"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:498
+#: src/screens/Settings/FindContactsSettings.tsx:504
msgid "Contacts imported"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:471
+#: src/screens/Settings/FindContactsSettings.tsx:477
msgid "Contacts removed"
msgstr ""
@@ -2352,7 +2354,7 @@ msgstr ""
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:518
+#: src/Navigation.tsx:519
msgid "Content and Media"
msgstr ""
@@ -2364,7 +2366,7 @@ msgstr ""
msgid "Content filters"
msgstr ""
-#: src/screens/Search/modules/ExploreRecommendations.tsx:59
+#: src/screens/Search/modules/ExploreRecommendations.tsx:60
msgid "Content from across the network we think you might like."
msgstr ""
@@ -2389,7 +2391,7 @@ msgstr ""
msgid "Content Warning"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr ""
@@ -2399,9 +2401,9 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
-#: src/screens/Onboarding/StepInterests/index.tsx:91
+#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:276
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr ""
@@ -2418,9 +2420,9 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:88
+#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2436,18 +2438,18 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:198
+#: src/screens/Messages/components/ChatListItem.tsx:199
msgid "Conversation deleted"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:151
+#: src/screens/Settings/AboutSettings.tsx:149
msgid "Copied build version to clipboard"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:58
#: src/components/PostControls/DiscoverDebug.tsx:36
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:249
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:257
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:73
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
msgid "Copied to clipboard"
@@ -2458,11 +2460,11 @@ msgstr ""
msgid "Copied!"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:127
+#: src/screens/Settings/AboutSettings.tsx:125
msgid "Copies build version to clipboard"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/components/StarterPack/QrCodeDialog.tsx:194
msgid "Copy"
msgstr ""
@@ -2470,13 +2472,13 @@ msgstr ""
msgid "Copy App Password"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:493
-#: src/view/com/profile/ProfileMenu.tsx:496
+#: src/view/com/profile/ProfileMenu.tsx:494
+#: src/view/com/profile/ProfileMenu.tsx:497
msgid "Copy at:// URI"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156
msgid "Copy author DID"
msgstr ""
@@ -2486,8 +2488,8 @@ msgid "Copy code"
msgstr ""
#: src/screens/Settings/components/ChangeHandleDialog.tsx:502
-#: src/view/com/profile/ProfileMenu.tsx:502
-#: src/view/com/profile/ProfileMenu.tsx:505
+#: src/view/com/profile/ProfileMenu.tsx:503
+#: src/view/com/profile/ProfileMenu.tsx:506
msgid "Copy DID"
msgstr ""
@@ -2495,52 +2497,52 @@ msgstr ""
msgid "Copy host"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:113
-#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/components/StarterPack/ShareDialog.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:624
msgid "Copy link"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:120
+#: src/components/StarterPack/ShareDialog.tsx:121
msgid "Copy Link"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:165
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:169
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:159
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:163
msgid "Copy link to list"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:128
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:131
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90
msgid "Copy link to post"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:269
-#: src/view/com/profile/ProfileMenu.tsx:280
+#: src/view/com/profile/ProfileMenu.tsx:270
+#: src/view/com/profile/ProfileMenu.tsx:281
msgid "Copy link to profile"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:612
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link to starter pack"
msgstr ""
+#: src/components/dms/MessageContextMenu.tsx:143
#: src/components/dms/MessageContextMenu.tsx:146
-#: src/components/dms/MessageContextMenu.tsx:149
msgid "Copy message text"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147
msgid "Copy post at:// URI"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:512
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:513
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515
msgid "Copy post text"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:178
+#: src/components/StarterPack/QrCodeDialog.tsx:180
msgid "Copy QR code"
msgstr ""
@@ -2550,7 +2552,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:349
#: src/view/screens/CopyrightPolicy.tsx:34
msgid "Copyright Policy"
msgstr ""
@@ -2567,13 +2569,13 @@ msgstr ""
msgid "Could not find profile"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:208
-#: src/screens/Settings/FindContactsSettings.tsx:397
+#: src/screens/Settings/FindContactsSettings.tsx:211
+#: src/screens/Settings/FindContactsSettings.tsx:402
msgid "Could not follow all matches - please check your network connection."
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:214
-#: src/screens/Settings/FindContactsSettings.tsx:403
+#: src/screens/Settings/FindContactsSettings.tsx:217
+#: src/screens/Settings/FindContactsSettings.tsx:408
msgid "Could not follow all matches. {0}"
msgstr ""
@@ -2582,7 +2584,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr ""
@@ -2608,11 +2610,11 @@ msgstr ""
msgid "Could not update notification settings"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:168
+#: src/components/contacts/screens/GetContacts.tsx:170
msgid "Could not upload contacts. {0}"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:162
+#: src/components/contacts/screens/GetContacts.tsx:164
msgid "Could not upload contacts. You need to re-verify your phone number to proceed"
msgstr ""
@@ -2633,18 +2635,18 @@ msgstr ""
msgid "Create a list"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:163
+#: src/components/StarterPack/QrCodeDialog.tsx:165
msgid "Create a QR code for a starter pack"
msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:206
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
-#: src/Navigation.tsx:599
+#: src/Navigation.tsx:600
msgid "Create a starter pack"
msgstr ""
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2652,20 +2654,20 @@ msgstr ""
msgid "Create a starter pack for me"
msgstr ""
-#: src/components/WelcomeModal.tsx:155
-#: src/components/WelcomeModal.tsx:163
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/components/WelcomeModal.tsx:157
+#: src/components/WelcomeModal.tsx:165
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
msgstr ""
-#: src/screens/Signup/index.tsx:124
+#: src/screens/Signup/index.tsx:135
msgid "Create Account"
msgstr ""
@@ -2676,8 +2678,8 @@ msgstr ""
msgid "Create an account"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:311
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:312
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
msgid "Create an account without using this starter pack"
msgstr ""
@@ -2693,14 +2695,14 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
-#: src/components/moderation/ReportDialog/index.tsx:702
-#: src/components/moderation/ReportDialog/index.tsx:748
+#: src/components/moderation/ReportDialog/index.tsx:696
+#: src/components/moderation/ReportDialog/index.tsx:742
msgid "Create report for {0}"
msgstr ""
@@ -2766,13 +2768,13 @@ msgstr ""
msgid "Dark theme"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:301
+#: src/screens/Signup/StepInfo/index.tsx:299
msgid "Date of birth"
msgstr ""
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr ""
@@ -2796,14 +2798,14 @@ msgstr ""
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:202
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:762
+#: src/components/dms/MessageContextMenu.tsx:199
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:280
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:274
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:601
-#: src/screens/StarterPack/StarterPackScreen.tsx:690
-#: src/screens/StarterPack/StarterPackScreen.tsx:762
+#: src/screens/StarterPack/StarterPackScreen.tsx:606
+#: src/screens/StarterPack/StarterPackScreen.tsx:695
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Delete"
msgstr ""
@@ -2833,7 +2835,7 @@ msgstr ""
msgid "Delete chat declaration record"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:539
+#: src/screens/Settings/FindContactsSettings.tsx:545
msgid "Delete contacts"
msgstr ""
@@ -2848,20 +2850,20 @@ msgstr ""
msgid "Delete Conversation"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:160
+#: src/components/dms/MessageContextMenu.tsx:157
msgid "Delete for me"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:204
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:207
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:198
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:201
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:198
+#: src/components/dms/MessageContextMenu.tsx:195
msgid "Delete message"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:158
+#: src/components/dms/MessageContextMenu.tsx:155
msgid "Delete message for me"
msgstr ""
@@ -2869,26 +2871,26 @@ msgstr ""
msgid "Delete my account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745
-#: src/view/com/composer/Composer.tsx:969
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:595
-#: src/screens/StarterPack/StarterPackScreen.tsx:753
+#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:758
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:656
+#: src/screens/StarterPack/StarterPackScreen.tsx:661
msgid "Delete starter pack?"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:269
msgid "Delete this list?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:757
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:760
msgid "Delete this post?"
msgstr ""
@@ -2897,11 +2899,11 @@ msgid "Deleted"
msgstr ""
#: src/components/dms/MessagesListHeader.tsx:121
-#: src/screens/Messages/components/ChatListItem.tsx:131
+#: src/screens/Messages/components/ChatListItem.tsx:132
msgid "Deleted Account"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:283
+#: src/components/contacts/screens/PhoneInput.tsx:285
msgid "Deleted by Plivo after verification"
msgstr ""
@@ -2923,21 +2925,21 @@ msgstr ""
msgid "Descriptive alt text"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:650
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660
msgid "Detach quote"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:793
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796
msgid "Detach quote post?"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:140
+#: src/screens/Settings/AboutSettings.tsx:138
msgctxt "toast"
msgid "Developer mode disabled"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:134
+#: src/screens/Settings/AboutSettings.tsx:132
msgctxt "toast"
msgid "Developer mode enabled"
msgstr ""
@@ -2947,7 +2949,7 @@ msgstr ""
msgid "Developer options"
msgstr ""
-#: src/components/WhoCanReply.tsx:220
+#: src/components/WhoCanReply.tsx:221
msgid "Dialog: adjust who can interact with this post"
msgstr ""
@@ -2973,11 +2975,11 @@ msgstr ""
msgid "Disable haptic feedback"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:622
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:625
msgid "Disable quote posts of this post"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:459
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:462
msgid "Disable replies entirely"
msgstr ""
@@ -2996,8 +2998,11 @@ msgstr ""
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:807
-#: src/view/com/composer/Composer.tsx:1002
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr ""
@@ -3006,11 +3011,12 @@ msgstr ""
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:804
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:994
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr ""
@@ -3024,7 +3030,7 @@ msgstr ""
msgid "Discover new custom feeds"
msgstr ""
-#: src/screens/Search/Explore.tsx:436
+#: src/screens/Search/Explore.tsx:438
#: src/view/screens/Feeds.tsx:730
msgid "Discover New Feeds"
msgstr ""
@@ -3033,11 +3039,11 @@ msgstr ""
msgid "Dismiss"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:75
+#: src/components/contacts/FindContactsBannerNUX.tsx:76
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1815
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr ""
@@ -3049,11 +3055,16 @@ msgstr ""
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr ""
-#: src/components/FeedInterstitials.tsx:587
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3096,8 +3107,8 @@ msgstr ""
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:104
-#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:37
+#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:105
+#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:38
msgid "Don't show again"
msgstr ""
@@ -3107,8 +3118,8 @@ msgstr ""
#: src/components/contacts/components/InviteInfo.tsx:72
#: src/components/contacts/components/InviteInfo.tsx:78
-#: src/components/contacts/screens/ViewMatches.tsx:392
-#: src/components/contacts/screens/ViewMatches.tsx:409
+#: src/components/contacts/screens/ViewMatches.tsx:394
+#: src/components/contacts/screens/ViewMatches.tsx:411
#: src/components/dialogs/BirthDateSettings.tsx:196
#: src/components/dialogs/BirthDateSettings.tsx:203
#: src/components/dialogs/ServerInput.tsx:240
@@ -3121,8 +3132,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3158,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1123
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr ""
@@ -3164,6 +3175,12 @@ msgstr ""
msgid "Doxxing"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr ""
@@ -3214,9 +3231,9 @@ msgstr ""
#: src/screens/Settings/AccountSettings.tsx:145
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:252
-#: src/screens/StarterPack/StarterPackScreen.tsx:590
-#: src/screens/StarterPack/Wizard/index.tsx:339
-#: src/screens/StarterPack/Wizard/index.tsx:344
+#: src/screens/StarterPack/StarterPackScreen.tsx:595
+#: src/screens/StarterPack/Wizard/index.tsx:340
+#: src/screens/StarterPack/Wizard/index.tsx:345
msgid "Edit"
msgstr ""
@@ -3226,7 +3243,7 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:439
+#: src/view/com/util/UserAvatar.tsx:440
#: src/view/com/util/UserBanner.tsx:121
msgid "Edit avatar"
msgstr ""
@@ -3241,8 +3258,8 @@ msgstr ""
msgid "Edit image"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:724
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740
msgid "Edit interaction settings"
msgstr ""
@@ -3251,13 +3268,13 @@ msgstr ""
msgid "Edit interests"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:196
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:199
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:190
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:193
msgid "Edit list details"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:376
+#: src/view/com/profile/ProfileMenu.tsx:357
+#: src/view/com/profile/ProfileMenu.tsx:377
msgid "Edit live status"
msgstr ""
@@ -3265,7 +3282,7 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:359
#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr ""
@@ -3278,24 +3295,24 @@ msgstr ""
msgid "Edit People"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:114
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:260
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:115
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:263
msgid "Edit post interaction settings"
msgstr ""
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
+#: src/screens/StarterPack/StarterPackScreen.tsx:587
msgid "Edit starter pack"
msgstr ""
@@ -3303,11 +3320,11 @@ msgstr ""
msgid "Edit user list"
msgstr ""
-#: src/components/WhoCanReply.tsx:114
+#: src/components/WhoCanReply.tsx:115
msgid "Edit who can reply"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:605
msgid "Edit your starter pack"
msgstr ""
@@ -3320,7 +3337,7 @@ msgid "Either the creator of this list has blocked you or you have blocked the c
msgstr ""
#: src/screens/Settings/AccountSettings.tsx:66
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Signup/StepInfo/index.tsx:223
msgid "Email"
msgstr ""
@@ -3359,8 +3376,8 @@ msgstr ""
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124
msgid "Embed post"
msgstr ""
@@ -3409,7 +3426,7 @@ msgstr ""
msgid "Enable push notifications"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:623
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:626
msgid "Enable quote posts of this post"
msgstr ""
@@ -3426,8 +3443,8 @@ msgstr ""
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:155
-#: src/screens/Settings/ContentAndMediaSettings.tsx:169
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr ""
@@ -3445,7 +3462,7 @@ msgstr ""
msgid "Ensure you have selected a language for each subtitle file."
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:228
+#: src/components/contacts/screens/VerifyNumber.tsx:230
msgid "Enter 6-digit code that was sent to your phone number"
msgstr ""
@@ -3468,7 +3485,7 @@ msgstr ""
msgid "Enter fullscreen"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:223
+#: src/components/contacts/screens/VerifyNumber.tsx:225
msgid "Enter the 6-digit code sent to {prettyNumber}"
msgstr ""
@@ -3489,7 +3506,7 @@ msgid "Enter your birthdate"
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:245
+#: src/screens/Signup/StepInfo/index.tsx:243
msgid "Enter your email address"
msgstr ""
@@ -3497,7 +3514,7 @@ msgstr ""
msgid "Enter your password"
msgstr ""
-#: src/screens/Login/index.tsx:137
+#: src/screens/Login/index.tsx:138
msgid "Enter your username and password"
msgstr ""
@@ -3505,16 +3522,16 @@ msgstr ""
msgid "Enters full screen"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:236
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1900
+#: src/view/com/composer/Composer.tsx:2304
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:90
+#: src/screens/Settings/FindContactsSettings.tsx:92
msgid "Error getting the latest data."
msgstr ""
@@ -3534,7 +3551,7 @@ msgstr ""
msgid "Error occurred while saving file"
msgstr ""
-#: src/screens/Signup/StepCaptcha/index.tsx:125
+#: src/screens/Signup/StepCaptcha/index.tsx:126
msgid "Error receiving captcha response."
msgstr ""
@@ -3542,18 +3559,18 @@ msgstr ""
msgid "Error: {error}"
msgstr ""
-#: src/components/WhoCanReply.tsx:83
+#: src/components/WhoCanReply.tsx:84
msgid "Everybody can reply"
msgstr ""
-#: src/components/WhoCanReply.tsx:277
+#: src/components/WhoCanReply.tsx:278
msgid "Everybody can reply to this post."
msgstr ""
#: src/screens/Messages/Settings.tsx:88
#: src/screens/Messages/Settings.tsx:91
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:167
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:177
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178
msgid "Everyone"
msgstr ""
@@ -3578,11 +3595,7 @@ msgstr ""
msgid "Exits account deletion process"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr ""
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr ""
@@ -3598,7 +3611,7 @@ msgstr ""
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:995
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr ""
@@ -3636,15 +3649,15 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:788
+#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
-#: src/components/WelcomeModal.tsx:168
-#: src/components/WelcomeModal.tsx:177
+#: src/components/WelcomeModal.tsx:170
+#: src/components/WelcomeModal.tsx:179
msgid "Explore the app"
msgstr ""
@@ -3672,7 +3685,7 @@ msgstr ""
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr ""
-#: src/Navigation.tsx:377
+#: src/Navigation.tsx:378
#: src/screens/Settings/ExternalMediaPreferences.tsx:34
msgid "External Media Preferences"
msgstr ""
@@ -3687,11 +3700,11 @@ msgid "Failed to accept chat"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:66
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageContextMenu.tsx:98
msgid "Failed to add emoji reaction"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:270
+#: src/components/dialogs/StarterPackDialog.tsx:271
msgid "Failed to add to starter pack"
msgstr ""
@@ -3703,12 +3716,12 @@ msgstr ""
msgid "Failed to create app password. Please try again."
msgstr ""
-#: src/components/dms/MessageProfileButton.tsx:36
+#: src/components/dms/MessageProfileButton.tsx:37
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:262
-#: src/screens/StarterPack/Wizard/index.tsx:270
+#: src/screens/StarterPack/Wizard/index.tsx:263
+#: src/screens/StarterPack/Wizard/index.tsx:271
msgid "Failed to create starter pack"
msgstr ""
@@ -3718,31 +3731,31 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:81
+#: src/components/dms/MessageContextMenu.tsx:78
msgid "Failed to delete message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:214
msgid "Failed to delete post, please try again"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:724
+#: src/screens/StarterPack/StarterPackScreen.tsx:729
msgid "Failed to delete starter pack"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:121
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:145
+#: src/components/contacts/screens/ViewMatches.tsx:147
msgid "Failed to follow all your friends, please try again"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:233
+#: src/components/contacts/screens/ViewMatches.tsx:235
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:578
+#: src/components/contacts/screens/ViewMatches.tsx:581
msgid "Failed to launch SMS app"
msgstr ""
@@ -3751,10 +3764,10 @@ msgstr ""
msgid "Failed to load conversations"
msgstr ""
-#: src/screens/Search/Explore.tsx:472
-#: src/screens/Search/Explore.tsx:524
-#: src/screens/Search/Explore.tsx:562
-#: src/screens/Search/Explore.tsx:601
+#: src/screens/Search/Explore.tsx:474
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr ""
@@ -3784,14 +3797,14 @@ msgstr ""
msgid "Failed to load preference."
msgstr ""
-#: src/screens/Search/Explore.tsx:465
-#: src/screens/Search/Explore.tsx:517
-#: src/screens/Search/Explore.tsx:555
-#: src/screens/Search/Explore.tsx:594
+#: src/screens/Search/Explore.tsx:467
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/screens/Search/Explore.tsx:375
+#: src/screens/Search/Explore.tsx:377
msgid "Failed to load suggested follows"
msgstr ""
@@ -3804,20 +3817,20 @@ msgstr ""
msgid "Failed to pin post"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:481
+#: src/screens/Settings/FindContactsSettings.tsx:487
msgid "Failed to remove data due to a network error, please check your internet connection."
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:487
+#: src/screens/Settings/FindContactsSettings.tsx:493
msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:60
-#: src/components/dms/MessageContextMenu.tsx:95
+#: src/components/dms/MessageContextMenu.tsx:92
msgid "Failed to remove emoji reaction"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:289
+#: src/components/dialogs/StarterPackDialog.tsx:290
msgid "Failed to remove from starter pack"
msgstr ""
@@ -3829,6 +3842,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3858,11 +3875,11 @@ msgstr ""
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:238
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:104
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:106
msgid "Failed to unpin list"
msgstr ""
@@ -3910,11 +3927,12 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:293
+#: src/Navigation.tsx:294
msgid "Feed"
msgstr ""
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr ""
@@ -3927,7 +3945,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:355
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:356
msgid "Feed menu"
msgstr ""
@@ -3941,24 +3959,24 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:296
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:320
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:300
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:324
msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:584
+#: src/Navigation.tsx:585
#: src/screens/SavedFeeds.tsx:108
#: src/screens/Search/SearchResults.tsx:78
-#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/screens/StarterPack/StarterPackScreen.tsx:193
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr ""
@@ -3972,7 +3990,7 @@ msgctxt "toast"
msgid "Feeds updated!"
msgstr ""
-#: src/screens/Search/modules/ExploreRecommendations.tsx:65
+#: src/screens/Search/modules/ExploreRecommendations.tsx:66
msgid "Feeds we think you might like."
msgstr ""
@@ -4000,11 +4018,11 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:161
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "Filter who you receive notifications from"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:328
+#: src/screens/Onboarding/StepFinished/index.tsx:331
msgid "Finalizing"
msgstr ""
@@ -4016,18 +4034,18 @@ msgstr ""
msgid "Finance"
msgstr ""
-#: src/view/com/posts/CustomFeedEmptyState.tsx:71
+#: src/view/com/posts/CustomFeedEmptyState.tsx:72
#: src/view/com/posts/FollowingEmptyState.tsx:53
#: src/view/com/posts/FollowingEndOfFeed.tsx:54
msgid "Find accounts to follow"
msgstr ""
-#: src/Navigation.tsx:425
-#: src/Navigation.tsx:626
+#: src/Navigation.tsx:426
+#: src/Navigation.tsx:627
msgid "Find Contacts"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:76
+#: src/screens/Settings/FindContactsSettings.tsx:78
msgid "Find Friends"
msgstr ""
@@ -4036,15 +4054,15 @@ msgstr ""
msgid "Find friends from contacts"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:270
-#: src/components/contacts/screens/GetContacts.tsx:284
+#: src/components/contacts/screens/GetContacts.tsx:272
+#: src/components/contacts/screens/GetContacts.tsx:286
msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:431
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr ""
@@ -4057,8 +4075,8 @@ msgstr ""
msgid "Find your friends"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:38
-#: src/screens/Settings/FindContactsSettings.tsx:123
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:45
+#: src/screens/Settings/FindContactsSettings.tsx:125
msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more0>"
msgstr ""
@@ -4066,11 +4084,11 @@ msgstr ""
msgid "Find your people"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:278
+#: src/components/contacts/screens/GetContacts.tsx:280
msgid "Finding friends..."
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:218
+#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Finish"
msgstr ""
@@ -4097,24 +4115,24 @@ msgstr ""
#: src/components/ProfileCard.tsx:559
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:140
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:879
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:127
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:856
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr ""
-#: src/state/shell/progress-guide.tsx:231
+#: src/state/shell/progress-guide.tsx:232
msgid "Follow 10 accounts"
msgstr ""
@@ -4126,41 +4144,41 @@ msgstr ""
msgid "Follow 7 accounts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:312
-#: src/view/com/profile/ProfileMenu.tsx:323
+#: src/view/com/profile/ProfileMenu.tsx:313
+#: src/view/com/profile/ProfileMenu.tsx:324
msgid "Follow account"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:273
-#: src/components/contacts/screens/ViewMatches.tsx:288
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:265
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:156
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:163
-#: src/screens/Settings/FindContactsSettings.tsx:438
-#: src/screens/Settings/FindContactsSettings.tsx:448
-#: src/screens/StarterPack/StarterPackScreen.tsx:438
-#: src/screens/StarterPack/StarterPackScreen.tsx:446
+#: src/components/contacts/screens/ViewMatches.tsx:275
+#: src/components/contacts/screens/ViewMatches.tsx:290
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
+#: src/screens/Settings/FindContactsSettings.tsx:443
+#: src/screens/Settings/FindContactsSettings.tsx:453
+#: src/screens/StarterPack/StarterPackScreen.tsx:442
+#: src/screens/StarterPack/StarterPackScreen.tsx:450
msgid "Follow all"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:138
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:116
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:391
+#: src/screens/Settings/FindContactsSettings.tsx:396
msgid "Followed all matches"
msgstr ""
@@ -4180,7 +4198,7 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:248
msgid "Followers of @{0} that you know"
msgstr ""
@@ -4194,9 +4212,9 @@ msgstr ""
#: src/components/ProfileCard.tsx:546
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:143
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:877
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,7 +4232,7 @@ msgstr ""
msgid "Following {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:855
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr ""
@@ -4223,7 +4241,7 @@ msgstr ""
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:364
+#: src/Navigation.tsx:365
#: src/screens/Settings/FollowingFeedPreferences.tsx:56
msgid "Following Feed Preferences"
msgstr ""
@@ -4264,8 +4282,8 @@ msgstr ""
msgid "For the best experience, we recommend using the theme font."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:323
-#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:91
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4277,8 +4295,8 @@ msgstr ""
msgid "Forget the noise"
msgstr ""
-#: src/screens/Login/index.tsx:167
-#: src/screens/Login/index.tsx:182
+#: src/screens/Login/index.tsx:168
+#: src/screens/Login/index.tsx:183
msgid "Forgot Password"
msgstr ""
@@ -4294,7 +4312,7 @@ msgstr ""
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:157
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158
msgid "From"
msgstr ""
@@ -4307,11 +4325,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr ""
@@ -4394,15 +4412,15 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1184
-#: src/screens/VideoFeed/index.tsx:1188
-#: src/view/com/auth/LoggedOut.tsx:72
-#: src/view/com/profile/ProfileFollowers.tsx:180
-#: src/view/com/profile/ProfileFollowers.tsx:181
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
+#: src/view/com/auth/LoggedOut.tsx:73
+#: src/view/com/profile/ProfileFollowers.tsx:178
+#: src/view/com/profile/ProfileFollowers.tsx:179
#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr ""
@@ -4411,8 +4429,8 @@ msgstr ""
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:775
+#: src/screens/Profile/ProfileFeed/index.tsx:100
+#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
msgstr ""
@@ -4429,7 +4447,7 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr ""
-#: src/screens/Bookmarks/index.tsx:285
+#: src/screens/Bookmarks/index.tsx:305
#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr ""
@@ -4438,8 +4456,8 @@ msgstr ""
msgid "Go Home"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:357
-#: src/view/com/profile/ProfileMenu.tsx:378
+#: src/view/com/profile/ProfileMenu.tsx:358
+#: src/view/com/profile/ProfileMenu.tsx:379
msgid "Go live"
msgstr ""
@@ -4450,8 +4468,8 @@ msgstr ""
msgid "Go Live"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:354
-#: src/view/com/profile/ProfileMenu.tsx:374
+#: src/view/com/profile/ProfileMenu.tsx:355
+#: src/view/com/profile/ProfileMenu.tsx:375
msgid "Go live (disabled)"
msgstr ""
@@ -4463,14 +4481,14 @@ msgstr ""
msgid "Go to {firstAuthorName}'s profile"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:91
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:71
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:80
+#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:92
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:72
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:81
#: src/screens/Moderation/index.tsx:219
msgid "Go to account settings"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:363
+#: src/screens/Messages/components/ChatListItem.tsx:364
msgid "Go to conversation with {0}"
msgstr ""
@@ -4498,8 +4516,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr ""
@@ -4515,8 +4533,8 @@ msgstr ""
msgid "Hacking or system attacks"
msgstr ""
-#: src/state/shell/progress-guide.tsx:220
-#: src/state/shell/progress-guide.tsx:230
+#: src/state/shell/progress-guide.tsx:221
+#: src/state/shell/progress-guide.tsx:231
msgid "Half way there!"
msgstr ""
@@ -4539,7 +4557,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr ""
#: src/components/FeedCard.tsx:157
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Happening now"
msgstr ""
@@ -4559,7 +4577,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:549
+#: src/Navigation.tsx:550
msgid "Hashtag"
msgstr ""
@@ -4576,15 +4594,15 @@ msgstr ""
msgid "Have a code? <0>Click here.0>"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:332
+#: src/screens/Signup/StepInfo/index.tsx:330
msgid "Have we got your location wrong? <0>Tap here to confirm your location with GPS.0>"
msgstr ""
-#: src/screens/Signup/index.tsx:220
+#: src/screens/Signup/index.tsx:231
msgid "Having trouble?"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:287
+#: src/components/contacts/screens/PhoneInput.tsx:289
msgid "Held by Bluesky for 7 days to prevent abuse, then deleted"
msgstr ""
@@ -4592,7 +4610,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr ""
@@ -4609,11 +4627,11 @@ msgstr ""
msgid "Hey there 👋"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:170
+#: src/ageAssurance/components/NoAccessScreen.tsx:167
msgid "Hey there!"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:210
+#: src/ageAssurance/components/NoAccessScreen.tsx:207
msgid "Hi there!"
msgstr ""
@@ -4622,7 +4640,7 @@ msgstr ""
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:653
+#: src/screens/VideoFeed/index.tsx:647
msgid "Hidden by your moderation settings."
msgstr ""
@@ -4630,17 +4648,17 @@ msgstr ""
msgid "Hidden list"
msgstr ""
-#: src/components/interstitials/Trending.tsx:130
+#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:773
+#: src/components/moderation/PostHider.tsx:139
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
#: src/lib/moderation/useLabelBehaviorDescription.ts:28
#: src/lib/moderation/useLabelBehaviorDescription.ts:33
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:129
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:130
msgid "Hide"
msgstr ""
@@ -4658,22 +4676,22 @@ msgstr ""
msgid "Hide customization options"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:527
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:530
msgid "Hide lists"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:613
msgid "Hide post for me"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:631
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
msgid "Hide reply for everyone"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:603
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:606
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:612
msgid "Hide reply for me"
msgstr ""
@@ -4686,21 +4704,21 @@ msgstr ""
msgid "Hide this event"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:771
msgid "Hide this post?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:771
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:806
msgid "Hide this reply?"
msgstr ""
-#: src/components/interstitials/Trending.tsx:112
+#: src/components/interstitials/Trending.tsx:115
msgid "Hide trending topics"
msgstr ""
-#: src/components/interstitials/Trending.tsx:128
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127
+#: src/components/interstitials/Trending.tsx:131
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128
msgid "Hide trending topics?"
msgstr ""
@@ -4712,13 +4730,13 @@ msgstr ""
msgid "Hide user list"
msgstr ""
-#: src/screens/Moderation/VerificationSettings.tsx:90
-#: src/screens/Moderation/VerificationSettings.tsx:99
+#: src/screens/Moderation/VerificationSettings.tsx:87
+#: src/screens/Moderation/VerificationSettings.tsx:96
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr ""
@@ -4758,11 +4776,11 @@ msgstr ""
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/Navigation.tsx:783
-#: src/Navigation.tsx:803
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/Navigation.tsx:784
+#: src/Navigation.tsx:804
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr ""
@@ -4775,7 +4793,7 @@ msgstr ""
msgid "Hosting provider"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:188
msgid "Hot"
msgstr ""
@@ -4788,7 +4806,7 @@ msgstr ""
msgid "How should we open this link?"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:276
+#: src/components/contacts/screens/PhoneInput.tsx:278
msgid "How we use your number:"
msgstr ""
@@ -4796,7 +4814,7 @@ msgstr ""
msgid "Human trafficking"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:264
+#: src/components/contacts/screens/GetContacts.tsx:266
msgid "I consent to Bluesky using my contacts for mutual friend discovery and to retain hashed data for matching until I opt out."
msgstr ""
@@ -4815,19 +4833,19 @@ msgstr ""
msgid "I understand"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:574
+#: src/components/contacts/screens/ViewMatches.tsx:577
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:351
+#: src/screens/Signup/StepInfo/index.tsx:349
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:122
+#: src/ageAssurance/components/NoAccessScreen.tsx:119
msgid "If you believe your birthdate is incorrect, please <0>contact our support team0>."
msgstr ""
@@ -4839,7 +4857,7 @@ msgstr ""
msgid "If you choose to hide all events, you can always re-enable them from <0>Settings → Content & Media0>."
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:277
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:271
msgid "If you delete this list, you won't be able to recover it."
msgstr ""
@@ -4851,7 +4869,7 @@ msgstr ""
msgid "If you need to update your email, <0>click here0>."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:759
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:762
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
@@ -4872,7 +4890,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr ""
@@ -4880,12 +4898,12 @@ msgstr ""
msgid "Image"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:64
+#: src/screens/Settings/AboutSettings.tsx:62
msgid "Image cache cleared"
msgstr ""
#. Android-only toast message which includes amount of space freed using localized number formatting
-#: src/screens/Settings/AboutSettings.tsx:50
+#: src/screens/Settings/AboutSettings.tsx:48
msgid "Image cache cleared, freed {0}"
msgstr ""
@@ -4902,10 +4920,10 @@ msgstr ""
msgid "Impersonation"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:68
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:73
-#: src/screens/Settings/FindContactsSettings.tsx:143
-#: src/screens/Settings/FindContactsSettings.tsx:148
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:75
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:80
+#: src/screens/Settings/FindContactsSettings.tsx:145
+#: src/screens/Settings/FindContactsSettings.tsx:150
msgid "Import contacts"
msgstr ""
@@ -4914,16 +4932,16 @@ msgstr ""
msgid "Import Contacts"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:31
-#: src/components/contacts/FindContactsBannerNUX.tsx:69
+#: src/components/contacts/FindContactsBannerNUX.tsx:32
+#: src/components/contacts/FindContactsBannerNUX.tsx:70
msgid "Import contacts to find your friends"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:507
+#: src/screens/Settings/FindContactsSettings.tsx:513
msgid "Imported on {0}"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:213
+#: src/ageAssurance/components/NoAccessScreen.tsx:210
msgid "In order to provide an age-appropriate experience, we need to know your birthdate. This is a one-time thing, and your data will be kept private."
msgstr ""
@@ -4931,7 +4949,7 @@ msgstr ""
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:146
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:147
msgid "In-app notifications"
msgstr ""
@@ -4984,7 +5002,7 @@ msgstr ""
msgid "Input the code which has been emailed to you"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:135
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:137
msgid "Interaction limited"
msgstr ""
@@ -5013,13 +5031,13 @@ msgstr ""
msgid "Invalid handle. Please try a different one."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:391
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395
msgctxt "toast"
msgid "Invalid interaction settings."
msgstr ""
#: src/components/contacts/phone-number.ts:33
-#: src/components/contacts/screens/PhoneInput.tsx:139
+#: src/components/contacts/screens/PhoneInput.tsx:141
msgid "Invalid phone number"
msgstr ""
@@ -5031,19 +5049,19 @@ msgstr ""
msgid "Invalid Verification Code"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:583
+#: src/components/contacts/screens/ViewMatches.tsx:586
msgid "Invite"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:563
+#: src/components/contacts/screens/ViewMatches.tsx:566
msgid "Invite {name} to join Bluesky"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:195
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Invite code"
msgstr ""
-#: src/screens/Signup/state.ts:342
+#: src/screens/Signup/state.ts:346
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr ""
@@ -5052,11 +5070,11 @@ msgstr ""
msgid "Invite Friends"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:298
+#: src/components/contacts/screens/ViewMatches.tsx:300
msgid "Invite friends <0/>"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:81
+#: src/components/StarterPack/ShareDialog.tsx:82
msgid "Invite people to this starter pack!"
msgstr ""
@@ -5068,8 +5086,8 @@ msgstr ""
msgid "Invites, but personal"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:365
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:92
+#: src/ageAssurance/components/NoAccessScreen.tsx:363
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:94
msgid "Is your location not accurate? <0>Tap here to confirm your location.0>"
msgstr ""
@@ -5077,19 +5095,19 @@ msgstr ""
msgid "It looks like some of your contacts have not tried to find you here yet. You can personally invite them by customizing a draft message we will provide."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:384
+#: src/screens/Signup/StepInfo/index.tsx:382
msgid "It's correct"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:491
+#: src/screens/StarterPack/Wizard/index.tsx:492
msgid "It's just <0>{0} 0>right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:486
+#: src/screens/StarterPack/Wizard/index.tsx:487
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1834
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr ""
@@ -5098,10 +5116,10 @@ msgstr ""
msgid "Jobs"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:209
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
-#: src/screens/StarterPack/StarterPackScreen.tsx:464
-#: src/screens/StarterPack/StarterPackScreen.tsx:475
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:216
+#: src/screens/StarterPack/StarterPackScreen.tsx:468
+#: src/screens/StarterPack/StarterPackScreen.tsx:479
msgid "Join Bluesky"
msgstr ""
@@ -5122,20 +5140,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr ""
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr ""
@@ -5151,7 +5169,7 @@ msgstr ""
msgid "Labels on your content"
msgstr ""
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:221
msgid "Language Settings"
msgstr ""
@@ -5165,13 +5183,13 @@ msgstr ""
msgid "Larger"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:348
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:193
+#: src/ageAssurance/components/NoAccessScreen.tsx:346
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:195
msgid "Last initiated {timeAgo} ago"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:346
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:191
+#: src/ageAssurance/components/NoAccessScreen.tsx:344
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:193
msgid "Last initiated just now"
msgstr ""
@@ -5181,9 +5199,9 @@ msgstr ""
msgid "Latest"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:170
-#: src/components/verification/VerifierDialog.tsx:138
-#: src/screens/Moderation/VerificationSettings.tsx:48
+#: src/components/verification/VerificationsDialog.tsx:167
+#: src/components/verification/VerifierDialog.tsx:135
+#: src/screens/Moderation/VerificationSettings.tsx:49
#: src/screens/Profile/Header/EditProfileDialog.tsx:349
#: src/screens/Settings/components/ChangeHandleDialog.tsx:213
#: src/screens/Settings/components/ChangeHandleDialog.tsx:277
@@ -5195,7 +5213,7 @@ msgstr ""
msgid "Learn More"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:65
+#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66
msgid "Learn more about age assurance"
msgstr ""
@@ -5207,9 +5225,9 @@ msgstr ""
msgid "Learn more about how inviting friends works"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:300
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:45
-#: src/screens/Settings/FindContactsSettings.tsx:130
+#: src/components/contacts/screens/PhoneInput.tsx:302
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:52
+#: src/screens/Settings/FindContactsSettings.tsx:132
msgctxt "english-only-resource"
msgid "Learn more about importing contacts"
msgstr ""
@@ -5218,8 +5236,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr ""
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr ""
@@ -5231,13 +5249,13 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:151
-#: src/components/verification/VerifierDialog.tsx:119
+#: src/components/verification/VerificationsDialog.tsx:152
+#: src/components/verification/VerifierDialog.tsx:120
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -5247,16 +5265,16 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:88
+#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89
msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr ""
@@ -5286,16 +5304,16 @@ msgstr ""
msgid "left to go."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr ""
-#: src/screens/Login/index.tsx:168
-#: src/screens/Login/index.tsx:183
+#: src/screens/Login/index.tsx:169
+#: src/screens/Login/index.tsx:184
msgid "Let's get your password reset!"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:330
+#: src/screens/Onboarding/StepFinished/index.tsx:333
msgid "Let's go!"
msgstr ""
@@ -5310,12 +5328,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:517
msgid "Like"
msgstr ""
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:286
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5323,25 +5341,25 @@ msgstr ""
msgid "Like 10 posts"
msgstr ""
-#: src/state/shell/progress-guide.tsx:216
-#: src/state/shell/progress-guide.tsx:221
+#: src/state/shell/progress-guide.tsx:217
+#: src/state/shell/progress-guide.tsx:222
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/Navigation.tsx:462
+#: src/Navigation.tsx:463
msgid "Like notifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:502
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:504
msgid "Like this feed"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:146
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:147
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:298
-#: src/Navigation.tsx:303
+#: src/Navigation.tsx:299
+#: src/Navigation.tsx:304
msgid "Liked by"
msgstr ""
@@ -5357,39 +5375,39 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:490
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:166
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:180
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:492
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:167
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:126
+#: src/lib/hooks/useNotificationHandler.ts:129
#: src/screens/Settings/NotificationSettings/index.tsx:126
#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:168
+#: src/lib/hooks/useNotificationHandler.ts:171
#: src/screens/Settings/NotificationSettings/index.tsx:207
#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:486
+#: src/Navigation.tsx:487
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:482
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:47
-#: src/screens/PostThread/components/HeaderDropdown.tsx:52
+#: src/screens/PostThread/components/HeaderDropdown.tsx:48
+#: src/screens/PostThread/components/HeaderDropdown.tsx:53
msgid "Linear"
msgstr ""
-#: src/Navigation.tsx:253
+#: src/Navigation.tsx:254
msgid "List"
msgstr ""
@@ -5397,7 +5415,7 @@ msgstr ""
msgid "List avatar"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:50
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:47
msgctxt "toast"
msgid "List blocked"
msgstr ""
@@ -5419,7 +5437,7 @@ msgstr ""
msgid "List creator"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:90
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:92
msgctxt "toast"
msgid "List deleted"
msgstr ""
@@ -5444,7 +5462,7 @@ msgstr ""
msgid "List must have a name."
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:31
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:32
msgctxt "toast"
msgid "List muted"
msgstr ""
@@ -5457,24 +5475,24 @@ msgstr ""
msgid "List name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:116
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:131
+#: src/screens/ProfileList/components/Header.tsx:114
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:129
msgctxt "toast"
msgid "List unblocked"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:98
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:113
+#: src/screens/ProfileList/components/Header.tsx:100
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:115
msgctxt "toast"
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:175
#: src/view/screens/Lists.tsx:67
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr ""
@@ -5491,20 +5509,30 @@ msgstr ""
msgid "LIVE"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:52
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:52
+#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:53
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:53
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:235
+#: src/components/live/LiveStatusDialog.tsx:228
msgid "Live feature is in beta"
msgstr ""
@@ -5515,31 +5543,31 @@ msgstr ""
msgid "Live link"
msgstr ""
-#: src/screens/Search/Explore.tsx:84
+#: src/screens/Search/Explore.tsx:83
msgid "Load more"
msgstr ""
-#: src/screens/Search/Explore.tsx:506
-#: src/screens/Search/Explore.tsx:583
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr ""
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
-#: src/view/com/feeds/FeedPage.tsx:169
+#: src/view/com/feeds/FeedPage.tsx:170
msgid "Load new posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:569
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:572
msgid "Loading lists..."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:273
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:276
msgid "Loading post interaction settings..."
msgstr ""
@@ -5547,7 +5575,7 @@ msgstr ""
msgid "Loading..."
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:324
msgid "Log"
msgstr ""
@@ -5564,7 +5592,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr ""
@@ -5638,22 +5666,31 @@ msgstr ""
msgid "Media"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
-#: src/Navigation.tsx:446
+#: src/Navigation.tsx:447
msgid "Mention notifications"
msgstr ""
-#: src/components/WhoCanReply.tsx:318
+#: src/components/WhoCanReply.tsx:319
msgid "mentioned users"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:147
+#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr ""
@@ -5661,20 +5698,20 @@ msgstr ""
msgid "Menu"
msgstr ""
-#: src/components/dms/MessageProfileButton.tsx:97
+#: src/components/dms/MessageProfileButton.tsx:98
msgid "Message {0}"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/MessageContextMenu.tsx:76
msgctxt "toast"
msgid "Message deleted"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:199
+#: src/screens/Messages/components/ChatListItem.tsx:200
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:127
+#: src/components/dms/MessageContextMenu.tsx:124
msgid "Message from @{0}: {1}"
msgstr ""
@@ -5691,11 +5728,11 @@ msgstr ""
msgid "Message is too long"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:125
+#: src/components/dms/MessageContextMenu.tsx:122
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:798
+#: src/Navigation.tsx:799
msgid "Messages"
msgstr ""
@@ -5708,7 +5745,7 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:510
+#: src/Navigation.tsx:511
msgid "Miscellaneous notifications"
msgstr ""
@@ -5716,7 +5753,11 @@ msgstr ""
msgid "Misleading"
msgstr ""
-#: src/Navigation.tsx:179
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
+#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
#: src/screens/Settings/Settings.tsx:195
@@ -5755,7 +5796,7 @@ msgstr ""
msgid "Moderation lists"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:185
#: src/view/screens/ModerationModlists.tsx:67
msgid "Moderation Lists"
msgstr ""
@@ -5764,7 +5805,7 @@ msgstr ""
msgid "moderation settings"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:314
msgid "Moderation states"
msgstr ""
@@ -5777,8 +5818,8 @@ msgstr ""
msgid "Moderator has chosen to set a general warning on the content."
msgstr ""
-#: src/view/shell/desktop/Feeds.tsx:109
-#: src/view/shell/desktop/Feeds.tsx:156
+#: src/view/shell/desktop/Feeds.tsx:106
+#: src/view/shell/desktop/Feeds.tsx:153
msgid "More feeds"
msgstr ""
@@ -5787,9 +5828,10 @@ msgstr ""
msgid "More languages..."
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:149
-#: src/view/com/profile/ProfileMenu.tsx:241
-#: src/view/com/profile/ProfileMenu.tsx:248
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
+#: src/view/com/profile/ProfileMenu.tsx:242
+#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
msgstr ""
@@ -5820,15 +5862,15 @@ msgstr ""
msgid "Mute {tag}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
-#: src/view/com/profile/ProfileMenu.tsx:435
-#: src/view/com/profile/ProfileMenu.tsx:442
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:689
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:695
+#: src/view/com/profile/ProfileMenu.tsx:436
+#: src/view/com/profile/ProfileMenu.tsx:443
msgid "Mute account"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:89
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:92
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:82
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:85
msgid "Mute accounts"
msgstr ""
@@ -5841,11 +5883,11 @@ msgstr ""
msgid "Mute in:"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:115
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:108
msgid "Mute list"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:110
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:103
msgid "Mute these accounts?"
msgstr ""
@@ -5873,13 +5915,13 @@ msgstr ""
msgid "Mute this word until you unmute it"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:574
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:577
msgid "Mute thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:584
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:586
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:589
msgid "Mute words & tags"
msgstr ""
@@ -5887,7 +5929,7 @@ msgstr ""
msgid "Muted accounts"
msgstr ""
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:190
#: src/view/screens/ModerationMutedAccounts.tsx:116
msgid "Muted Accounts"
msgstr ""
@@ -5904,7 +5946,7 @@ msgstr ""
msgid "Muted words & tags"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:112
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:105
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr ""
@@ -5939,12 +5981,12 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr ""
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:333
-#: src/components/moderation/ReportDialog/index.tsx:350
+#: src/components/moderation/ReportDialog/index.tsx:327
+#: src/components/moderation/ReportDialog/index.tsx:344
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -5952,8 +5994,8 @@ msgstr ""
msgid "Nevermind, create a handle for me"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196
-#: src/view/com/profile/ProfileMenu.tsx:390
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:193
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "New"
msgstr ""
@@ -5971,7 +6013,7 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/components/dms/dialogs/NewChatDialog.tsx:68
#: src/screens/Messages/ChatList.tsx:403
#: src/screens/Messages/ChatList.tsx:410
msgid "New chat"
@@ -5983,15 +6025,15 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:478
+#: src/Navigation.tsx:479
msgid "New follower notifications"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:161
+#: src/lib/hooks/useNotificationHandler.ts:164
#: src/screens/Settings/NotificationSettings/index.tsx:137
#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
msgid "New followers"
@@ -6018,16 +6060,16 @@ msgstr ""
msgid "New password"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr ""
-#: src/view/com/feeds/FeedPage.tsx:180
+#: src/view/com/feeds/FeedPage.tsx:181
msgctxt "action"
msgid "New post"
msgstr ""
@@ -6053,39 +6095,39 @@ msgstr ""
msgid "New user info dialog"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:93
-#: src/screens/PostThread/components/HeaderDropdown.tsx:98
+#: src/screens/PostThread/components/HeaderDropdown.tsx:94
+#: src/screens/PostThread/components/HeaderDropdown.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:72
#: src/screens/Settings/ThreadPreferences.tsx:75
msgid "Newest replies first"
msgstr ""
#: src/lib/interests.ts:67
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:238
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "News"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:392
-#: src/components/contacts/screens/ViewMatches.tsx:407
+#: src/components/contacts/screens/ViewMatches.tsx:394
+#: src/components/contacts/screens/ViewMatches.tsx:409
#: src/screens/Login/ForgotPasswordForm.tsx:137
#: src/screens/Login/ForgotPasswordForm.tsx:143
#: src/screens/Login/LoginForm.tsx:346
#: src/screens/Login/LoginForm.tsx:353
#: src/screens/Login/SetNewPasswordForm.tsx:182
#: src/screens/Login/SetNewPasswordForm.tsx:188
-#: src/screens/Onboarding/StepFinished/index.tsx:323
-#: src/screens/Onboarding/StepFinished/index.tsx:332
+#: src/screens/Onboarding/StepFinished/index.tsx:326
+#: src/screens/Onboarding/StepFinished/index.tsx:335
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165
#: src/screens/Signup/BackNextButtons.tsx:67
-#: src/screens/StarterPack/Wizard/index.tsx:210
-#: src/screens/StarterPack/Wizard/index.tsx:214
-#: src/screens/StarterPack/Wizard/index.tsx:392
-#: src/screens/StarterPack/Wizard/index.tsx:399
+#: src/screens/StarterPack/Wizard/index.tsx:211
+#: src/screens/StarterPack/Wizard/index.tsx:215
+#: src/screens/StarterPack/Wizard/index.tsx:393
+#: src/screens/StarterPack/Wizard/index.tsx:400
msgid "Next"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr ""
@@ -6097,11 +6139,11 @@ msgstr ""
msgid "No app passwords yet"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:677
+#: src/components/contacts/screens/ViewMatches.tsx:680
msgid "No contacts found"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:655
+#: src/components/contacts/screens/ViewMatches.tsx:658
msgid "No contacts with the name “{query}” found"
msgstr ""
@@ -6114,6 +6156,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr ""
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6126,7 +6172,7 @@ msgstr ""
msgid "No feeds found. Try searching for something else."
msgstr ""
-#: src/view/com/profile/ProfileFollowers.tsx:171
+#: src/view/com/profile/ProfileFollowers.tsx:169
msgid "No followers yet"
msgstr ""
@@ -6136,7 +6182,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr ""
@@ -6150,11 +6196,11 @@ msgstr ""
msgid "No longer following {0}"
msgstr ""
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:141
+#: src/screens/Messages/components/ChatListItem.tsx:142
msgid "No messages yet"
msgstr ""
@@ -6162,7 +6208,7 @@ msgstr ""
msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you."
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:559
+#: src/components/contacts/screens/ViewMatches.tsx:562
msgid "No name"
msgstr ""
@@ -6178,7 +6224,7 @@ msgstr ""
msgid "No one"
msgstr ""
-#: src/components/WhoCanReply.tsx:301
+#: src/components/WhoCanReply.tsx:302
msgid "No one but the author can quote this post."
msgstr ""
@@ -6195,7 +6241,7 @@ msgstr ""
msgid "No quotes yet"
msgstr ""
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,11 +6255,11 @@ msgid "No result"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:229
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr ""
-#: src/screens/Search/Explore.tsx:800
+#: src/screens/Search/Explore.tsx:789
msgid "No results for \"{0}\"."
msgstr ""
@@ -6230,7 +6276,7 @@ msgstr ""
msgid "No results found for \"<0>{query}0>\"."
msgstr ""
-#: src/screens/Search/Explore.tsx:804
+#: src/screens/Search/Explore.tsx:793
msgid "No results."
msgstr ""
@@ -6238,7 +6284,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr ""
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,11 +6293,11 @@ msgstr ""
msgid "No thanks"
msgstr ""
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:465
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:468
msgid "Nobody"
msgstr ""
@@ -6285,7 +6331,7 @@ msgid "None"
msgstr ""
#: src/screens/FindContactsFlowScreen.tsx:70
-#: src/screens/Settings/FindContactsSettings.tsx:101
+#: src/screens/Settings/FindContactsSettings.tsx:103
msgid "Not available on this platform."
msgstr ""
@@ -6293,12 +6339,12 @@ msgstr ""
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:169
+#: src/Navigation.tsx:170
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:557
+#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr ""
@@ -6306,7 +6352,7 @@ msgstr ""
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134
msgid "Note: This post is only visible to logged-in users."
msgstr ""
@@ -6315,13 +6361,13 @@ msgid "Nothing here"
msgstr ""
#: src/screens/Bookmarks/components/EmptyState.tsx:35
-#: src/screens/Bookmarks/index.tsx:281
+#: src/screens/Bookmarks/index.tsx:301
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:432
-#: src/Navigation.tsx:579
-#: src/view/screens/Notifications.tsx:136
+#: src/Navigation.tsx:433
+#: src/Navigation.tsx:580
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr ""
@@ -6333,8 +6379,8 @@ msgstr ""
msgid "Notification Sounds"
msgstr ""
-#: src/Navigation.tsx:574
-#: src/Navigation.tsx:793
+#: src/Navigation.tsx:575
+#: src/Navigation.tsx:794
#: src/screens/Notifications/ActivityList.tsx:30
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90
#: src/screens/Settings/NotificationSettings/index.tsx:92
@@ -6349,10 +6395,10 @@ msgstr ""
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr ""
@@ -6368,8 +6414,8 @@ msgstr ""
msgid "Now"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr ""
@@ -6389,8 +6435,8 @@ msgid "Oh no!"
msgstr ""
#. Confirm button text.
-#: src/components/contacts/screens/GetContacts.tsx:314
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:222
+#: src/components/contacts/screens/GetContacts.tsx:316
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6402,8 +6448,8 @@ msgstr ""
msgid "Okay"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:83
-#: src/screens/PostThread/components/HeaderDropdown.tsx:88
+#: src/screens/PostThread/components/HeaderDropdown.tsx:84
+#: src/screens/PostThread/components/HeaderDropdown.tsx:89
#: src/screens/Settings/ThreadPreferences.tsx:64
#: src/screens/Settings/ThreadPreferences.tsx:67
msgid "Oldest replies first"
@@ -6417,11 +6463,11 @@ msgstr ""
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:398
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:395
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr ""
@@ -6433,7 +6479,7 @@ msgstr ""
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:405
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr ""
@@ -6441,7 +6487,7 @@ msgstr ""
msgid "Only .jpg and .png files are supported"
msgstr ""
-#: src/components/WhoCanReply.tsx:281
+#: src/components/WhoCanReply.tsx:282
msgid "Only {0} can reply."
msgstr ""
@@ -6464,8 +6510,8 @@ msgid "Oops, something went wrong!"
msgstr ""
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,30 +6522,34 @@ msgstr ""
msgid "Open avatar creator"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:198
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:373
-#: src/screens/Messages/components/ChatListItem.tsx:377
+#: src/screens/Messages/components/ChatListItem.tsx:374
+#: src/screens/Messages/components/ChatListItem.tsx:378
msgid "Open conversation options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1481
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:292
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:297
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
msgid "Open feed options menu"
msgstr ""
@@ -6531,16 +6581,16 @@ msgstr ""
msgid "Open post options menu"
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:205
-#: src/components/live/LiveStatusDialog.tsx:219
+#: src/components/live/LiveStatusDialog.tsx:202
+#: src/components/live/LiveStatusDialog.tsx:212
msgid "Open profile"
msgstr ""
-#: src/components/PostControls/ShareMenu/index.tsx:100
+#: src/components/PostControls/ShareMenu/index.tsx:98
msgid "Open share menu"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:568
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
msgid "Open starter pack menu"
msgstr ""
@@ -6553,15 +6603,15 @@ msgstr ""
msgid "Open system log"
msgstr ""
-#: src/view/shell/desktop/Feeds.tsx:188
+#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:153
msgid "Opens a dialog to choose who can interact with this post"
msgstr ""
@@ -6589,7 +6639,7 @@ msgstr ""
msgid "Opens composer"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:199
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
@@ -6598,21 +6648,21 @@ msgstr ""
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1482
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/view/com/composer/photos/SelectGifBtn.tsx:36
+#: src/view/com/composer/photos/SelectGifBtn.tsx:37
msgid "Opens GIF select dialog"
msgstr ""
@@ -6620,7 +6670,7 @@ msgstr ""
msgid "Opens helpdesk in browser"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:221
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6628,7 +6678,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:581
+#: src/view/com/util/UserAvatar.tsx:579
msgid "Opens live status dialog"
msgstr ""
@@ -6640,12 +6690,16 @@ msgstr ""
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:144
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
msgstr ""
@@ -6679,7 +6733,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr ""
@@ -6741,7 +6795,7 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:229
#: src/screens/Settings/AccountSettings.tsx:121
#: src/screens/Settings/AccountSettings.tsx:125
-#: src/screens/Signup/StepInfo/index.tsx:260
+#: src/screens/Signup/StepInfo/index.tsx:258
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -6755,7 +6809,7 @@ msgstr ""
msgid "Password must be at least 8 characters long."
msgstr ""
-#: src/screens/Login/index.tsx:195
+#: src/screens/Login/index.tsx:196
msgid "Password updated"
msgstr ""
@@ -6775,28 +6829,28 @@ msgstr ""
#: src/screens/ProfileList/index.tsx:166
#: src/screens/Search/SearchResults.tsx:72
-#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/screens/StarterPack/StarterPackScreen.tsx:192
msgid "People"
msgstr ""
-#: src/Navigation.tsx:240
+#: src/Navigation.tsx:241
msgid "People followed by @{0}"
msgstr ""
-#: src/Navigation.tsx:233
+#: src/Navigation.tsx:234
msgid "People following @{0}"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:181
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:191
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:192
msgid "People I follow"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:504
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:507
msgid "People you follow"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:518
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:521
msgid "People you mention"
msgstr ""
@@ -6816,12 +6870,12 @@ msgstr ""
msgid "Pets"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:189
-#: src/components/contacts/screens/PhoneInput.tsx:201
+#: src/components/contacts/screens/PhoneInput.tsx:191
+#: src/components/contacts/screens/PhoneInput.tsx:203
msgid "Phone number"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:301
+#: src/components/contacts/screens/VerifyNumber.tsx:303
msgid "Phone number verified"
msgstr ""
@@ -6829,12 +6883,12 @@ msgstr ""
msgid "Photography"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:527
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:529
#: src/screens/SavedFeeds.tsx:351
msgid "Pin feed"
msgstr ""
@@ -6843,17 +6897,17 @@ msgstr ""
msgid "Pin Feed"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:156
-#: src/screens/ProfileList/components/Header.tsx:163
+#: src/screens/ProfileList/components/Header.tsx:150
+#: src/screens/ProfileList/components/Header.tsx:157
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:338
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:339
msgid "Pin to Home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:478
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
msgid "Pin to your profile"
msgstr ""
@@ -6861,8 +6915,8 @@ msgstr ""
msgid "Pinned"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:161
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:175
msgid "Pinned {0} to Home"
msgstr ""
@@ -6870,7 +6924,7 @@ msgstr ""
msgid "Pinned Feeds"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:74
+#: src/screens/ProfileList/components/Header.tsx:76
msgid "Pinned to your feeds"
msgstr ""
@@ -6909,7 +6963,7 @@ msgstr ""
msgid "Plays the video"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -6917,12 +6971,12 @@ msgstr ""
msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive."
msgstr ""
-#: src/screens/Signup/state.ts:289
+#: src/screens/Signup/state.ts:293
msgid "Please choose your handle."
msgstr ""
-#: src/screens/Signup/state.ts:281
-#: src/screens/Signup/StepInfo/index.tsx:151
+#: src/screens/Signup/state.ts:285
+#: src/screens/Signup/StepInfo/index.tsx:153
msgid "Please choose your password."
msgstr ""
@@ -6930,12 +6984,12 @@ msgstr ""
msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
msgstr ""
-#: src/screens/Signup/state.ts:304
+#: src/screens/Signup/state.ts:308
msgid "Please complete the verification captcha."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101
-#: src/screens/Signup/StepInfo/index.tsx:140
+#: src/screens/Signup/StepInfo/index.tsx:142
msgid "Please double-check that you have entered your email address correctly."
msgstr ""
@@ -6982,12 +7036,12 @@ msgstr ""
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
-#: src/screens/Signup/state.ts:265
-#: src/screens/Signup/StepInfo/index.tsx:122
+#: src/screens/Signup/state.ts:269
+#: src/screens/Signup/StepInfo/index.tsx:124
msgid "Please enter your email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:115
+#: src/screens/Signup/StepInfo/index.tsx:117
msgid "Please enter your invite code."
msgstr ""
@@ -7024,7 +7078,7 @@ msgstr ""
msgid "Please go back, or activate this element to return to the start of the active content."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:97
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:99
msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status."
msgstr ""
@@ -7040,12 +7094,12 @@ msgstr ""
msgid "Please select a reason for this report"
msgstr ""
-#: src/lib/hooks/useAccountSwitcher.ts:45
-#: src/lib/hooks/useAccountSwitcher.ts:55
+#: src/lib/hooks/useAccountSwitcher.ts:46
+#: src/lib/hooks/useAccountSwitcher.ts:56
msgid "Please sign in as @{0}"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:102
+#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Please use the native app to import your contacts."
msgstr ""
@@ -7062,35 +7116,35 @@ msgid "Please write your message below:"
msgstr ""
#: src/lib/interests.ts:70
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:232
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229
msgid "Politics"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr ""
-#: src/screens/PostThread/index.tsx:531
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr ""
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr ""
@@ -7099,14 +7153,14 @@ msgstr ""
msgid "Post blocked"
msgstr ""
-#: src/Navigation.tsx:266
-#: src/Navigation.tsx:273
-#: src/Navigation.tsx:280
-#: src/Navigation.tsx:287
+#: src/Navigation.tsx:267
+#: src/Navigation.tsx:274
+#: src/Navigation.tsx:281
+#: src/Navigation.tsx:288
msgid "Post by @{0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:194
msgctxt "toast"
msgid "Post deleted"
msgstr ""
@@ -7118,7 +7172,7 @@ msgstr ""
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:134
#: src/screens/PostThread/components/ThreadItemPost.tsx:112
#: src/screens/PostThread/components/ThreadItemTreePost.tsx:108
-#: src/screens/VideoFeed/index.tsx:557
+#: src/screens/VideoFeed/index.tsx:551
msgid "Post has been deleted"
msgstr ""
@@ -7132,11 +7186,11 @@ msgstr ""
msgid "Post Hidden by You"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:679
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:682
msgid "Post interaction settings"
msgstr ""
-#: src/Navigation.tsx:200
+#: src/Navigation.tsx:201
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr ""
@@ -7156,7 +7210,7 @@ msgctxt "toast"
msgid "Post pinned"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:66
+#: src/components/PostControls/BookmarkButton.tsx:67
msgid "Post saved"
msgstr ""
@@ -7169,7 +7223,7 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262
#: src/screens/ProfileList/index.tsx:166
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216
-#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/screens/StarterPack/StarterPackScreen.tsx:194
#: src/view/screens/Profile.tsx:234
msgid "Posts"
msgstr ""
@@ -7213,11 +7267,11 @@ msgstr ""
msgid "Press to view followers of this account that you also follow"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:118
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:119
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr ""
@@ -7239,8 +7293,8 @@ msgstr ""
msgid "Privacy and security"
msgstr ""
-#: src/Navigation.tsx:409
-#: src/Navigation.tsx:417
+#: src/Navigation.tsx:410
+#: src/Navigation.tsx:418
#: src/screens/Settings/ActivityPrivacySettings.tsx:40
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:44
msgid "Privacy and Security"
@@ -7253,12 +7307,12 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102
-#: src/Navigation.tsx:333
-#: src/screens/Settings/AboutSettings.tsx:92
-#: src/screens/Settings/AboutSettings.tsx:95
+#: src/Navigation.tsx:334
+#: src/screens/Settings/AboutSettings.tsx:90
+#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr ""
@@ -7266,7 +7320,7 @@ msgstr ""
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1897
+#: src/view/com/composer/Composer.tsx:2301
msgid "Processing video..."
msgstr ""
@@ -7280,10 +7334,10 @@ msgstr ""
msgid "profile"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr ""
@@ -7296,7 +7350,7 @@ msgstr ""
msgid "Promoting or selling prohibited items or services"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:160
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:162
msgid "Psst! You can edit who can interact with this post."
msgstr ""
@@ -7305,22 +7359,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr ""
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1101
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1094
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1079
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1086
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7328,7 +7382,7 @@ msgstr ""
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:129
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:130
msgid "Push notifications"
msgstr ""
@@ -7340,19 +7394,19 @@ msgstr ""
msgid "Push, People you follow"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:137
+#: src/components/StarterPack/QrCodeDialog.tsx:139
msgid "QR code copied to your clipboard!"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:115
+#: src/components/StarterPack/QrCodeDialog.tsx:117
msgid "QR code has been downloaded!"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:116
+#: src/components/StarterPack/QrCodeDialog.tsx:118
msgid "QR code saved to your camera roll!"
msgstr ""
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:455
msgid "Quote notifications"
msgstr ""
@@ -7360,14 +7414,15 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:340
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
msgid "Quote post was re-attached"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:343
msgid "Quote post was successfully detached"
msgstr ""
@@ -7378,14 +7433,14 @@ msgstr ""
msgid "Quote posts disabled"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:154
+#: src/lib/hooks/useNotificationHandler.ts:157
#: src/screens/Post/PostQuotes.tsx:41
#: src/screens/Settings/NotificationSettings/index.tsx:170
#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
msgid "Quotes"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr ""
@@ -7393,12 +7448,12 @@ msgstr ""
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:106
+#: src/components/contacts/screens/PhoneInput.tsx:108
msgid "Rate limit exceeded. Please try again later."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:646
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:656
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659
msgid "Re-attach quote"
msgstr ""
@@ -7419,16 +7474,16 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:159
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:170
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:996
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:996
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr ""
@@ -7454,11 +7509,11 @@ msgstr ""
msgid "Read the Bluesky Terms of Service"
msgstr ""
-#: src/components/WelcomeModal.tsx:146
+#: src/components/WelcomeModal.tsx:148
msgid "Real conversations."
msgstr ""
-#: src/components/WelcomeModal.tsx:144
+#: src/components/WelcomeModal.tsx:146
msgid "Real people."
msgstr ""
@@ -7467,11 +7522,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:135
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:136
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:119
msgid "Receive push notifications"
msgstr ""
@@ -7483,7 +7538,7 @@ msgstr ""
msgid "Recently used"
msgstr ""
-#: src/screens/Search/modules/ExploreRecommendations.tsx:54
+#: src/screens/Search/modules/ExploreRecommendations.tsx:55
msgid "Recommended"
msgstr ""
@@ -7507,12 +7562,12 @@ msgstr ""
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:443
-#: src/components/dialogs/StarterPackDialog.tsx:374
-#: src/components/dialogs/StarterPackDialog.tsx:380
+#: src/components/dialogs/StarterPackDialog.tsx:375
+#: src/components/dialogs/StarterPackDialog.tsx:381
#: src/components/FeedCard.tsx:375
#: src/components/StarterPack/Wizard/WizardListCard.tsx:105
#: src/components/StarterPack/Wizard/WizardListCard.tsx:112
-#: src/screens/Bookmarks/index.tsx:266
+#: src/screens/Bookmarks/index.tsx:267
#: src/screens/Settings/Settings.tsx:682
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:220
@@ -7532,8 +7587,8 @@ msgstr ""
msgid "Remove account"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:548
-#: src/screens/Settings/FindContactsSettings.tsx:556
+#: src/screens/Settings/FindContactsSettings.tsx:554
+#: src/screens/Settings/FindContactsSettings.tsx:562
msgid "Remove all contacts"
msgstr ""
@@ -7541,8 +7596,8 @@ msgstr ""
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:498
-#: src/view/com/util/UserAvatar.tsx:501
+#: src/view/com/util/UserAvatar.tsx:499
+#: src/view/com/util/UserAvatar.tsx:502
msgid "Remove Avatar"
msgstr ""
@@ -7565,10 +7620,10 @@ msgstr ""
msgid "Remove feed?"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:181
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:184
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:175
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:178
#: src/screens/SavedFeeds.tsx:340
msgid "Remove from my feeds"
msgstr ""
@@ -7582,8 +7637,8 @@ msgstr ""
msgid "Remove from saved feeds"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:140
-#: src/screens/Bookmarks/index.tsx:260
+#: src/components/PostControls/BookmarkButton.tsx:141
+#: src/screens/Bookmarks/index.tsx:261
msgid "Remove from saved posts"
msgstr ""
@@ -7617,8 +7672,8 @@ msgstr ""
msgid "Remove subtitle file"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:497
-#: src/screens/Settings/FindContactsSettings.tsx:323
+#: src/components/contacts/screens/ViewMatches.tsx:499
+#: src/screens/Settings/FindContactsSettings.tsx:327
msgid "Remove suggestion"
msgstr ""
@@ -7631,9 +7686,9 @@ msgid "Remove user from list"
msgstr ""
#: src/components/verification/VerificationRemovePrompt.tsx:46
-#: src/components/verification/VerificationsDialog.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:408
-#: src/view/com/profile/ProfileMenu.tsx:411
+#: src/components/verification/VerificationsDialog.tsx:249
+#: src/view/com/profile/ProfileMenu.tsx:409
+#: src/view/com/profile/ProfileMenu.tsx:412
msgid "Remove verification"
msgstr ""
@@ -7658,17 +7713,17 @@ msgstr ""
msgid "Removed from saved feeds"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:106
-#: src/screens/Bookmarks/index.tsx:218
+#: src/components/PostControls/BookmarkButton.tsx:107
+#: src/screens/Bookmarks/index.tsx:219
msgid "Removed from saved posts"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:277
+#: src/components/dialogs/StarterPackDialog.tsx:278
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:74
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:123
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:76
#: src/view/com/posts/FeedShutdownMsg.tsx:44
msgid "Removed from your feeds"
msgstr ""
@@ -7704,7 +7759,7 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279
-#: src/lib/hooks/useNotificationHandler.ts:140
+#: src/lib/hooks/useNotificationHandler.ts:143
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218
#: src/screens/Settings/NotificationSettings/index.tsx:148
#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
@@ -7712,21 +7767,21 @@ msgstr ""
msgid "Replies"
msgstr ""
-#: src/components/WhoCanReply.tsx:85
+#: src/components/WhoCanReply.tsx:86
msgid "Replies disabled"
msgstr ""
-#: src/components/WhoCanReply.tsx:279
+#: src/components/WhoCanReply.tsx:280
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1117
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:240
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -7740,36 +7795,36 @@ msgstr ""
msgid "Reply Hidden by You"
msgstr ""
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:439
msgid "Reply notifications"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:412
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:415
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:69
+#: src/screens/PostThread/components/HeaderDropdown.tsx:70
msgid "Reply sorting"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:381
msgctxt "toast"
msgid "Reply visibility updated"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:376
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380
msgid "Reply was successfully hidden"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:168
+#: src/components/dms/MessageContextMenu.tsx:165
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
-#: src/components/live/LiveStatusDialog.tsx:257
+#: src/components/live/LiveStatusDialog.tsx:250
msgid "Report"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:475
-#: src/view/com/profile/ProfileMenu.tsx:478
+#: src/view/com/profile/ProfileMenu.tsx:476
+#: src/view/com/profile/ProfileMenu.tsx:479
msgid "Report account"
msgstr ""
@@ -7782,31 +7837,31 @@ msgid "Report conversation"
msgstr ""
#: src/components/moderation/ReportDialog/index.tsx:90
-#: src/components/moderation/ReportDialog/index.tsx:253
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:543
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:549
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:545
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:551
msgid "Report feed"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:215
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:218
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:209
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:212
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:166
+#: src/components/dms/MessageContextMenu.tsx:163
msgid "Report message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:712
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:714
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:715
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Report post"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:632
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
+#: src/screens/StarterPack/StarterPackScreen.tsx:640
msgid "Report starter pack"
msgstr ""
@@ -7827,7 +7882,7 @@ msgstr ""
msgid "Report this list"
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:240
+#: src/components/live/LiveStatusDialog.tsx:233
#: src/components/moderation/ReportDialog/copy.ts:19
msgid "Report this livestream"
msgstr ""
@@ -7861,14 +7916,14 @@ msgstr ""
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:470
+#: src/Navigation.tsx:471
msgid "Repost notifications"
msgstr ""
#: src/components/PostControls/RepostButton.tsx:145
#: src/components/PostControls/RepostButton.web.tsx:44
#: src/components/PostControls/RepostButton.web.tsx:104
-#: src/screens/StarterPack/StarterPackScreen.tsx:563
+#: src/screens/StarterPack/StarterPackScreen.tsx:568
msgid "Repost or quote post"
msgstr ""
@@ -7886,23 +7941,23 @@ msgstr ""
msgid "Reposted by you"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:133
+#: src/lib/hooks/useNotificationHandler.ts:136
#: src/screens/Settings/NotificationSettings/index.tsx:181
#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:175
+#: src/lib/hooks/useNotificationHandler.ts:178
#: src/screens/Settings/NotificationSettings/index.tsx:222
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:494
+#: src/Navigation.tsx:495
msgid "Reposts of your reposts notifications"
msgstr ""
@@ -7920,7 +7975,7 @@ msgstr ""
msgid "Require an email code to sign in to your account."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:209
+#: src/screens/Signup/StepInfo/index.tsx:207
msgid "Required for this provider"
msgstr ""
@@ -7932,12 +7987,12 @@ msgstr ""
msgid "Resend"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:362
-#: src/components/contacts/screens/VerifyNumber.tsx:379
+#: src/components/contacts/screens/VerifyNumber.tsx:364
+#: src/components/contacts/screens/VerifyNumber.tsx:381
msgid "Resend code"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:369
+#: src/components/contacts/screens/VerifyNumber.tsx:371
msgid "Resend code in <0>00:{0}0>"
msgstr ""
@@ -7972,8 +8027,8 @@ msgstr ""
msgid "Reset password"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:516
-#: src/screens/Settings/FindContactsSettings.tsx:532
+#: src/screens/Settings/FindContactsSettings.tsx:522
+#: src/screens/Settings/FindContactsSettings.tsx:538
msgid "Resync contacts"
msgstr ""
@@ -7988,22 +8043,22 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceErrors.tsx:27
#: src/components/ageAssurance/AgeAssuranceErrors.tsx:30
-#: src/components/contacts/screens/VerifyNumber.tsx:347
-#: src/components/contacts/screens/VerifyNumber.tsx:352
+#: src/components/contacts/screens/VerifyNumber.tsx:349
+#: src/components/contacts/screens/VerifyNumber.tsx:354
#: src/components/dms/MessageItem.tsx:322
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:114
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8015,14 +8070,14 @@ msgstr ""
msgid "Retry"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:284
+#: src/components/moderation/ReportDialog/index.tsx:278
#: src/view/screens/Storybook/Admonitions.tsx:60
msgid "Retry loading report options"
msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:769
+#: src/screens/StarterPack/StarterPackScreen.tsx:774
msgid "Return to previous page"
msgstr ""
@@ -8030,26 +8085,26 @@ msgstr ""
msgid "Returns to home page"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1185
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/screens/StarterPack/Wizard/index.tsx:325
msgid "Returns to the previous step"
msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:203
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:292
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:307
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:662
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:667
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:665
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:670
#: src/components/live/EditLiveDialog.tsx:202
#: src/components/live/EditLiveDialog.tsx:209
-#: src/components/StarterPack/QrCodeDialog.tsx:204
+#: src/components/StarterPack/QrCodeDialog.tsx:206
#: src/screens/Profile/Header/EditProfileDialog.tsx:236
#: src/screens/Profile/Header/EditProfileDialog.tsx:250
#: src/screens/SavedFeeds.tsx:120
@@ -8063,7 +8118,7 @@ msgstr ""
msgid "Save"
msgstr ""
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr ""
@@ -8076,11 +8131,28 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:142
-#: src/components/StarterPack/ShareDialog.tsx:148
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:143
+#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
msgstr ""
@@ -8088,22 +8160,22 @@ msgstr ""
msgid "Save new handle"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:196
+#: src/components/StarterPack/QrCodeDialog.tsx:198
msgid "Save QR code"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:643
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:649
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:646
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:652
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:322
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:328
msgid "Save to my feeds"
msgstr ""
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8113,13 +8185,13 @@ msgid "Saved Feeds"
msgstr ""
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:143
-#: src/Navigation.tsx:618
-#: src/screens/Bookmarks/index.tsx:60
+#: src/Navigation.tsx:619
+#: src/screens/Bookmarks/index.tsx:61
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
-#: src/screens/ProfileList/components/Header.tsx:85
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:133
+#: src/screens/ProfileList/components/Header.tsx:87
msgid "Saved to your feeds"
msgstr ""
@@ -8155,20 +8227,20 @@ msgstr ""
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr ""
-#: src/Navigation.tsx:259
+#: src/Navigation.tsx:260
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:662
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:353
+#: src/components/contacts/screens/ViewMatches.tsx:355
msgid "Search contacts"
msgstr ""
@@ -8177,12 +8249,12 @@ msgid "Search feeds"
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:491
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:484
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8194,15 +8266,15 @@ msgstr ""
msgid "Search for \"{searchText}\""
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:549
+#: src/screens/StarterPack/Wizard/index.tsx:550
msgid "Search for feeds that you want to suggest to others."
msgstr ""
-#: src/screens/Search/Explore.tsx:362
+#: src/screens/Search/Explore.tsx:364
msgid "Search for more accounts"
msgstr ""
-#: src/screens/Search/Explore.tsx:439
+#: src/screens/Search/Explore.tsx:441
msgid "Search for more feeds"
msgstr ""
@@ -8228,13 +8300,13 @@ msgstr ""
msgid "Search my posts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:291
-#: src/view/com/profile/ProfileMenu.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:292
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:681
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr ""
@@ -8247,7 +8319,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:682
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,17 +8355,17 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr ""
-#: src/components/FeedInterstitials.tsx:730
-#: src/components/FeedInterstitials.tsx:791
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:712
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
-#: src/view/com/profile/ProfileFollows.tsx:192
-#: src/view/com/profile/ProfileFollows.tsx:193
+#: src/view/com/profile/ProfileFollows.tsx:190
+#: src/view/com/profile/ProfileFollows.tsx:191
msgid "See suggested accounts"
msgstr ""
@@ -8323,11 +8395,11 @@ msgstr ""
msgid "Select a color"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:372
+#: src/components/moderation/ReportDialog/index.tsx:366
msgid "Select a reason"
msgstr ""
-#: src/screens/Login/ChooseAccountForm.tsx:77
+#: src/screens/Login/ChooseAccountForm.tsx:78
msgid "Select account"
msgstr ""
@@ -8359,23 +8431,23 @@ msgstr ""
msgid "Select duration"
msgstr ""
-#: src/screens/Login/index.tsx:158
+#: src/screens/Login/index.tsx:159
msgid "Select from an existing account"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:547
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:550
msgid "Select from your lists"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:549
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:552
msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}0>"
msgstr ""
-#: src/view/com/composer/photos/SelectGifBtn.tsx:35
+#: src/view/com/composer/photos/SelectGifBtn.tsx:36
msgid "Select GIF"
msgstr ""
-#: src/components/dialogs/GifSelect.tsx:294
+#: src/components/dialogs/GifSelect.tsx:295
msgid "Select GIF \"{0}\""
msgstr ""
@@ -8398,7 +8470,7 @@ msgstr ""
msgid "Select languages"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:422
+#: src/components/moderation/ReportDialog/index.tsx:416
msgid "Select moderation service"
msgstr ""
@@ -8439,11 +8511,11 @@ msgstr ""
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:302
+#: src/screens/Signup/StepInfo/index.tsx:300
msgid "Select your date of birth"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:67
+#: src/screens/Onboarding/StepInterests/index.tsx:68
#: src/screens/Settings/InterestsSettings.tsx:165
msgid "Select your interests from the options below"
msgstr ""
@@ -8452,7 +8524,7 @@ msgstr ""
msgid "Select your preferred language for translations in your feed."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:113
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:114
msgid "Select your preferred notification channels"
msgstr ""
@@ -8468,8 +8540,8 @@ msgstr ""
msgid "Send a neat website!"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:252
-#: src/components/contacts/screens/PhoneInput.tsx:257
+#: src/components/contacts/screens/PhoneInput.tsx:254
+#: src/components/contacts/screens/PhoneInput.tsx:259
msgid "Send code"
msgstr ""
@@ -8485,7 +8557,7 @@ msgctxt "action"
msgid "Send Email"
msgstr ""
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr ""
@@ -8494,15 +8566,15 @@ msgstr ""
msgid "Send message"
msgstr ""
-#: src/components/PostControls/ShareMenu/RecentChats.tsx:121
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:122
msgid "Send post to {name}"
msgstr ""
-#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
+#: src/components/dms/dialogs/ShareViaChatDialog.tsx:63
msgid "Send post to..."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:813
+#: src/components/moderation/ReportDialog/index.tsx:807
msgid "Send report to {title}"
msgstr ""
@@ -8516,10 +8588,10 @@ msgstr ""
msgid "Send verification email"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:102
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:108
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
msgid "Send via direct message"
msgstr ""
@@ -8527,7 +8599,7 @@ msgstr ""
msgid "Sends email with confirmation code for account deletion"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:280
+#: src/components/contacts/screens/PhoneInput.tsx:282
msgid "Sent to our phone number verification provider Plivo"
msgstr ""
@@ -8543,7 +8615,7 @@ msgstr ""
msgid "Set new password"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:475
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:478
msgid "Set precisely which groups of people can reply to your post"
msgstr ""
@@ -8551,11 +8623,11 @@ msgstr ""
msgid "Set up your account"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:425
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:428
msgid "Set who can reply to your post"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:220
+#: src/ageAssurance/components/NoAccessScreen.tsx:217
msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!"
msgstr ""
@@ -8563,10 +8635,10 @@ msgstr ""
msgid "Sets email for password reset"
msgstr ""
-#: src/Navigation.tsx:215
+#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr ""
@@ -8619,7 +8691,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr ""
@@ -8627,14 +8699,14 @@ msgstr ""
msgid "Sexually Suggestive"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/components/StarterPack/QrCodeDialog.tsx:194
#: src/screens/Hashtag.tsx:142
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
+#: src/screens/StarterPack/StarterPackScreen.tsx:437
#: src/screens/Topic.tsx:103
msgid "Share"
msgstr ""
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr ""
@@ -8647,60 +8719,60 @@ msgstr ""
msgid "Share a fun fact!"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:562
+#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Share anyway"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:164
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165
msgid "Share author DID"
msgstr ""
#: src/components/dialogs/LinkWarning.tsx:96
#: src/components/dialogs/LinkWarning.tsx:104
-#: src/components/StarterPack/ShareDialog.tsx:113
-#: src/components/StarterPack/ShareDialog.tsx:122
+#: src/components/StarterPack/ShareDialog.tsx:114
+#: src/components/StarterPack/ShareDialog.tsx:123
msgid "Share link"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:72
+#: src/components/StarterPack/ShareDialog.tsx:73
msgid "Share link dialog"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:156
msgid "Share post at:// URI"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:127
-#: src/components/StarterPack/ShareDialog.tsx:137
+#: src/components/StarterPack/ShareDialog.tsx:128
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Share QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:471
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:473
msgid "Share this feed"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:426
+#: src/screens/StarterPack/StarterPackScreen.tsx:430
msgid "Share this starter pack"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:84
+#: src/components/StarterPack/ShareDialog.tsx:85
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:118
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:121
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:159
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:165
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:171
-#: src/screens/StarterPack/StarterPackScreen.tsx:613
-#: src/screens/StarterPack/StarterPackScreen.tsx:621
-#: src/view/com/profile/ProfileMenu.tsx:269
-#: src/view/com/profile/ProfileMenu.tsx:282
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
+#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/view/com/profile/ProfileMenu.tsx:270
+#: src/view/com/profile/ProfileMenu.tsx:283
msgid "Share via..."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:229
+#: src/components/contacts/screens/GetContacts.tsx:231
msgid "Share your contacts to find friends"
msgstr ""
@@ -8708,25 +8780,25 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:319
msgid "Shared Preferences Tester"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:183
msgid "Show alt text"
msgstr ""
#: src/components/moderation/ScreenHider.tsx:178
#: src/components/moderation/ScreenHider.tsx:181
#: src/screens/List/ListHiddenScreen.tsx:190
+#: src/screens/VideoFeed/index.tsx:650
#: src/screens/VideoFeed/index.tsx:656
-#: src/screens/VideoFeed/index.tsx:662
msgid "Show anyway"
msgstr ""
@@ -8743,8 +8815,8 @@ msgstr ""
msgid "Show customization options"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:541
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546
msgid "Show less like this"
msgstr ""
@@ -8752,7 +8824,7 @@ msgstr ""
msgid "Show list anyway"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:528
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:531
msgid "Show lists of users to select from"
msgstr ""
@@ -8765,12 +8837,12 @@ msgstr ""
msgid "Show More"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:535
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:536
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538
msgid "Show more like this"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14
+#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:15
msgid "Show more replies"
msgstr ""
@@ -8788,12 +8860,12 @@ msgstr ""
msgid "Show replies"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:43
+#: src/screens/PostThread/components/HeaderDropdown.tsx:44
msgid "Show replies as"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
msgid "Show reply for everyone"
msgstr ""
@@ -8820,7 +8892,7 @@ msgstr ""
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr ""
@@ -8828,28 +8900,28 @@ msgstr ""
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
#: src/components/dialogs/Signin.tsx:97
#: src/components/dialogs/Signin.tsx:99
-#: src/components/WelcomeModal.tsx:194
-#: src/components/WelcomeModal.tsx:206
+#: src/components/WelcomeModal.tsx:196
+#: src/components/WelcomeModal.tsx:208
#: src/screens/Hashtag.tsx:240
-#: src/screens/Login/index.tsx:136
-#: src/screens/Login/index.tsx:157
+#: src/screens/Login/index.tsx:137
+#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8859,7 +8931,7 @@ msgstr ""
msgid "Sign in as {0}"
msgstr ""
-#: src/screens/Login/ChooseAccountForm.tsx:81
+#: src/screens/Login/ChooseAccountForm.tsx:82
msgid "Sign in as..."
msgstr ""
@@ -8880,8 +8952,8 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Sign in to view post"
msgstr ""
@@ -8911,38 +8983,34 @@ msgstr ""
msgid "Sign-in Required"
msgstr ""
-#: src/lib/hooks/useAccountSwitcher.ts:41
-#: src/screens/Login/ChooseAccountForm.tsx:53
+#: src/lib/hooks/useAccountSwitcher.ts:42
+#: src/screens/Login/ChooseAccountForm.tsx:54
msgid "Signed in as @{0}"
msgstr ""
-#: src/components/FeedInterstitials.tsx:707
-msgid "Similar accounts"
-msgstr ""
-
-#: src/components/contacts/screens/PhoneInput.tsx:160
-#: src/components/contacts/screens/VerifyNumber.tsx:202
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:78
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:82
-#: src/screens/Onboarding/StepFinished/index.tsx:288
-#: src/screens/Onboarding/StepFinished/index.tsx:310
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:252
+#: src/components/contacts/screens/PhoneInput.tsx:162
+#: src/components/contacts/screens/VerifyNumber.tsx:204
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
+#: src/screens/Onboarding/StepFinished/index.tsx:291
+#: src/screens/Onboarding/StepFinished/index.tsx:313
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
-#: src/screens/StarterPack/Wizard/index.tsx:218
+#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:157
-#: src/components/contacts/screens/VerifyNumber.tsx:199
+#: src/components/contacts/screens/PhoneInput.tsx:159
+#: src/components/contacts/screens/VerifyNumber.tsx:201
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:281
-#: src/screens/Onboarding/StepFinished/index.tsx:307
+#: src/screens/Onboarding/StepFinished/index.tsx:284
+#: src/screens/Onboarding/StepFinished/index.tsx:310
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8955,7 +9023,7 @@ msgstr ""
msgid "Snoozes the reminder"
msgstr ""
-#: src/components/WelcomeModal.tsx:148
+#: src/components/WelcomeModal.tsx:150
msgid "Social media you control."
msgstr ""
@@ -8963,15 +9031,15 @@ msgstr ""
msgid "Software Dev"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:120
+#: src/components/verification/VerificationsDialog.tsx:121
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:869
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr ""
-#: src/components/WhoCanReply.tsx:86
+#: src/components/WhoCanReply.tsx:87
msgid "Some people can reply"
msgstr ""
@@ -8979,7 +9047,7 @@ msgstr ""
msgid "Someone reacted {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:243
+#: src/screens/Messages/components/ChatListItem.tsx:244
msgid "Someone reacted {0} to {1}"
msgstr ""
@@ -8992,9 +9060,9 @@ msgid "Something went wrong"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
-#: src/components/moderation/ReportDialog/index.tsx:279
+#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr ""
@@ -9012,20 +9080,20 @@ msgstr ""
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:233
+#: src/components/moderation/ReportDialog/index.tsx:231
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:539
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:541
msgid "Something wrong? Let us know."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
-#: src/App.native.tsx:132
-#: src/App.web.tsx:104
+#: src/App.native.tsx:137
+#: src/App.web.tsx:113
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -9055,15 +9123,15 @@ msgid "Spam or other inauthentic behavior or deception"
msgstr ""
#: src/lib/interests.ts:72
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:230
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227
msgid "Sports"
msgstr ""
-#: src/components/PostControls/ShareMenu/RecentChats.tsx:206
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:207
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:74
+#: src/components/dms/dialogs/NewChatDialog.tsx:75
msgid "Start a new chat"
msgstr ""
@@ -9081,9 +9149,9 @@ msgstr ""
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:589
-#: src/Navigation.tsx:594
-#: src/screens/StarterPack/Wizard/index.tsx:209
+#: src/Navigation.tsx:590
+#: src/Navigation.tsx:595
+#: src/screens/StarterPack/Wizard/index.tsx:210
msgid "Starter Pack"
msgstr ""
@@ -9100,11 +9168,11 @@ msgstr ""
msgid "Starter pack by you"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:733
+#: src/screens/StarterPack/StarterPackScreen.tsx:738
msgid "Starter pack is invalid"
msgstr ""
-#: src/screens/Search/Explore.tsx:630
+#: src/screens/Search/Explore.tsx:629
#: src/view/screens/Profile.tsx:240
msgid "Starter Packs"
msgstr ""
@@ -9113,17 +9181,21 @@ msgstr ""
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr ""
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:100
-#: src/screens/Settings/AboutSettings.tsx:103
+#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:101
msgid "Status Page"
msgstr ""
#: src/screens/Onboarding/Layout.tsx:226
-#: src/screens/Signup/index.tsx:169
+#: src/screens/Signup/index.tsx:180
msgid "Step {0} of {1}"
msgstr ""
@@ -9131,11 +9203,11 @@ msgstr ""
msgid "Storage cleared, you need to restart the app now."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:291
+#: src/components/contacts/screens/PhoneInput.tsx:293
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:309
#: src/screens/Settings/Settings.tsx:464
msgid "Storybook"
msgstr ""
@@ -9144,8 +9216,8 @@ msgstr ""
msgid "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:117
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:123
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:119
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:125
#: src/components/live/GoLiveDisabledDialog.tsx:138
#: src/components/live/GoLiveDisabledDialog.tsx:139
#: src/components/moderation/LabelsOnMeDialog.tsx:342
@@ -9163,13 +9235,13 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:500
-#: src/components/moderation/ReportDialog/index.tsx:561
-#: src/components/moderation/ReportDialog/index.tsx:568
+#: src/components/moderation/ReportDialog/index.tsx:494
+#: src/components/moderation/ReportDialog/index.tsx:555
+#: src/components/moderation/ReportDialog/index.tsx:562
msgid "Submit report"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:81
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:74
msgid "Subscribe"
msgstr ""
@@ -9181,20 +9253,20 @@ msgstr ""
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:69
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:62
msgid "Subscribe to this list"
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:251
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:158
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:159
msgid "Success"
msgstr ""
@@ -9207,18 +9279,18 @@ msgstr ""
msgid "Successfully verified"
msgstr ""
-#: src/screens/Search/Explore.tsx:359
+#: src/screens/Search/Explore.tsx:361
msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:705
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:155
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr ""
@@ -9232,13 +9304,13 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:329
#: src/view/screens/Support.tsx:34
#: src/view/screens/Support.tsx:37
msgid "Support"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:233
+#: src/components/contacts/screens/PhoneInput.tsx:235
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
@@ -9270,8 +9342,8 @@ msgid "System"
msgstr ""
#: src/screens/Log.tsx:58
-#: src/screens/Settings/AboutSettings.tsx:107
-#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/AboutSettings.tsx:105
+#: src/screens/Settings/AboutSettings.tsx:108
#: src/screens/Settings/Settings.tsx:457
msgid "System log"
msgstr ""
@@ -9292,7 +9364,7 @@ msgstr ""
msgid "Tap for more information"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:336
+#: src/screens/Signup/StepInfo/index.tsx:334
msgid "Tap here to confirm your location with GPS."
msgstr ""
@@ -9314,11 +9386,11 @@ msgstr ""
msgid "Targeted harassment"
msgstr ""
-#: src/state/shell/progress-guide.tsx:235
+#: src/state/shell/progress-guide.tsx:236
msgid "Task complete - 10 follows!"
msgstr ""
-#: src/state/shell/progress-guide.tsx:225
+#: src/state/shell/progress-guide.tsx:226
msgid "Task complete - 10 likes!"
msgstr ""
@@ -9350,12 +9422,12 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:182
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97
-#: src/Navigation.tsx:338
-#: src/screens/Settings/AboutSettings.tsx:84
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/Navigation.tsx:339
+#: src/screens/Settings/AboutSettings.tsx:82
+#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr ""
@@ -9377,8 +9449,8 @@ msgstr ""
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:394
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:121
+#: src/ageAssurance/components/NoAccessScreen.tsx:392
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:123
msgid "Thanks! You're all set."
msgstr ""
@@ -9386,16 +9458,16 @@ msgstr ""
msgid "That contains the following:"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:110
-#: src/screens/StarterPack/StarterPackScreen.tsx:111
-#: src/screens/StarterPack/StarterPackScreen.tsx:155
-#: src/screens/StarterPack/StarterPackScreen.tsx:156
+#: src/screens/StarterPack/StarterPackScreen.tsx:112
+#: src/screens/StarterPack/StarterPackScreen.tsx:113
+#: src/screens/StarterPack/StarterPackScreen.tsx:157
+#: src/screens/StarterPack/StarterPackScreen.tsx:158
#: src/screens/StarterPack/Wizard/index.tsx:117
#: src/screens/StarterPack/Wizard/index.tsx:127
msgid "That starter pack could not be found."
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:77
+#: src/screens/Signup/StepHandle/index.tsx:80
msgid "That username is already taken"
msgstr ""
@@ -9403,13 +9475,13 @@ msgstr ""
msgid "That's all, folks!"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1157
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
-#: src/view/com/profile/ProfileMenu.tsx:538
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr ""
@@ -9443,11 +9515,11 @@ msgstr ""
msgid "The Discover feed"
msgstr ""
-#: src/state/shell/progress-guide.tsx:226
+#: src/state/shell/progress-guide.tsx:227
msgid "The Discover feed now knows what you like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:332
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -9493,7 +9565,7 @@ msgstr ""
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:743
+#: src/screens/StarterPack/StarterPackScreen.tsx:748
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
@@ -9513,9 +9585,9 @@ msgstr ""
msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:112
-#: src/components/contacts/screens/VerifyNumber.tsx:110
-#: src/components/contacts/screens/VerifyNumber.tsx:162
+#: src/components/contacts/screens/PhoneInput.tsx:114
+#: src/components/contacts/screens/VerifyNumber.tsx:112
+#: src/components/contacts/screens/VerifyNumber.tsx:164
msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again."
msgstr ""
@@ -9527,11 +9599,11 @@ msgstr ""
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:144
+#: src/components/contacts/screens/GetContacts.tsx:146
msgid "There was a problem with your internet connection, please try again"
msgstr ""
@@ -9539,15 +9611,15 @@ msgstr ""
msgid "There was an issue connecting to Tenor."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
-#: src/screens/ProfileList/components/Header.tsx:88
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:76
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:179
+#: src/screens/ProfileList/components/Header.tsx:90
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:78
#: src/screens/SavedFeeds.tsx:97
msgid "There was an issue contacting the server"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:419
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:98
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:421
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:99
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr ""
@@ -9555,8 +9627,8 @@ msgstr ""
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
-#: src/screens/Search/Explore.tsx:999
-#: src/view/com/posts/PostFeed.tsx:755
+#: src/screens/Search/Explore.tsx:988
+#: src/view/com/posts/PostFeed.tsx:757
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -9581,40 +9653,40 @@ msgstr ""
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:139
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:446
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:104
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:115
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:116
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:127
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:253
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
-#: src/view/com/profile/ProfileMenu.tsx:151
-#: src/view/com/profile/ProfileMenu.tsx:161
-#: src/view/com/profile/ProfileMenu.tsx:175
-#: src/view/com/profile/ProfileMenu.tsx:185
-#: src/view/com/profile/ProfileMenu.tsx:198
-#: src/view/com/profile/ProfileMenu.tsx:210
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:176
+#: src/view/com/profile/ProfileMenu.tsx:186
+#: src/view/com/profile/ProfileMenu.tsx:199
+#: src/view/com/profile/ProfileMenu.tsx:211
msgid "There was an issue! {0}"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:238
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:240
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/screens/ProfileList/components/Header.tsx:107
-#: src/screens/ProfileList/components/Header.tsx:125
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:122
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:140
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:40
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:59
+#: src/screens/ProfileList/components/Header.tsx:105
+#: src/screens/ProfileList/components/Header.tsx:119
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:120
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:134
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:37
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:52
msgid "There was an issue. Please check your internet connection and try again."
msgstr ""
@@ -9628,7 +9700,7 @@ msgstr ""
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:654
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:657
msgid "These are your default settings"
msgstr ""
@@ -9640,11 +9712,11 @@ msgstr ""
msgid "This {screenDescription} has been flagged:"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:87
+#: src/components/verification/VerificationsDialog.tsx:88
msgid "This account has a checkmark because it's been verified by trusted sources."
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:92
+#: src/components/verification/VerificationsDialog.tsx:93
msgid "This account has one or more attempted verifications, but it is not currently verified."
msgstr ""
@@ -9678,7 +9750,7 @@ msgstr ""
msgid "This chat was disconnected"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:103
+#: src/components/contacts/screens/VerifyNumber.tsx:105
msgid "This code is invalid. Resend to get a new code."
msgstr ""
@@ -9707,10 +9779,14 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:365
+#: src/screens/Messages/components/ChatListItem.tsx:366
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9735,12 +9811,12 @@ msgstr ""
msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later."
msgstr ""
-#: src/view/com/posts/CustomFeedEmptyState.tsx:61
+#: src/view/com/posts/CustomFeedEmptyState.tsx:62
msgid "This feed is empty! You may need to follow more users or tune your language settings."
msgstr ""
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr ""
@@ -9798,35 +9874,35 @@ msgstr ""
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
-#: src/components/WhoCanReply.tsx:272
+#: src/components/WhoCanReply.tsx:273
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143
msgid "This post is only visible to logged-in users."
msgstr ""
-#: src/screens/Bookmarks/index.tsx:256
+#: src/screens/Bookmarks/index.tsx:257
msgid "This post was deleted by its author"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:773
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:514
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:559
+#: src/view/com/profile/ProfileMenu.tsx:560
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:805
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr ""
@@ -9834,7 +9910,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9850,7 +9926,7 @@ msgstr ""
msgid "This user does not have a display name, and therefore cannot be verified."
msgstr ""
-#: src/view/com/profile/ProfileFollowers.tsx:172
+#: src/view/com/profile/ProfileFollowers.tsx:170
msgid "This user doesn't have any followers."
msgstr ""
@@ -9879,7 +9955,7 @@ msgstr ""
msgid "This user is new here. Press for more info about when they joined."
msgstr ""
-#: src/view/com/profile/ProfileFollows.tsx:184
+#: src/view/com/profile/ProfileFollows.tsx:182
msgid "This user isn't following anyone."
msgstr ""
@@ -9891,12 +9967,12 @@ msgstr ""
msgid "This will remove @{0} from the quick access list."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:795
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:23
-#: src/screens/PostThread/components/HeaderDropdown.tsx:26
+#: src/screens/PostThread/components/HeaderDropdown.tsx:24
+#: src/screens/PostThread/components/HeaderDropdown.tsx:27
msgid "Thread options"
msgstr ""
@@ -9909,12 +9985,12 @@ msgstr ""
msgid "Thread Preferences"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:57
-#: src/screens/PostThread/components/HeaderDropdown.tsx:62
+#: src/screens/PostThread/components/HeaderDropdown.tsx:58
+#: src/screens/PostThread/components/HeaderDropdown.tsx:63
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:371
+#: src/Navigation.tsx:372
msgid "Threads Preferences"
msgstr ""
@@ -9935,7 +10011,7 @@ msgstr ""
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:242
+#: src/ageAssurance/components/NoAccessScreen.tsx:239
msgid "To log out, <0>click here0>."
msgstr ""
@@ -9955,15 +10031,15 @@ msgstr ""
msgid "Toggles the sound"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:120
+#: src/components/contacts/screens/VerifyNumber.tsx:122
msgid "Too many attempts. Please wait a few minutes and try again."
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:173
+#: src/components/contacts/screens/VerifyNumber.tsx:175
msgid "Too many codes sent. Please wait a few minutes and try again."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:153
+#: src/components/contacts/screens/GetContacts.tsx:155
msgid "Too many contacts - you've exceeded the number of contacts you can import to find your friends"
msgstr ""
@@ -9973,23 +10049,23 @@ msgstr ""
msgid "Top"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:73
-#: src/screens/PostThread/components/HeaderDropdown.tsx:78
+#: src/screens/PostThread/components/HeaderDropdown.tsx:74
+#: src/screens/PostThread/components/HeaderDropdown.tsx:79
#: src/screens/Settings/ThreadPreferences.tsx:56
#: src/screens/Settings/ThreadPreferences.tsx:59
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:554
+#: src/Navigation.tsx:555
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:139
-#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:502
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:504
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
+#: src/components/dms/MessageContextMenu.tsx:136
+#: src/components/dms/MessageContextMenu.tsx:138
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr ""
@@ -9998,11 +10074,11 @@ msgstr ""
msgid "Tree view"
msgstr ""
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:49
msgid "Trending"
msgstr ""
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:56
msgid "Trending options"
msgstr ""
@@ -10014,7 +10090,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:139
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -10059,14 +10135,14 @@ msgid "Unable to contact your service. Please check your internet connection and
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:68
-#: src/screens/Login/index.tsx:93
+#: src/screens/Login/index.tsx:94
#: src/screens/Login/LoginForm.tsx:169
#: src/screens/Login/SetNewPasswordForm.tsx:81
-#: src/screens/Signup/index.tsx:77
+#: src/screens/Signup/index.tsx:88
msgid "Unable to contact your service. Please check your Internet connection."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:680
msgid "Unable to delete"
msgstr ""
@@ -10078,7 +10154,7 @@ msgstr ""
msgid "Unapply Pull Request {currentChannel}"
msgstr ""
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:41
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:42
msgid "Unavailable"
msgstr ""
@@ -10091,44 +10167,48 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
-#: src/screens/ProfileList/components/Header.tsx:171
-#: src/screens/ProfileList/components/Header.tsx:178
-#: src/view/com/profile/ProfileMenu.tsx:550
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
+#: src/screens/ProfileList/components/Header.tsx:165
+#: src/screens/ProfileList/components/Header.tsx:172
+#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:261
#: src/components/dms/ConvoMenu.tsx:264
-#: src/view/com/profile/ProfileMenu.tsx:455
-#: src/view/com/profile/ProfileMenu.tsx:461
+#: src/view/com/profile/ProfileMenu.tsx:456
+#: src/view/com/profile/ProfileMenu.tsx:462
msgid "Unblock account"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
-#: src/view/com/profile/ProfileMenu.tsx:532
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
+#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:247
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:250
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:241
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:244
msgid "Unblock list"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:42
+#: src/components/PostControls/BookmarkButton.tsx:43
msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,32 +10222,32 @@ msgstr ""
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:311
-#: src/view/com/profile/ProfileMenu.tsx:321
+#: src/view/com/profile/ProfileMenu.tsx:312
+#: src/view/com/profile/ProfileMenu.tsx:322
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:860
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:484
+#: src/components/moderation/ReportDialog/index.tsx:478
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:197
+#: src/ageAssurance/components/NoAccessScreen.tsx:194
msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:182
+#: src/ageAssurance/components/NoAccessScreen.tsx:179
msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region."
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:211
+#: src/components/verification/VerificationsDialog.tsx:208
msgid "Unknown verifier"
msgstr ""
@@ -10179,12 +10259,12 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:517
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:276
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -10194,8 +10274,8 @@ msgctxt "video"
msgid "Unmute"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:185
-#: src/screens/ProfileList/components/Header.tsx:192
+#: src/screens/ProfileList/components/Header.tsx:179
+#: src/screens/ProfileList/components/Header.tsx:186
msgid "Unmute"
msgstr ""
@@ -10204,10 +10284,10 @@ msgstr ""
msgid "Unmute {tag}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:685
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691
-#: src/view/com/profile/ProfileMenu.tsx:434
-#: src/view/com/profile/ProfileMenu.tsx:440
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:688
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
+#: src/view/com/profile/ProfileMenu.tsx:435
+#: src/view/com/profile/ProfileMenu.tsx:441
msgid "Unmute account"
msgstr ""
@@ -10215,13 +10295,13 @@ msgstr ""
msgid "Unmute conversation"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:257
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:260
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:251
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:254
msgid "Unmute list"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:574
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:577
msgid "Unmute thread"
msgstr ""
@@ -10229,13 +10309,13 @@ msgstr ""
msgid "Unmute video"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:156
-#: src/screens/ProfileList/components/Header.tsx:163
+#: src/screens/ProfileList/components/Header.tsx:150
+#: src/screens/ProfileList/components/Header.tsx:157
msgid "Unpin"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:527
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:529
#: src/screens/SavedFeeds.tsx:351
msgid "Unpin feed"
msgstr ""
@@ -10244,30 +10324,30 @@ msgstr ""
msgid "Unpin Feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:311
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:313
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:477
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:484
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:487
msgid "Unpin from profile"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:230
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:233
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:224
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:227
msgid "Unpin moderation list"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
msgid "Unpinned {0} from Home"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:75
+#: src/screens/ProfileList/components/Header.tsx:77
msgid "Unpinned from your feeds"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:102
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:104
msgid "Unpinned list"
msgstr ""
@@ -10276,7 +10356,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:341
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr ""
@@ -10285,7 +10365,7 @@ msgstr ""
msgid "Unsubscribe from list"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:308
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr ""
@@ -10293,7 +10373,7 @@ msgstr ""
msgid "Unsubscribed from list"
msgstr ""
-#: src/view/com/composer/Composer.tsx:897
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10322,12 +10402,12 @@ msgstr ""
msgid "Update your email"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:348
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:396
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
@@ -10344,20 +10424,20 @@ msgstr ""
msgid "Upload a text file to:"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:469
-#: src/view/com/util/UserAvatar.tsx:472
+#: src/view/com/util/UserAvatar.tsx:470
+#: src/view/com/util/UserAvatar.tsx:473
#: src/view/com/util/UserBanner.tsx:159
#: src/view/com/util/UserBanner.tsx:162
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:486
+#: src/view/com/util/UserAvatar.tsx:487
#: src/view/com/util/UserBanner.tsx:176
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:480
-#: src/view/com/util/UserAvatar.tsx:484
+#: src/view/com/util/UserAvatar.tsx:481
+#: src/view/com/util/UserAvatar.tsx:485
#: src/view/com/util/UserBanner.tsx:170
#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Library"
@@ -10372,7 +10452,7 @@ msgstr ""
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1894
+#: src/view/com/composer/Composer.tsx:2298
msgid "Uploading video..."
msgstr ""
@@ -10445,6 +10525,10 @@ msgstr ""
msgid "User list by {0}"
msgstr ""
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr ""
@@ -10459,15 +10543,15 @@ msgctxt "toast"
msgid "User list updated"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:233
+#: src/screens/Signup/StepHandle/index.tsx:230
msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:217
+#: src/screens/Signup/StepHandle/index.tsx:214
msgid "Username cannot begin or end with a hyphen"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:221
+#: src/screens/Signup/StepHandle/index.tsx:218
msgid "Username must only contain letters (a-z), numbers, and hyphens"
msgstr ""
@@ -10475,11 +10559,11 @@ msgstr ""
msgid "Username or email address"
msgstr ""
-#: src/components/WhoCanReply.tsx:335
+#: src/components/WhoCanReply.tsx:336
msgid "users followed by <0>@{0}0>"
msgstr ""
-#: src/components/WhoCanReply.tsx:322
+#: src/components/WhoCanReply.tsx:323
msgid "users following <0>@{0}0>"
msgstr ""
@@ -10500,28 +10584,28 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:208
-#: src/screens/Moderation/VerificationSettings.tsx:32
+#: src/Navigation.tsx:209
+#: src/screens/Moderation/VerificationSettings.tsx:33
msgid "Verification Settings"
msgstr ""
-#: src/screens/Moderation/VerificationSettings.tsx:41
+#: src/screens/Moderation/VerificationSettings.tsx:42
msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:103
+#: src/components/verification/VerificationsDialog.tsx:104
msgid "Verified by:"
msgstr ""
#: src/components/verification/VerificationCreatePrompt.tsx:84
#: src/components/verification/VerificationCreatePrompt.tsx:86
-#: src/view/com/profile/ProfileMenu.tsx:418
-#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:419
+#: src/view/com/profile/ProfileMenu.tsx:422
msgid "Verify account"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:331
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:176
+#: src/ageAssurance/components/NoAccessScreen.tsx:329
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:178
msgid "Verify again"
msgstr ""
@@ -10547,15 +10631,15 @@ msgstr ""
msgid "Verify email dialog"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:319
-#: src/ageAssurance/components/NoAccessScreen.tsx:333
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:164
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:178
+#: src/ageAssurance/components/NoAccessScreen.tsx:317
+#: src/ageAssurance/components/NoAccessScreen.tsx:331
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:166
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:180
msgid "Verify now"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:172
-#: src/components/contacts/screens/VerifyNumber.tsx:214
+#: src/components/contacts/screens/PhoneInput.tsx:174
+#: src/components/contacts/screens/VerifyNumber.tsx:216
msgid "Verify phone number"
msgstr ""
@@ -10579,21 +10663,21 @@ msgid "Verify your email"
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:296
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:207
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:208
msgid "Verifying"
msgstr ""
-#: src/ageAssurance/components/RedirectOverlay.tsx:165
+#: src/ageAssurance/components/RedirectOverlay.tsx:164
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74
msgid "Verifying your age assurance status"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:304
+#: src/components/contacts/screens/VerifyNumber.tsx:306
msgid "Verifying..."
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:126
-#: src/screens/Settings/AboutSettings.tsx:155
+#: src/screens/Settings/AboutSettings.tsx:124
+#: src/screens/Settings/AboutSettings.tsx:153
msgid "Version {0}"
msgstr ""
@@ -10606,7 +10690,7 @@ msgstr ""
msgid "Video failed to process"
msgstr ""
-#: src/Navigation.tsx:610
+#: src/Navigation.tsx:611
msgid "Video Feed"
msgstr ""
@@ -10614,16 +10698,20 @@ msgstr ""
msgid "Video from {0}: {text}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:234
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1115
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1115
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr ""
@@ -10635,7 +10723,7 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1904
+#: src/view/com/composer/Composer.tsx:2308
msgid "Video uploaded"
msgstr ""
@@ -10651,19 +10739,19 @@ msgstr ""
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:586
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:267
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr ""
#: src/components/ProfileCard.tsx:142
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:456
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:819
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr ""
@@ -10684,8 +10772,8 @@ msgstr ""
msgid "View debug entry"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:684
-#: src/screens/VideoFeed/index.tsx:702
+#: src/screens/VideoFeed/index.tsx:678
+#: src/screens/VideoFeed/index.tsx:696
msgid "View details"
msgstr ""
@@ -10697,18 +10785,18 @@ msgstr ""
msgid "View information about these labels"
msgstr ""
-#: src/components/interstitials/TrendingVideos.tsx:198
-#: src/components/interstitials/TrendingVideos.tsx:220
-#: src/screens/Search/modules/ExploreTrendingVideos.tsx:193
-#: src/screens/Search/modules/ExploreTrendingVideos.tsx:212
+#: src/components/interstitials/TrendingVideos.tsx:199
+#: src/components/interstitials/TrendingVideos.tsx:221
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:190
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:209
msgid "View more"
msgstr ""
-#: src/components/interstitials/TrendingVideos.tsx:226
+#: src/components/interstitials/TrendingVideos.tsx:227
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:581
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10729,11 +10817,11 @@ msgstr ""
msgid "View the labeling service provided by @{0}"
msgstr ""
-#: src/components/verification/VerificationCheckButton.tsx:99
+#: src/components/verification/VerificationCheckButton.tsx:100
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:488
msgid "View users who like this feed"
msgstr ""
@@ -10762,7 +10850,7 @@ msgstr ""
msgid "View your muted accounts"
msgstr ""
-#: src/components/verification/VerificationCheckButton.tsx:98
+#: src/components/verification/VerificationCheckButton.tsx:99
msgid "View your verifications"
msgstr ""
@@ -10788,7 +10876,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10810,12 +10898,12 @@ msgstr ""
msgid "Warn content and filter from feeds"
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:172
-#: src/components/live/LiveStatusDialog.tsx:185
+#: src/components/live/LiveStatusDialog.tsx:173
+#: src/components/live/LiveStatusDialog.tsx:182
msgid "Watch now"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:250
+#: src/components/contacts/screens/GetContacts.tsx:252
msgid "We apply the highest privacy standards, and never share or sell your contact information."
msgstr ""
@@ -10839,7 +10927,7 @@ msgstr ""
msgid "We couldn't load this conversation"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:241
+#: src/components/contacts/screens/GetContacts.tsx:243
msgid "We delete hashes after matches are made"
msgstr ""
@@ -10859,15 +10947,15 @@ msgstr ""
msgid "We have sent another verification email to <0>{0}0>."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:181
+#: src/components/contacts/screens/PhoneInput.tsx:183
msgid "We need to verify your number before we can look for your friends. A verification code will be sent to this number."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:238
+#: src/components/contacts/screens/GetContacts.tsx:240
msgid "We never keep plain phone numbers"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:244
+#: src/components/contacts/screens/GetContacts.tsx:246
msgid "We only suggest follows if both people consent"
msgstr ""
@@ -10900,7 +10988,7 @@ msgid "We were unable to load your configured labelers at this time."
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:304
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:215
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:216
msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically."
msgstr ""
@@ -10908,7 +10996,7 @@ msgstr ""
msgid "We will let you know when your account is ready."
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:503
+#: src/screens/Settings/FindContactsSettings.tsx:509
msgid "We will notify you when we find your friends."
msgstr ""
@@ -10916,7 +11004,7 @@ msgstr ""
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:60
+#: src/screens/Onboarding/StepInterests/index.tsx:61
msgid "We'll use this to help customize your experience."
msgstr ""
@@ -10929,7 +11017,7 @@ msgid "We're also updating our Community Guidelines, and we want your input! The
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:310
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:222
msgid "We're confirming your age assurance status with our servers. This should only take a few seconds."
msgstr ""
@@ -10938,20 +11026,20 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:189
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:95
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "We're so excited to have you join us!"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:387
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:114
+#: src/ageAssurance/components/NoAccessScreen.tsx:385
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:116
msgid "We're sorry, but based on your device's location, you are currently located in a region that requires age assurance."
msgstr ""
@@ -10968,7 +11056,7 @@ msgstr ""
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr ""
-#: src/view/com/composer/Composer.tsx:511
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
@@ -10977,7 +11065,7 @@ msgstr ""
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:216
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr ""
@@ -10998,7 +11086,7 @@ msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Poli
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:256
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:163
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164
msgid "We've confirmed your age assurance status. You can now close this dialog."
msgstr ""
@@ -11010,7 +11098,7 @@ msgstr ""
msgid "Welcome, friend!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:57
+#: src/screens/Onboarding/StepInterests/index.tsx:58
msgid "What are your interests?"
msgstr ""
@@ -11018,14 +11106,13 @@ msgstr ""
msgid "What do you want to call your starter pack?"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:857
-#: src/view/com/feeds/ComposerPrompt.tsx:189
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:147
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -11033,16 +11120,16 @@ msgstr ""
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr ""
-#: src/components/WhoCanReply.tsx:224
+#: src/components/WhoCanReply.tsx:225
msgid "Who can interact with this post?"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:421
-#: src/components/WhoCanReply.tsx:114
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:424
+#: src/components/WhoCanReply.tsx:115
msgid "Who can reply"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:128
msgid "Who can verify?"
msgstr ""
@@ -11097,6 +11184,14 @@ msgstr ""
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11202,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:855
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr ""
@@ -11133,20 +11228,20 @@ msgstr ""
msgid "Yes"
msgstr ""
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:687
+#: src/screens/StarterPack/StarterPackScreen.tsx:692
msgid "Yes, delete this starter pack"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
msgid "Yes, detach"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
msgid "Yes, hide"
msgstr ""
@@ -11158,11 +11253,11 @@ msgstr ""
msgid "Yesterday"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:59
+#: src/components/verification/VerifierDialog.tsx:60
msgid "You are a trusted verifier"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:173
+#: src/ageAssurance/components/NoAccessScreen.tsx:170
msgid "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app."
msgstr ""
@@ -11174,8 +11269,8 @@ msgstr ""
msgid "You are currently blocked from using the Go Live feature. To appeal this moderation decision, please submit the form below."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:301
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:134
+#: src/ageAssurance/components/NoAccessScreen.tsx:299
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:136
msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team0> if you believe this is an error."
msgstr ""
@@ -11188,7 +11283,7 @@ msgstr ""
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:212
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11196,15 +11291,15 @@ msgstr ""
msgid "You are not allowed to upload videos."
msgstr ""
-#: src/view/com/profile/ProfileFollows.tsx:183
+#: src/view/com/profile/ProfileFollows.tsx:181
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:157
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:64
+#: src/components/verification/VerificationsDialog.tsx:65
msgid "You are verified"
msgstr ""
@@ -11229,11 +11324,11 @@ msgstr ""
msgid "You can also temporarily deactivate your account instead, and reactivate it at any time."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:247
+#: src/components/contacts/screens/GetContacts.tsx:249
msgid "You can always opt out and delete your data"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:101
+#: src/lib/hooks/useNotificationHandler.ts:104
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
@@ -11241,7 +11336,7 @@ msgstr ""
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
msgctxt "toast"
msgid "You can hide a maximum of {MAX_HIDDEN_REPLIES} replies."
msgstr ""
@@ -11250,7 +11345,7 @@ msgstr ""
msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button."
msgstr ""
-#: src/screens/Login/index.tsx:196
+#: src/screens/Login/index.tsx:197
#: src/screens/Login/PasswordUpdatedForm.tsx:26
msgid "You can now sign in with your new password."
msgstr ""
@@ -11272,9 +11367,9 @@ msgstr ""
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
-#: src/components/interstitials/Trending.tsx:129
+#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:137
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:129
msgid "You can update this later from your settings."
msgstr ""
@@ -11291,7 +11386,7 @@ msgstr ""
msgid "You don't have any chat requests at the moment."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:583
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:586
msgid "You don't have any lists yet."
msgstr ""
@@ -11303,7 +11398,7 @@ msgstr ""
msgid "You don't have any saved feeds."
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:309
+#: src/components/contacts/screens/ViewMatches.tsx:311
msgid "You got here first"
msgstr ""
@@ -11317,7 +11412,7 @@ msgstr ""
msgid "You have blocked this user. You cannot view their content."
msgstr ""
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11471,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr ""
@@ -11425,11 +11528,11 @@ msgstr ""
msgid "You may only add up to 3 feeds"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:322
+#: src/screens/Signup/StepInfo/index.tsx:320
msgid "You must be {0} years of age or older to create an account in your region."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:317
+#: src/screens/Signup/StepInfo/index.tsx:315
msgid "You must be {MIN_ACCESS_AGE} years of age or older to create an account."
msgstr ""
@@ -11437,15 +11540,15 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr ""
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:60
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:61
msgid "You must complete age assurance in order to access this screen."
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:65
+#: src/components/StarterPack/QrCodeDialog.tsx:67
msgid "You must grant access to your photo library to save a QR code"
msgstr ""
@@ -11469,7 +11572,7 @@ msgstr ""
msgid "You reacted {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:220
+#: src/screens/Messages/components/ChatListItem.tsx:221
msgid "You reacted {0} to {1}"
msgstr ""
@@ -11487,11 +11590,11 @@ msgstr ""
msgid "You will no longer receive notifications for {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:231
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:239
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:221
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:229
msgid "You will now receive notifications for this thread"
msgstr ""
@@ -11499,35 +11602,35 @@ msgstr ""
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:156
+#: src/screens/Messages/components/ChatListItem.tsx:157
msgid "You: {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:185
+#: src/screens/Messages/components/ChatListItem.tsx:186
msgid "You: {defaultEmbeddedContentMessage}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:179
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:141
+#: src/screens/Signup/index.tsx:152
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:157
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:244
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:245
msgid "You'll follow these people and {0} others"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:242
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:243
msgid "You'll follow these people right away"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:311
+#: src/components/contacts/screens/GetContacts.tsx:313
msgid "You'll need to go to the System Settings for Bluesky and give permission if you want to use this feature."
msgstr ""
@@ -11535,7 +11638,7 @@ msgstr ""
msgid "You'll start receiving notifications for {0}!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:282
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:283
msgid "You'll stay updated with these feeds"
msgstr ""
@@ -11544,7 +11647,7 @@ msgid "You're in line"
msgstr ""
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -11557,11 +11660,11 @@ msgstr ""
msgid "You've chosen to hide a word or tag within this post."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:310
+#: src/components/contacts/screens/GetContacts.tsx:312
msgid "You've denied access to your contacts"
msgstr ""
-#: src/state/shell/progress-guide.tsx:236
+#: src/state/shell/progress-guide.tsx:237
msgid "You've found some people to follow"
msgstr ""
@@ -11589,11 +11692,11 @@ msgstr ""
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1166
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
-#: src/screens/Signup/index.tsx:179
+#: src/screens/Signup/index.tsx:190
msgid "Your account"
msgstr ""
@@ -11621,7 +11724,7 @@ msgstr ""
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:289
+#: src/screens/Signup/StepInfo/index.tsx:287
msgid "Your birth date"
msgstr ""
@@ -11645,7 +11748,7 @@ msgstr ""
msgid "Your contact {firstAuthorName} is on Bluesky"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:451
+#: src/components/contacts/screens/ViewMatches.tsx:453
msgid "Your contact {name}"
msgstr ""
@@ -11665,8 +11768,8 @@ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:51
#: src/screens/Settings/components/ChangePasswordDialog.tsx:81
-#: src/screens/Signup/state.ts:273
-#: src/screens/Signup/StepInfo/index.tsx:129
+#: src/screens/Signup/state.ts:277
+#: src/screens/Signup/StepInfo/index.tsx:131
msgid "Your email appears to be invalid."
msgstr ""
@@ -11674,11 +11777,11 @@ msgstr ""
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
-#: src/state/shell/progress-guide.tsx:215
+#: src/state/shell/progress-guide.tsx:216
msgid "Your first like!"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:490
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:493
msgid "Your followers"
msgstr ""
@@ -11690,7 +11793,7 @@ msgstr ""
msgid "Your full handle will be <0>@{0}0>"
msgstr ""
-#: src/Navigation.tsx:526
+#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
#: src/screens/Settings/ContentAndMediaSettings.tsx:93
#: src/screens/Settings/ContentAndMediaSettings.tsx:96
@@ -11715,7 +11818,7 @@ msgstr ""
msgid "Your location data is not tracked and does not leave your device."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:367
+#: src/screens/Signup/StepInfo/index.tsx:365
msgid "Your location has been updated."
msgstr ""
@@ -11727,15 +11830,15 @@ msgstr ""
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:158
+#: src/screens/Signup/StepInfo/index.tsx:160
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:574
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,15 +11855,15 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr ""
-#: src/view/com/composer/Composer.tsx:576
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:511
+#: src/components/moderation/ReportDialog/index.tsx:505
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -11768,7 +11871,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:65
+#: src/components/verification/VerificationsDialog.tsx:66
msgid "Your verifications"
msgstr ""
diff --git a/src/locale/locales/ast/messages.po b/src/locale/locales/ast/messages.po
index 35c23a5251..299ddabafb 100644
--- a/src/locale/locales/ast/messages.po
+++ b/src/locale/locales/ast/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ast\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Asturian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# republicación} other {# republicaciones}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# segundu} other {# segundos}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {siguidor} other {siguidores}}"
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {préstame} other {préstames}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {préstame} other {préstames}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {publicación} other {publicaciones}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {cita} other {cites}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {republicación} other {republicaciones}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr ""
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
@@ -432,7 +436,7 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}0>, <1>{1}1> y {2, plural, one {# más} other {# más}} inclúinse nel paquete d'iniciación"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {siguidor} other {siguidores}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "{1, plural, one {Sigue a} other {Sigue a}} <0>{0}0>"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Amiesta {0} más pa siguir"
msgid "Add {displayName} to starter pack"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr ""
@@ -754,11 +763,11 @@ msgstr ""
msgid "Add another account"
msgstr "Amestar otra cuenta"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Amestar otra publicación"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "Crear una contraseña d'aplicación"
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "P'adultos"
@@ -879,10 +888,10 @@ msgstr "P'adultos"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Conteníu p'adultos"
@@ -894,8 +903,8 @@ msgstr "El conteníu p'adultos namás se pue activar pela web en <0>bsky.app0>
msgid "Adult content is disabled."
msgstr "El conteníu p'adultos ta desactiváu."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Etiquetes de conteníu p'adultos"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Too"
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Yá aniciesti la sesión como @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Testu alternativu"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Testu alternativu"
@@ -1059,7 +1068,7 @@ msgstr "Unvióse un mensaxe a {0}. Inclúi un códigu de confirmación que pues
msgid "An error has occurred"
msgstr "Prodúxose un error"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Prodúxose un error"
@@ -1067,7 +1076,7 @@ msgstr "Prodúxose un error"
msgid "An error occurred while compressing the video."
msgstr "Prodúxose un error mentanto se comprimía'l videu."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Prodúxose un error mentanto se xeneraba'l paquete d'iniciación. ¿Quies volver tentalo?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "Prodúxose un error mentanto se cargaba'l videu. Volvi tentalo dempués."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Prodúxose un error mentanto se cargaba'l videu. Volvi tentalo."
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Animales"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF animáu"
@@ -1306,12 +1315,12 @@ msgstr ""
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Archivóse la publicación"
@@ -1332,11 +1341,11 @@ msgstr "¿De xuru que quies desaniciar esti elementu del paquete d'iniciación?"
msgid "Are you sure you want to discard your changes?"
msgstr "¿De xuru que quies escartar los cambeos?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr ""
@@ -1344,11 +1353,7 @@ msgstr ""
msgid "Are you sure you want to remove this from your feeds?"
msgstr "¿De xuru que quies quitar esti elementu de los tos feeds?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "¿De xuru que quies escartar esti borrador?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "¿De xuru que quies escartar esta publicación?"
@@ -1364,7 +1369,7 @@ msgstr "¿Tas escribiendo na llingua «<0>{suggestedLanguageName}0>»?"
msgid "Art"
msgstr "Arte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Desnudos artísticos o que nun son eróticos."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Reproducir automáticamente vídeos y GIFs"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Atrás"
@@ -1578,7 +1585,7 @@ msgstr "Blogue"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky nun pue verificar l'autenticidá de la data indicada."
@@ -1623,7 +1630,7 @@ msgstr "Términos del serviciu de Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Restolar más feeds na páxina «Esploración»"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Restolar más suxerencies"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Restolar más suxerencies na páxina «Esploración»"
@@ -1770,8 +1777,8 @@ msgstr "Cámara"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Cámara"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr ""
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Nun se pue interactuar con un usuariu bloquiáu"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Charra"
@@ -1989,7 +1996,7 @@ msgstr ""
msgid "Choose Feeds"
msgstr "Seleición de feeds"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Escoyer por min"
@@ -2096,6 +2103,7 @@ msgstr "Tocotó 🐴 tocotó 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Tocotó 🐴 tocotó 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr ""
msgid "Close image"
msgstr "Zarrar la imaxe"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Zarrar el visor d'imáxenes"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2242,12 +2251,12 @@ msgstr ""
msgid "Complete the challenge"
msgstr "Completa'l retu"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2264,11 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Comprimiendo'l videu…"
@@ -2263,7 +2276,6 @@ msgstr "Comprimiendo'l videu…"
msgid "Configure content filtering setting for category: {name}"
msgstr ""
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Configuróse nes <0>opciones de moderación0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr ""
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr ""
@@ -2401,7 +2413,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Siguir"
@@ -2420,7 +2432,7 @@ msgstr "Siguir col filu…"
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "Nun se pudo colar de la charra"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Nun se pudo cargar el feed"
@@ -2643,8 +2655,8 @@ msgstr ""
msgid "Create a starter pack"
msgstr ""
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr ""
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr ""
@@ -2772,7 +2784,7 @@ msgstr "Data de nacencia"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Desactivación de la cuenta"
@@ -2871,7 +2883,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Desaniciar la publicación"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Desactivar los sotítulos"
@@ -2996,8 +3008,11 @@ msgstr "Desactivóse"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Escartar"
@@ -3006,11 +3021,12 @@ msgstr "Escartar"
msgid "Discard changes?"
msgstr "¿Quies escartar los cambeos?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "¿Quies escartar el borrador?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "¿Quies escartar la publicación?"
@@ -3037,7 +3053,7 @@ msgstr ""
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Escartar l'error"
@@ -3049,11 +3065,16 @@ msgstr ""
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr ""
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr ""
@@ -3164,6 +3185,13 @@ msgstr "Baxar el ficheru CAR"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr ""
@@ -3285,13 +3313,13 @@ msgstr ""
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Edición del perfil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Editar el perfil"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr ""
@@ -3421,13 +3449,13 @@ msgstr ""
msgid "Enable this source only"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr ""
@@ -3464,7 +3492,7 @@ msgstr "Introduz una pallabra o etiqueta"
msgid "Enter code"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr ""
@@ -3501,7 +3529,7 @@ msgstr ""
msgid "Enter your username and password"
msgstr "Introduz l'identificador y la contraseña de to"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr ""
@@ -3509,7 +3537,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Error"
@@ -3570,7 +3598,7 @@ msgstr ""
msgid "Excludes users you follow"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr ""
@@ -3578,11 +3606,7 @@ msgstr ""
msgid "Exits account deletion process"
msgstr "Cola del procesu pa desaniciar la cuenta"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr ""
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr ""
@@ -3598,11 +3622,11 @@ msgstr ""
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -3639,7 +3663,7 @@ msgstr "Imáxenes sexuales esplícites."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
@@ -3657,8 +3681,8 @@ msgstr "Esportar los mios datos"
msgid "Export My Data"
msgstr "Esportación de los mios datos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Conteníu multimedia esternu"
@@ -3730,7 +3754,7 @@ msgstr "El desaniciu de la publicación falló. Volvi tentalo"
msgid "Failed to delete starter pack"
msgstr "El desaniciu del paquete d'iniciación falló"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Feed"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Feed de {0}"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Opinar"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Feeds"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr ""
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Siguir"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr ""
@@ -4133,7 +4166,7 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr ""
msgid "Follow all"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Siguir tamién"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "Siguidores que conoces"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Siguiendo"
msgid "Following {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Preferencies del feed «Siguiendo»"
@@ -4264,7 +4297,7 @@ msgstr "Por motivos de seguranza, nun vas ser a volver vela. Si pierdes esta con
msgid "For the best experience, we recommend using the theme font."
msgstr "Pa tener la meyor esperiencia, aconseyamos usar la fonte del estilu."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Xeneración d'un paquete d'iniciación"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr ""
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Pon cara al perfil"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Dir p'atrás"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Conteníu gráficu"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Ayuda"
@@ -4632,9 +4670,9 @@ msgstr ""
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Esconder la llista d'usuarios"
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr ""
@@ -4760,9 +4798,9 @@ msgstr ""
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Aniciu"
@@ -4819,7 +4857,7 @@ msgstr "Entiéndolo"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Si tentes de camudar l'identificador o la direición de corréu, failo enantes de desactivar la cuenta."
@@ -4996,6 +5034,10 @@ msgstr ""
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "¡Namás tas tu! Amiesta más persones al paquete d'iniciación buscando arriba."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID de trabayu: {0}"
@@ -5122,20 +5164,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr ""
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Etiquetes"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Amestáronse les etiquetes"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr ""
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr ""
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Saber más tocante a esta alvertencia"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Saber más."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Colar"
@@ -5286,7 +5328,7 @@ msgstr ""
msgid "left to go."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Dexame escoyer"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Dar préstame"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Préstames d'esta publicación"
@@ -5474,7 +5516,7 @@ msgstr ""
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Llistes"
@@ -5496,10 +5538,20 @@ msgstr ""
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Cargar más"
msgid "Load more suggested feeds"
msgstr "Cargar más feeds suxeríos"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Cargar los avisos nuevos"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logotipu de <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Crear unu por min"
msgid "Make sure this is where you intend to go!"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Xestionar los feeds guardaos"
@@ -5638,7 +5690,16 @@ msgstr ""
msgid "Media"
msgstr "Conteníu multimedia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Elementos multimedia que puen molestar o nun ser afayadizos pa dalgunos públicos."
@@ -5653,7 +5714,7 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Menciones"
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Filmes"
msgid "Music"
msgstr "Música"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr ""
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr ""
@@ -5983,6 +6049,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
@@ -6018,12 +6085,12 @@ msgstr "Mensaxes nuevos"
msgid "New password"
msgstr "Contraseña nueva"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Publicación nueva"
@@ -6085,7 +6152,7 @@ msgstr "Noticies"
msgid "Next"
msgstr "Siguiente"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Imaxe siguiente"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "Ensin panel de DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6136,7 +6207,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Nun hai nengún préstame"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "Yá nun sigues a {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "Nun hai nenguna cita"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Nun hai nengún resultáu"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Nun hai nengún resultáu"
@@ -6238,7 +6309,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr "Nun s'atopó nengún resultáu de busca pa «{search}»."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "Non, gracies"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr ""
msgid "Not Found"
msgstr "Nun s'atopó"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Nota sobre compartir"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr ""
@@ -6349,10 +6424,10 @@ msgstr "Soníos d'avisu"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Avisos"
@@ -6368,8 +6443,8 @@ msgstr "agora"
msgid "Now"
msgstr "Agora"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Desnudos"
@@ -6390,7 +6465,7 @@ msgstr "¡Oh, non!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "D'acuerdu"
@@ -6417,23 +6492,23 @@ msgstr ""
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "A unu o más GIFs fálta-yos el testu alternativu."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "A una o más imáxenes fálta-yos el testu alternativu."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "A unu o más vídeos fálta-yos el testu alternativu."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "¡Meca! Prodúxose dalgún error."
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "¡Meca!"
msgid "Open avatar creator"
msgstr "Abrir el creador d'avatares"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Abrir el selector de fustaxes"
@@ -6557,7 +6636,7 @@ msgstr ""
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr ""
@@ -6589,25 +6668,25 @@ msgstr ""
msgid "Opens composer"
msgstr "Abre'l compositor"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
@@ -6620,7 +6699,7 @@ msgstr "Abre'l diálogu de seleición de GIFs"
msgid "Opens helpdesk in browser"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr ""
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Otru tipu"
@@ -6763,13 +6846,13 @@ msgstr "Anovóse la contraseña"
msgid "Password updated!"
msgstr "¡Anovóse la configuración!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr ""
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "Fotografía"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Semeyes destinaes a adultos."
@@ -6874,9 +6957,9 @@ msgstr "Feeds fixaos"
msgid "Pinned to your feeds"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr ""
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr ""
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr ""
@@ -6893,11 +6976,11 @@ msgstr ""
msgid "Play Video"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr ""
@@ -6909,7 +6992,7 @@ msgstr "Reproduz el GIF"
msgid "Plays the video"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "Política"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornu"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Publicar"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Publicar"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Publicar too"
@@ -7217,7 +7300,7 @@ msgstr "Primi pa ver los siguidores d'esta cuenta que tamién te siguen"
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Imaxe anterior"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Política de privacidá"
@@ -7266,7 +7349,11 @@ msgstr "Política de privacidá"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Procesando'l videu…"
@@ -7280,10 +7367,10 @@ msgstr "Procesando…"
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Perfil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr ""
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Citar"
@@ -7385,7 +7473,7 @@ msgstr "Desactiváronse les cites"
msgid "Quotes"
msgstr "Cites"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Cites d'esta publicación"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr ""
@@ -7720,13 +7808,13 @@ msgstr ""
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Responder"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -7892,7 +7980,7 @@ msgstr "Republiquesti"
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Republicaciones d'esta publicación"
@@ -7996,14 +8084,14 @@ msgstr "Volvi tentar la última aición, la que produxo l'error"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr ""
msgid "Returns to home page"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr ""
@@ -8063,7 +8151,7 @@ msgstr ""
msgid "Save"
msgstr "Guardar"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Guardar"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Guardar los cambeos"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Guardar nos mios feeds"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr ""
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Buscar"
@@ -8164,7 +8269,7 @@ msgstr "Buscar"
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr ""
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Buscar nos feeds"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr ""
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,12 +8388,12 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr ""
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "Seleiciona la llingua que prefieres pa les traducciones del feed."
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Unviar un mensaxe per corréu electrónicu"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr ""
@@ -8566,7 +8671,7 @@ msgstr ""
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Configuración"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Actividá sexual o desnudos eróticos."
@@ -8634,7 +8739,7 @@ msgstr ""
msgid "Share"
msgstr "Compartir"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Compartir"
@@ -8712,13 +8817,13 @@ msgstr "¡Comparti'l to feed preferíu!"
msgid "Shared Preferences Tester"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Amosar"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Amosar el testu alternativu"
@@ -8820,7 +8925,7 @@ msgstr ""
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr ""
@@ -8828,8 +8933,8 @@ msgstr ""
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
@@ -8842,14 +8947,14 @@ msgstr ""
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr ""
msgid "Signed in as @{0}"
msgstr "Aniciesti la sesión como @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Cuentes asemeyaes"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr ""
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr ""
@@ -8994,7 +9095,7 @@ msgstr "Prodúxose dalgún error"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Prodúxose dalgún error, volvi tentalo"
@@ -9020,7 +9121,7 @@ msgstr ""
msgid "Something wrong? Let us know."
msgstr "¿Hai daqué mal? Coméntanoslo."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "Paquetes d'iniciación"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Los paquetes d'iniciación déxente compartir fácilmente los feeds y les persones que prefieres coles amistaes."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr ""
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr ""
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Suxerencies pa ti"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Suxerente"
@@ -9354,8 +9459,8 @@ msgstr "Términos"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Términos del serviciu"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "Alón."
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "La cuenta va ser a interactuar contigo dempués de desbloquiala."
@@ -9447,7 +9552,7 @@ msgstr "El feed «Descubrimientu»"
msgid "The Discover feed now knows what you like"
msgstr "Agora'l feed «Descubrimientu» sabe qué te presta"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "La esperiencia ye meyor na aplicación. Baxa Bluesky agora y llevámoste a onde lo dexesti."
@@ -9527,7 +9632,7 @@ msgstr "Del estilu"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr ""
@@ -9711,6 +9816,10 @@ msgstr "Esti conteníu nun se pue ver ensin una cuenta de Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Esta conversación ye con una cuenta desaniciada o desactivada. Primi pa consiguir opciones"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "¡Esti feed ta baleru! Ye posible que tengas de siguir más usuarios o camudar la configuración de llingua."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Esti feed ta baleru."
@@ -9798,7 +9907,7 @@ msgstr "Esta llista ta balera."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Esti serviciu de moderación nun ta disponible. Consulta abaxo los detalles y si sigue'l problema, ponte en contautu con nós."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Indicóse qu'esta publicación se creó'l <0>{0}0> mas la primer vegada que se creó en Bluesky foi'l <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Esta publicación nun va apaecer nos feeds nin nos filos. Esta aición nun se pue desfacer."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "L'autor d'esta publicación desactivó les cites."
@@ -9834,7 +9943,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Esti serviciu nun fornió los términos del serviciu nin una política de privacidá."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "Esta aición va quitar la publicación d'esta cita pa tolos usuarios y v
msgid "Thread options"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Peferencies de los filos"
@@ -9951,7 +10060,7 @@ msgstr "Güei"
msgid "Toggle to enable or disable adult content"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr ""
@@ -9988,8 +10097,8 @@ msgstr "Tema"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Traducir"
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr ""
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Desbloquiar la cuenta"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "¿Quies desbloquiar la cuenta?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "Desfacer la republicación"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr ""
@@ -10151,7 +10264,7 @@ msgstr ""
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Dexa de siguir al usuariu"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr ""
msgid "Unmute thread"
msgstr "Dexar de silenciar el filu"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr ""
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Dase de baxa"
@@ -10285,7 +10398,7 @@ msgstr "Dase de baxa"
msgid "Unsubscribe from list"
msgstr "Dase de baxa de la llista"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Dase de baxa d'esti etiquetador"
@@ -10293,7 +10406,7 @@ msgstr "Dase de baxa d'esti etiquetador"
msgid "Unsubscribed from list"
msgstr "Diéstite de baxa d'esta llista"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "Xubir dende Ficheros"
msgid "Upload from Library"
msgstr "Xubir dende Biblioteca"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Xubiendo les imáxenes…"
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Xubiendo la miniatura del enllaz…"
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Xubiendo'l videu…"
@@ -10389,8 +10506,8 @@ msgstr ""
msgid "Use in-app browser"
msgstr "Usar el restolador web na aplicación"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Usar el restolador web dientro de l'aplicación p'abrir enllaces"
@@ -10445,6 +10562,10 @@ msgstr ""
msgid "User list by {0}"
msgstr ""
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr ""
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Videu"
@@ -10614,20 +10735,24 @@ msgstr ""
msgid "Video from {0}: {text}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Videoxuegos"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Nun s'atopó'l videu."
@@ -10635,11 +10760,11 @@ msgstr "Nun s'atopó'l videu."
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Xubióse'l videu"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Videu: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Videu: {0}"
msgid "Videos"
msgstr "Vídeos"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Ver l'avatar de {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Ver el perfil de {0}"
@@ -10708,7 +10833,7 @@ msgstr "Ver más"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Tenemos problemes de rede. Volvi tentalo"
@@ -10968,7 +11093,7 @@ msgstr "Nesti momentu nun fuimos a cargar la llista de pallabres silenciaes. Vol
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "La busca nun se completó. Volvi tentalo nunos minutos."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Desanicióse la publicación a la que tas respondiendo."
@@ -10977,7 +11102,7 @@ msgstr "Desanicióse la publicación a la que tas respondiendo."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Nun podemos atopar la páxina que buscabes."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Namás pues soscribite a venti etiquetadores y yá algamesti esa llende."
@@ -11018,10 +11143,9 @@ msgstr "¿Qué t'interesa?"
msgid "What do you want to call your starter pack?"
msgstr "¿Cómo quies llamar al paquete d'iniciación?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "¿Que pasó?"
@@ -11097,6 +11221,14 @@ msgstr "¿Por qué habría revisase esti usuariu?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Escribir una rempuesta"
@@ -11133,8 +11265,8 @@ msgstr ""
msgid "Yes"
msgstr "Sí"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Sí, desactivar"
@@ -11188,7 +11320,7 @@ msgstr ""
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11200,7 +11332,7 @@ msgstr "Nun tienes permisu pa xubir vídeos."
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Yá pues aniciar la sesión cola contraseña nueva."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Pues volver activar la cuenta pa siguir aniciando la sesión. El perfil y les publicaciones van ser visibles pa otros usuarios."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "Bloquiesti a esti usuariu"
msgid "You have blocked this user. You cannot view their content."
msgstr "Bloquiesti a esti usuariu. Nun pues ver el so conteníu."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Algamesti temporalmente la llende vídeos xubíos. Volvi tentalo dempués."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "¡Nun creesti nengún paquete d'iniciación!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Tienes de siguir a, polo menos, siete persones más pa xenerar un paquete d'iniciación."
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "Tienes de conceder l'accesu a la biblioteca de semeyes pa guardar un códigu QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr ""
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -11589,7 +11729,7 @@ msgstr "Algamesti la llende diaria de vídeos xubíos (milenta bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Algamesti la llende diaria de vídeos xubíos (milenta vídeos)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
@@ -11625,7 +11765,7 @@ msgstr "Unvióse l'apellación. Si s'acepta, vas recibir un mensaxe per corréu
msgid "Your birth date"
msgstr "Data de nacencia"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "El restolador nun ye compatible col formatu del videu. Prueba con otru restolador."
@@ -11692,8 +11832,8 @@ msgstr "L'identificador completu va ser <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr ""
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "El perfil, les publicaciones, los feeds y les llistes yá nun van ser visibles pa otros usuarios de Bluesky. Pues volver activar la cuenta en cualesquier momentu aniciando la sesión."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/az/messages.po b/src/locale/locales/az/messages.po
index d85767c519..eaec9eeaaf 100644
--- a/src/locale/locales/az/messages.po
+++ b/src/locale/locales/az/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: az\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Azerbaijani\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -23,7 +23,7 @@ msgstr ""
msgid "\"{interestsDisplayName}\" category (active)"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:162
+#: src/screens/Messages/components/ChatListItem.tsx:163
msgid "(contains embedded content)"
msgstr ""
@@ -43,7 +43,7 @@ msgstr ""
msgid "{0, plural, one {# following} other {# following}}"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:265
+#: src/components/contacts/screens/ViewMatches.tsx:267
msgid "{0, plural, one {# friend found!} other {# friends found!}}"
msgstr ""
@@ -83,9 +83,9 @@ msgstr ""
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr ""
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:489
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
@@ -112,28 +116,28 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:455
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:500
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:79
msgid "{0, plural, other {{1} posts}}"
msgstr ""
#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
-#: src/screens/StarterPack/StarterPackScreen.tsx:492
+#: src/screens/StarterPack/StarterPackScreen.tsx:496
msgid "{0, plural, other {# people have}} used this starter pack!"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:360
+#: src/components/dialogs/StarterPackDialog.tsx:361
msgid "{0, plural, other {+# more}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -164,11 +168,11 @@ msgstr ""
msgid "{0} is live"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:188
+#: src/screens/Signup/StepHandle/index.tsx:185
msgid "{0} is not available"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
msgid "{0} joined this week"
msgstr ""
@@ -185,20 +189,20 @@ msgstr ""
msgid "{0} reacted {1}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:233
+#: src/screens/Messages/components/ChatListItem.tsx:234
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:577
-#: src/view/com/util/UserAvatar.tsx:595
+#: src/view/com/util/UserAvatar.tsx:575
+#: src/view/com/util/UserAvatar.tsx:593
msgid "{0}'s avatar"
msgstr ""
@@ -243,7 +247,7 @@ msgid "{DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Display name is too long. The
msgstr ""
#: src/lib/generate-starterpack.ts:104
-#: src/screens/StarterPack/Wizard/index.tsx:201
+#: src/screens/StarterPack/Wizard/index.tsx:202
msgid "{displayName}'s Starter Pack"
msgstr ""
@@ -432,11 +436,11 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:430
+#: src/screens/Settings/FindContactsSettings.tsx:435
msgid "{numMatches, plural, one {# contact found} other {# contacts found}}"
msgstr ""
@@ -449,25 +453,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago"
msgstr ""
#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:108
msgid "{rank}."
msgstr ""
#. trending topic time spent trending. should be as short as possible to fit in a pill
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:203
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200
msgid "{type}h ago"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:60
+#: src/components/verification/VerifierDialog.tsx:61
msgid "{userName} is a trusted verifier"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:67
+#: src/components/verification/VerificationsDialog.tsx:68
msgid "{userName} is verified"
msgstr ""
#. Possessive, meaning "the verifications of {userName}"
-#: src/components/verification/VerificationsDialog.tsx:69
+#: src/components/verification/VerificationsDialog.tsx:70
msgid "{userName}'s verifications"
msgstr ""
@@ -476,34 +480,34 @@ msgstr ""
msgid "+{computedTotal}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:524
+#: src/screens/StarterPack/Wizard/index.tsx:525
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:577
+#: src/screens/StarterPack/Wizard/index.tsx:578
msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:511
-#: src/screens/StarterPack/Wizard/index.tsx:565
+#: src/screens/StarterPack/Wizard/index.tsx:512
+#: src/screens/StarterPack/Wizard/index.tsx:566
msgid "<0>{0}0> and<1> 1><2>{1} 2>are included in your starter pack"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:558
+#: src/screens/StarterPack/Wizard/index.tsx:559
msgid "<0>{0}0> is included in your starter pack"
msgstr ""
-#: src/components/WhoCanReply.tsx:351
+#: src/components/WhoCanReply.tsx:352
msgid "<0>{0}0> members"
msgstr ""
@@ -516,7 +520,7 @@ msgstr ""
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:502
+#: src/screens/StarterPack/Wizard/index.tsx:503
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr ""
@@ -545,24 +549,24 @@ msgid "A collection of popular feeds you can find on Bluesky, including News, Bo
msgstr ""
#. If last message does not contain text, fall back to "{user} reacted to {a message}"
-#: src/screens/Messages/components/ChatListItem.tsx:212
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "a message"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:99
+#: src/components/contacts/screens/PhoneInput.tsx:101
msgid "A network error occurred. Please check your internet connection"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:96
-#: src/components/contacts/screens/VerifyNumber.tsx:152
+#: src/components/contacts/screens/VerifyNumber.tsx:98
+#: src/components/contacts/screens/VerifyNumber.tsx:154
msgid "A network error occurred. Please check your internet connection."
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:140
+#: src/components/contacts/screens/VerifyNumber.tsx:142
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:92
msgid "A new form of verification"
msgstr ""
@@ -580,8 +584,8 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
-#: src/Navigation.tsx:534
-#: src/screens/Settings/AboutSettings.tsx:75
+#: src/Navigation.tsx:535
+#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
#: src/screens/Settings/Settings.tsx:263
msgid "About"
@@ -615,11 +619,11 @@ msgstr ""
msgid "Accessibility"
msgstr ""
-#: src/Navigation.tsx:385
+#: src/Navigation.tsx:386
msgid "Accessibility Settings"
msgstr ""
-#: src/Navigation.tsx:401
+#: src/Navigation.tsx:402
#: src/screens/Login/LoginForm.tsx:194
#: src/screens/Settings/AccountSettings.tsx:51
#: src/screens/Settings/Settings.tsx:178
@@ -627,20 +631,20 @@ msgstr ""
msgid "Account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:419
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423
#: src/screens/Messages/components/RequestButtons.tsx:91
-#: src/view/com/profile/ProfileMenu.tsx:181
+#: src/view/com/profile/ProfileMenu.tsx:182
msgctxt "toast"
msgid "Account blocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:194
+#: src/view/com/profile/ProfileMenu.tsx:195
msgctxt "toast"
msgid "Account followed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442
-#: src/view/com/profile/ProfileMenu.tsx:157
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:446
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account muted"
msgstr ""
@@ -668,45 +672,45 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:84
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:290
-#: src/view/com/profile/ProfileMenu.tsx:171
+#: src/view/com/profile/ProfileMenu.tsx:172
msgctxt "toast"
msgid "Account unblocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:206
+#: src/view/com/profile/ProfileMenu.tsx:207
msgctxt "toast"
msgid "Account unfollowed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:432
-#: src/view/com/profile/ProfileMenu.tsx:147
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unmuted"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:97
+#: src/components/verification/VerifierDialog.tsx:98
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:182
+#: src/lib/hooks/useNotificationHandler.ts:185
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102
#: src/screens/Settings/NotificationSettings/index.tsx:192
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:502
+#: src/Navigation.tsx:503
msgid "Activity notifications"
msgstr ""
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:333
-#: src/components/dialogs/StarterPackDialog.tsx:374
-#: src/components/dialogs/StarterPackDialog.tsx:380
+#: src/components/dialogs/StarterPackDialog.tsx:375
+#: src/components/dialogs/StarterPackDialog.tsx:381
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:613
+#: src/screens/StarterPack/Wizard/index.tsx:614
msgid "Add {0} more to continue"
msgstr ""
@@ -714,8 +718,8 @@ msgstr ""
msgid "Add {displayName} to starter pack"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr ""
@@ -754,11 +758,11 @@ msgstr ""
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:856
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1496
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,7 +780,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:220
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
@@ -785,8 +789,8 @@ msgstr ""
msgid "Add media to post"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:520
-#: src/components/moderation/ReportDialog/index.tsx:524
+#: src/components/moderation/ReportDialog/index.tsx:514
+#: src/components/moderation/ReportDialog/index.tsx:518
msgid "Add more details (optional)"
msgstr ""
@@ -815,7 +819,7 @@ msgstr ""
msgid "Add recommended feeds"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:546
+#: src/screens/StarterPack/Wizard/index.tsx:547
msgid "Add some feeds to your starter pack!"
msgstr ""
@@ -831,18 +835,18 @@ msgstr ""
msgid "Add this feed to your feeds"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:342
-#: src/view/com/profile/ProfileMenu.tsx:345
+#: src/view/com/profile/ProfileMenu.tsx:343
+#: src/view/com/profile/ProfileMenu.tsx:346
msgid "Add to lists"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:141
+#: src/components/PostControls/BookmarkButton.tsx:142
msgid "Add to saved posts"
msgstr ""
#: src/components/dialogs/StarterPackDialog.tsx:176
-#: src/view/com/profile/ProfileMenu.tsx:333
-#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:334
+#: src/view/com/profile/ProfileMenu.tsx:337
msgid "Add to starter packs"
msgstr ""
@@ -850,7 +854,7 @@ msgstr ""
msgid "Add user to list"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:231
+#: src/ageAssurance/components/NoAccessScreen.tsx:228
msgid "Add your birthdate"
msgstr ""
@@ -859,19 +863,19 @@ msgstr ""
msgid "Added to list"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:258
+#: src/components/dialogs/StarterPackDialog.tsx:259
msgid "Added to starter pack"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:111
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:113
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:538
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr ""
@@ -879,10 +883,10 @@ msgstr ""
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr ""
@@ -894,8 +898,8 @@ msgstr ""
msgid "Adult content is disabled."
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr ""
@@ -911,17 +915,17 @@ msgstr ""
msgid "Age Assurance"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:69
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:71
msgid "Age assurance inquiry failed to send, please try again."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:77
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:79
msgctxt "toast"
msgid "Age assurance inquiry was submitted"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:354
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:199
+#: src/ageAssurance/components/NoAccessScreen.tsx:352
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:201
msgid "Age assurance only takes a few minutes"
msgstr ""
@@ -930,17 +934,17 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:174
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:91
-#: src/screens/StarterPack/StarterPackScreen.tsx:386
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:390
msgid "All accounts have been followed!"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:141
+#: src/components/contacts/screens/ViewMatches.tsx:143
msgid "All friends followed!"
msgstr ""
@@ -960,7 +964,7 @@ msgstr ""
msgid "Allow access to your direct messages"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:448
msgid "Allow anyone to reply"
msgstr ""
@@ -979,23 +983,23 @@ msgstr ""
msgid "Allow others to be notified of your posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:498
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:501
msgid "Allow people you follow to reply"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:512
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:515
msgid "Allow people you mention to reply"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:630
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:633
msgid "Allow quote posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:592
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:595
msgid "Allow users in {0} to reply"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:484
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:487
msgid "Allow your followers to reply"
msgstr ""
@@ -1009,15 +1013,15 @@ msgstr ""
msgid "Already have a code?"
msgstr ""
-#: src/components/WelcomeModal.tsx:189
+#: src/components/WelcomeModal.tsx:191
msgid "Already have an account?"
msgstr ""
-#: src/screens/Login/ChooseAccountForm.tsx:43
+#: src/screens/Login/ChooseAccountForm.tsx:44
msgid "Already signed in as @{0}"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1037,7 @@ msgstr ""
msgid "Alt text"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
msgid "Alt Text"
msgstr ""
@@ -1067,7 +1071,7 @@ msgstr ""
msgid "An error occurred while compressing the video."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:196
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,11 +1080,11 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:240
+#: src/components/contacts/screens/ViewMatches.tsx:242
msgid "An error occurred while hiding suggestion. {0}"
msgstr ""
@@ -1092,18 +1096,18 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:575
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:578
msgid "An error occurred while loading your lists :/"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:75
+#: src/components/StarterPack/QrCodeDialog.tsx:77
msgid "An error occurred while saving the QR code!"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:51
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:76
-#: src/screens/StarterPack/StarterPackScreen.tsx:352
-#: src/screens/StarterPack/StarterPackScreen.tsx:374
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:53
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:78
+#: src/screens/StarterPack/StarterPackScreen.tsx:356
+#: src/screens/StarterPack/StarterPackScreen.tsx:378
msgid "An error occurred while trying to follow all"
msgstr ""
@@ -1111,9 +1115,9 @@ msgstr ""
msgid "An error occurred while uploading the video."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:117
-#: src/components/contacts/screens/VerifyNumber.tsx:128
-#: src/components/contacts/screens/VerifyNumber.tsx:181
+#: src/components/contacts/screens/PhoneInput.tsx:119
+#: src/components/contacts/screens/VerifyNumber.tsx:130
+#: src/components/contacts/screens/VerifyNumber.tsx:183
msgid "An error occurred. {0}"
msgstr ""
@@ -1126,8 +1130,8 @@ msgstr ""
msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
-#: src/components/verification/VerifierDialog.tsx:86
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:85
+#: src/components/verification/VerifierDialog.tsx:87
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
@@ -1135,11 +1139,11 @@ msgstr ""
msgid "An issue not included in these options"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:38
+#: src/components/dms/dialogs/NewChatDialog.tsx:39
msgid "An issue occurred starting the chat"
msgstr ""
-#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47
+#: src/components/dms/dialogs/ShareViaChatDialog.tsx:48
msgid "An issue occurred while trying to open the chat"
msgstr ""
@@ -1152,7 +1156,7 @@ msgstr ""
msgid "An issue occurred, please try again."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:119
msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
msgstr ""
@@ -1165,7 +1169,7 @@ msgstr ""
msgid "an unknown labeler"
msgstr ""
-#: src/components/WhoCanReply.tsx:372
+#: src/components/WhoCanReply.tsx:373
msgid "and"
msgstr ""
@@ -1181,7 +1185,7 @@ msgstr ""
msgid "Animals"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:154
msgid "Animated GIF"
msgstr ""
@@ -1189,15 +1193,15 @@ msgstr ""
msgid "Announcement"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:38
msgid "Announcing verification on Bluesky"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:451
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:454
msgid "Anyone"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:134
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:136
msgid "Anyone can interact"
msgstr ""
@@ -1207,7 +1211,7 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:543
#: src/screens/Settings/AppIconSettings/index.tsx:64
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
@@ -1248,7 +1252,7 @@ msgstr ""
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:354
#: src/screens/Settings/AppPasswords.tsx:50
msgid "App Passwords"
msgstr ""
@@ -1289,7 +1293,7 @@ msgstr ""
msgid "Appeal this decision"
msgstr ""
-#: src/Navigation.tsx:393
+#: src/Navigation.tsx:394
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:228
#: src/screens/Settings/Settings.tsx:231
@@ -1306,12 +1310,12 @@ msgstr ""
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:670
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:678
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr ""
@@ -1319,11 +1323,11 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:200
+#: src/components/dms/MessageContextMenu.tsx:197
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:659
+#: src/screens/StarterPack/StarterPackScreen.tsx:664
msgid "Are you sure you want to delete this starter pack?"
msgstr ""
@@ -1332,11 +1336,11 @@ msgstr ""
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr ""
@@ -1344,11 +1348,7 @@ msgstr ""
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:805
-msgid "Are you sure you'd like to discard this draft?"
-msgstr ""
-
-#: src/view/com/composer/Composer.tsx:995
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -1364,12 +1364,12 @@ msgstr ""
msgid "Art"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:558
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:560
msgid "Assign topic for algo"
msgstr ""
@@ -1394,8 +1394,8 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:333
#: src/components/moderation/LabelsOnMeDialog.tsx:334
-#: src/screens/Login/ChooseAccountForm.tsx:91
-#: src/screens/Login/ChooseAccountForm.tsx:96
+#: src/screens/Login/ChooseAccountForm.tsx:92
+#: src/screens/Login/ChooseAccountForm.tsx:97
#: src/screens/Login/ForgotPasswordForm.tsx:123
#: src/screens/Login/ForgotPasswordForm.tsx:129
#: src/screens/Login/LoginForm.tsx:313
@@ -1404,11 +1404,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:184
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
-#: src/screens/StarterPack/Wizard/index.tsx:323
+#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr ""
@@ -1448,8 +1450,8 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:54
-#: src/components/dms/MessageProfileButton.tsx:58
+#: src/components/dms/dialogs/NewChatDialog.tsx:55
+#: src/components/dms/MessageProfileButton.tsx:59
#: src/screens/Messages/ChatList.tsx:371
#: src/screens/Messages/Conversation.tsx:228
msgid "Before you can message another user, you must first verify your email."
@@ -1463,7 +1465,7 @@ msgstr ""
msgid "Begin age assurance process"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:50
msgid "Begin the age assurance process by completing the fields below."
msgstr ""
@@ -1479,30 +1481,30 @@ msgstr ""
msgid "Birthday"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:821
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/view/com/profile/ProfileMenu.tsx:550
+#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Block"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:261
#: src/components/dms/ConvoMenu.tsx:264
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:706
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708
#: src/screens/Messages/components/RequestButtons.tsx:144
#: src/screens/Messages/components/RequestButtons.tsx:146
-#: src/view/com/profile/ProfileMenu.tsx:456
-#: src/view/com/profile/ProfileMenu.tsx:463
+#: src/view/com/profile/ProfileMenu.tsx:457
+#: src/view/com/profile/ProfileMenu.tsx:464
msgid "Block account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:813
-#: src/view/com/profile/ProfileMenu.tsx:533
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:816
+#: src/view/com/profile/ProfileMenu.tsx:534
msgid "Block Account?"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:97
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:100
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:90
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:93
msgid "Block accounts"
msgstr ""
@@ -1510,7 +1512,7 @@ msgstr ""
msgid "Block and Delete"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:125
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:118
msgid "Block list"
msgstr ""
@@ -1518,7 +1520,7 @@ msgstr ""
msgid "Block or report"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:120
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:113
msgid "Block these accounts?"
msgstr ""
@@ -1543,13 +1545,13 @@ msgstr ""
msgid "Blocked accounts"
msgstr ""
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:195
#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:815
-#: src/view/com/profile/ProfileMenu.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818
+#: src/view/com/profile/ProfileMenu.tsx:546
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -1561,11 +1563,11 @@ msgstr ""
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:122
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:115
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:542
+#: src/view/com/profile/ProfileMenu.tsx:543
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr ""
@@ -1578,7 +1580,7 @@ msgstr ""
msgid "Bluesky"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:700
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr ""
@@ -1587,7 +1589,7 @@ msgctxt "Name of app icon variant"
msgid "Bluesky Classic™"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:232
+#: src/components/contacts/screens/GetContacts.tsx:234
msgid "Bluesky helps friends find each other by creating an encoded digital fingerprint, called a \"hash\", and then looking for matching hashes."
msgstr ""
@@ -1603,7 +1605,7 @@ msgstr ""
msgid "Bluesky is better with friends!"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:35
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:42
msgid "Bluesky is more fun with friends"
msgstr ""
@@ -1611,7 +1613,7 @@ msgstr ""
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:312
+#: src/components/contacts/screens/ViewMatches.tsx:314
msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>"
msgstr ""
@@ -1619,11 +1621,11 @@ msgstr ""
msgid "Bluesky Social Terms of Service"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:542
+#: src/screens/Settings/FindContactsSettings.tsx:548
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
@@ -1631,7 +1633,7 @@ msgstr ""
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:133
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -1664,20 +1666,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:777
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:906
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:887
-#: src/components/FeedInterstitials.tsx:890
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:915
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -1698,7 +1700,7 @@ msgstr ""
msgid "Browse starter pack {displayName}"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90
msgid "Browse topic {0}"
msgstr ""
@@ -1710,18 +1712,18 @@ msgstr ""
msgid "Business"
msgstr ""
-#: src/screens/Bookmarks/index.tsx:284
+#: src/screens/Bookmarks/index.tsx:304
msgid "Button to go back to the home timeline"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:842
+#: src/components/moderation/ReportDialog/index.tsx:836
#: src/screens/Search/components/StarterPackCard.tsx:106
-#: src/screens/Search/Explore.tsx:943
+#: src/screens/Search/Explore.tsx:932
msgid "By {0}"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:453
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:455
msgid "By <0>{0}0>"
msgstr ""
@@ -1729,7 +1731,7 @@ msgstr ""
msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:294
+#: src/components/contacts/screens/PhoneInput.tsx:296
msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more0>"
msgstr ""
@@ -1754,10 +1756,10 @@ msgid "Camera"
msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:128
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:134
-#: src/components/contacts/screens/GetContacts.tsx:289
-#: src/components/contacts/screens/GetContacts.tsx:294
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:130
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:136
+#: src/components/contacts/screens/GetContacts.tsx:291
+#: src/components/contacts/screens/GetContacts.tsx:296
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:152
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:157
#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
@@ -1770,8 +1772,8 @@ msgstr ""
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1790,8 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1050
-#: src/view/com/composer/Composer.tsx:1061
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1819,10 +1821,10 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:107
-#: src/components/PostControls/index.tsx:138
-#: src/components/PostControls/index.tsx:166
-#: src/state/shell/composer/index.tsx:95
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:139
+#: src/components/PostControls/index.tsx:167
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -1861,7 +1863,7 @@ msgstr ""
msgid "Change Handle"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:437
+#: src/components/moderation/ReportDialog/index.tsx:431
msgid "Change moderation service"
msgstr ""
@@ -1874,11 +1876,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:302
+#: src/components/moderation/ReportDialog/index.tsx:296
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:382
+#: src/components/moderation/ReportDialog/index.tsx:376
msgid "Change report reason"
msgstr ""
@@ -1899,11 +1901,11 @@ msgstr ""
msgid "Changes saved"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:99
-#: src/Navigation.tsx:559
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/lib/hooks/useNotificationHandler.ts:102
+#: src/Navigation.tsx:560
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr ""
@@ -1913,11 +1915,11 @@ msgctxt "toast"
msgid "Chat deleted"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:114
+#: src/lib/hooks/useNotificationHandler.ts:117
msgid "Chat messages - silent"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:105
+#: src/lib/hooks/useNotificationHandler.ts:108
msgid "Chat messages - sound"
msgstr ""
@@ -1926,7 +1928,7 @@ msgctxt "toast"
msgid "Chat muted"
msgstr ""
-#: src/Navigation.tsx:569
+#: src/Navigation.tsx:570
#: src/screens/Messages/components/InboxPreview.tsx:22
msgid "Chat request inbox"
msgstr ""
@@ -1938,7 +1940,7 @@ msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:78
-#: src/Navigation.tsx:564
+#: src/Navigation.tsx:565
#: src/screens/Messages/ChatList.tsx:81
#: src/screens/Messages/ChatList.tsx:85
#: src/screens/Messages/ChatList.tsx:380
@@ -1985,15 +1987,15 @@ msgstr ""
msgid "Choose domain verification method"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:217
+#: src/screens/StarterPack/Wizard/index.tsx:218
msgid "Choose Feeds"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:213
+#: src/screens/StarterPack/Wizard/index.tsx:214
msgid "Choose People"
msgstr ""
@@ -2017,11 +2019,11 @@ msgstr ""
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:273
+#: src/screens/Signup/StepInfo/index.tsx:271
msgid "Choose your password"
msgstr ""
-#: src/screens/Signup/index.tsx:181
+#: src/screens/Signup/index.tsx:192
msgid "Choose your username"
msgstr ""
@@ -2033,8 +2035,8 @@ msgstr ""
msgid "Clear all storage data (restart after this)"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:116
-#: src/screens/Settings/AboutSettings.tsx:120
+#: src/screens/Settings/AboutSettings.tsx:114
+#: src/screens/Settings/AboutSettings.tsx:118
msgid "Clear image cache"
msgstr ""
@@ -2050,11 +2052,11 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:126
+#: src/ageAssurance/components/NoAccessScreen.tsx:123
msgid "Click here to contact our support team"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:245
+#: src/ageAssurance/components/NoAccessScreen.tsx:242
msgid "Click here to log out"
msgstr ""
@@ -2063,7 +2065,7 @@ msgid "Click here to restart the verification process."
msgstr ""
#: src/ageAssurance/components/NoAccessScreen.tsx:103
-#: src/ageAssurance/components/NoAccessScreen.tsx:228
+#: src/ageAssurance/components/NoAccessScreen.tsx:225
msgid "Click here to update your birthdate"
msgstr ""
@@ -2087,17 +2089,17 @@ msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:270
#: src/ageAssurance/components/RedirectOverlay.tsx:320
#: src/ageAssurance/components/RedirectOverlay.tsx:326
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:172
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:231
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:173
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:179
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:232
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:238
#: src/components/dialogs/GifSelect.tsx:269
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:198
#: src/components/dialogs/SearchablePeopleList.tsx:295
@@ -2111,14 +2113,14 @@ msgstr ""
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:445
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:204
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
-#: src/components/verification/VerificationsDialog.tsx:144
-#: src/components/verification/VerifierDialog.tsx:150
-#: src/components/WhoCanReply.tsx:234
-#: src/components/WhoCanReply.tsx:241
+#: src/components/verification/VerificationsDialog.tsx:145
+#: src/components/verification/VerifierDialog.tsx:147
+#: src/components/WhoCanReply.tsx:235
+#: src/components/WhoCanReply.tsx:242
#: src/screens/Settings/components/ChangePasswordDialog.tsx:287
#: src/screens/Settings/components/ChangePasswordDialog.tsx:292
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:335
@@ -2143,15 +2145,15 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:222
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:228
#: src/components/dialogs/GifSelect.tsx:263
-#: src/components/verification/VerificationsDialog.tsx:136
-#: src/components/verification/VerifierDialog.tsx:142
+#: src/components/verification/VerificationsDialog.tsx:137
+#: src/components/verification/VerifierDialog.tsx:139
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:204
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:298
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:330
msgid "Close dialog"
msgstr ""
-#: src/view/shell/index.web.tsx:130
+#: src/view/shell/index.web.tsx:131
msgid "Close drawer menu"
msgstr ""
@@ -2168,7 +2170,8 @@ msgstr ""
msgid "Close image"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr ""
@@ -2182,7 +2185,7 @@ msgstr ""
msgid "Close this dialog"
msgstr ""
-#: src/components/WelcomeModal.tsx:214
+#: src/components/WelcomeModal.tsx:216
msgid "Close welcome modal"
msgstr ""
@@ -2190,7 +2193,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1058
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2229,25 +2232,25 @@ msgid "Comics"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:344
#: src/view/screens/CommunityGuidelines.tsx:37
msgid "Community Guidelines"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:322
+#: src/screens/Onboarding/StepFinished/index.tsx:325
msgid "Complete onboarding and start using your account"
msgstr ""
-#: src/screens/Signup/index.tsx:183
+#: src/screens/Signup/index.tsx:194
msgid "Complete the challenge"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:143
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2258,7 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1891
+#: src/view/com/composer/Composer.tsx:2295
msgid "Compressing video..."
msgstr ""
@@ -2263,7 +2266,6 @@ msgstr ""
msgid "Configure content filtering setting for category: {name}"
msgstr ""
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2274,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr ""
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2287,8 +2289,8 @@ msgstr ""
msgid "Confirm delete account"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:368
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:95
+#: src/ageAssurance/components/NoAccessScreen.tsx:366
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:97
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:40
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:105
msgid "Confirm your location"
@@ -2310,36 +2312,36 @@ msgid "Connecting..."
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:296
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:207
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:208
msgid "Connection issue"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:305
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:138
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:29
+#: src/ageAssurance/components/NoAccessScreen.tsx:303
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:140
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:30
msgid "Contact our moderation team"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155
-#: src/screens/Signup/index.tsx:222
-#: src/screens/Signup/index.tsx:225
+#: src/screens/Signup/index.tsx:233
+#: src/screens/Signup/index.tsx:236
msgid "Contact support"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:57
-#: src/screens/Settings/FindContactsSettings.tsx:154
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:64
+#: src/screens/Settings/FindContactsSettings.tsx:156
msgid "Contact sync is not available on this device, as the app is unable to access your contacts."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:93
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:95
msgid "Contact us"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:498
+#: src/screens/Settings/FindContactsSettings.tsx:504
msgid "Contacts imported"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:471
+#: src/screens/Settings/FindContactsSettings.tsx:477
msgid "Contacts removed"
msgstr ""
@@ -2352,7 +2354,7 @@ msgstr ""
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:518
+#: src/Navigation.tsx:519
msgid "Content and Media"
msgstr ""
@@ -2364,7 +2366,7 @@ msgstr ""
msgid "Content filters"
msgstr ""
-#: src/screens/Search/modules/ExploreRecommendations.tsx:59
+#: src/screens/Search/modules/ExploreRecommendations.tsx:60
msgid "Content from across the network we think you might like."
msgstr ""
@@ -2389,7 +2391,7 @@ msgstr ""
msgid "Content Warning"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr ""
@@ -2399,9 +2401,9 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
-#: src/screens/Onboarding/StepInterests/index.tsx:91
+#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:276
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr ""
@@ -2418,9 +2420,9 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:88
+#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2436,18 +2438,18 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:198
+#: src/screens/Messages/components/ChatListItem.tsx:199
msgid "Conversation deleted"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:151
+#: src/screens/Settings/AboutSettings.tsx:149
msgid "Copied build version to clipboard"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:58
#: src/components/PostControls/DiscoverDebug.tsx:36
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:249
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:257
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:73
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
msgid "Copied to clipboard"
@@ -2458,11 +2460,11 @@ msgstr ""
msgid "Copied!"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:127
+#: src/screens/Settings/AboutSettings.tsx:125
msgid "Copies build version to clipboard"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/components/StarterPack/QrCodeDialog.tsx:194
msgid "Copy"
msgstr ""
@@ -2470,13 +2472,13 @@ msgstr ""
msgid "Copy App Password"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:493
-#: src/view/com/profile/ProfileMenu.tsx:496
+#: src/view/com/profile/ProfileMenu.tsx:494
+#: src/view/com/profile/ProfileMenu.tsx:497
msgid "Copy at:// URI"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156
msgid "Copy author DID"
msgstr ""
@@ -2486,8 +2488,8 @@ msgid "Copy code"
msgstr ""
#: src/screens/Settings/components/ChangeHandleDialog.tsx:502
-#: src/view/com/profile/ProfileMenu.tsx:502
-#: src/view/com/profile/ProfileMenu.tsx:505
+#: src/view/com/profile/ProfileMenu.tsx:503
+#: src/view/com/profile/ProfileMenu.tsx:506
msgid "Copy DID"
msgstr ""
@@ -2495,52 +2497,52 @@ msgstr ""
msgid "Copy host"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:113
-#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/components/StarterPack/ShareDialog.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:624
msgid "Copy link"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:120
+#: src/components/StarterPack/ShareDialog.tsx:121
msgid "Copy Link"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:165
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:169
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:159
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:163
msgid "Copy link to list"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:128
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:131
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90
msgid "Copy link to post"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:269
-#: src/view/com/profile/ProfileMenu.tsx:280
+#: src/view/com/profile/ProfileMenu.tsx:270
+#: src/view/com/profile/ProfileMenu.tsx:281
msgid "Copy link to profile"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:612
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link to starter pack"
msgstr ""
+#: src/components/dms/MessageContextMenu.tsx:143
#: src/components/dms/MessageContextMenu.tsx:146
-#: src/components/dms/MessageContextMenu.tsx:149
msgid "Copy message text"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147
msgid "Copy post at:// URI"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:512
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:513
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515
msgid "Copy post text"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:178
+#: src/components/StarterPack/QrCodeDialog.tsx:180
msgid "Copy QR code"
msgstr ""
@@ -2550,7 +2552,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:349
#: src/view/screens/CopyrightPolicy.tsx:34
msgid "Copyright Policy"
msgstr ""
@@ -2567,13 +2569,13 @@ msgstr ""
msgid "Could not find profile"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:208
-#: src/screens/Settings/FindContactsSettings.tsx:397
+#: src/screens/Settings/FindContactsSettings.tsx:211
+#: src/screens/Settings/FindContactsSettings.tsx:402
msgid "Could not follow all matches - please check your network connection."
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:214
-#: src/screens/Settings/FindContactsSettings.tsx:403
+#: src/screens/Settings/FindContactsSettings.tsx:217
+#: src/screens/Settings/FindContactsSettings.tsx:408
msgid "Could not follow all matches. {0}"
msgstr ""
@@ -2582,7 +2584,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr ""
@@ -2608,11 +2610,11 @@ msgstr ""
msgid "Could not update notification settings"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:168
+#: src/components/contacts/screens/GetContacts.tsx:170
msgid "Could not upload contacts. {0}"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:162
+#: src/components/contacts/screens/GetContacts.tsx:164
msgid "Could not upload contacts. You need to re-verify your phone number to proceed"
msgstr ""
@@ -2633,18 +2635,18 @@ msgstr ""
msgid "Create a list"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:163
+#: src/components/StarterPack/QrCodeDialog.tsx:165
msgid "Create a QR code for a starter pack"
msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:206
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
-#: src/Navigation.tsx:599
+#: src/Navigation.tsx:600
msgid "Create a starter pack"
msgstr ""
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2652,20 +2654,20 @@ msgstr ""
msgid "Create a starter pack for me"
msgstr ""
-#: src/components/WelcomeModal.tsx:155
-#: src/components/WelcomeModal.tsx:163
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/components/WelcomeModal.tsx:157
+#: src/components/WelcomeModal.tsx:165
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
msgstr ""
-#: src/screens/Signup/index.tsx:124
+#: src/screens/Signup/index.tsx:135
msgid "Create Account"
msgstr ""
@@ -2676,8 +2678,8 @@ msgstr ""
msgid "Create an account"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:311
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:312
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
msgid "Create an account without using this starter pack"
msgstr ""
@@ -2693,14 +2695,14 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
-#: src/components/moderation/ReportDialog/index.tsx:702
-#: src/components/moderation/ReportDialog/index.tsx:748
+#: src/components/moderation/ReportDialog/index.tsx:696
+#: src/components/moderation/ReportDialog/index.tsx:742
msgid "Create report for {0}"
msgstr ""
@@ -2766,13 +2768,13 @@ msgstr ""
msgid "Dark theme"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:301
+#: src/screens/Signup/StepInfo/index.tsx:299
msgid "Date of birth"
msgstr ""
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr ""
@@ -2796,14 +2798,14 @@ msgstr ""
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:202
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:762
+#: src/components/dms/MessageContextMenu.tsx:199
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:280
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:274
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:601
-#: src/screens/StarterPack/StarterPackScreen.tsx:690
-#: src/screens/StarterPack/StarterPackScreen.tsx:762
+#: src/screens/StarterPack/StarterPackScreen.tsx:606
+#: src/screens/StarterPack/StarterPackScreen.tsx:695
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Delete"
msgstr ""
@@ -2833,7 +2835,7 @@ msgstr ""
msgid "Delete chat declaration record"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:539
+#: src/screens/Settings/FindContactsSettings.tsx:545
msgid "Delete contacts"
msgstr ""
@@ -2848,20 +2850,20 @@ msgstr ""
msgid "Delete Conversation"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:160
+#: src/components/dms/MessageContextMenu.tsx:157
msgid "Delete for me"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:204
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:207
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:198
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:201
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:198
+#: src/components/dms/MessageContextMenu.tsx:195
msgid "Delete message"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:158
+#: src/components/dms/MessageContextMenu.tsx:155
msgid "Delete message for me"
msgstr ""
@@ -2869,26 +2871,26 @@ msgstr ""
msgid "Delete my account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745
-#: src/view/com/composer/Composer.tsx:969
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:595
-#: src/screens/StarterPack/StarterPackScreen.tsx:753
+#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:758
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:656
+#: src/screens/StarterPack/StarterPackScreen.tsx:661
msgid "Delete starter pack?"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:269
msgid "Delete this list?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:757
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:760
msgid "Delete this post?"
msgstr ""
@@ -2897,11 +2899,11 @@ msgid "Deleted"
msgstr ""
#: src/components/dms/MessagesListHeader.tsx:121
-#: src/screens/Messages/components/ChatListItem.tsx:131
+#: src/screens/Messages/components/ChatListItem.tsx:132
msgid "Deleted Account"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:283
+#: src/components/contacts/screens/PhoneInput.tsx:285
msgid "Deleted by Plivo after verification"
msgstr ""
@@ -2923,21 +2925,21 @@ msgstr ""
msgid "Descriptive alt text"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:650
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660
msgid "Detach quote"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:793
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796
msgid "Detach quote post?"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:140
+#: src/screens/Settings/AboutSettings.tsx:138
msgctxt "toast"
msgid "Developer mode disabled"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:134
+#: src/screens/Settings/AboutSettings.tsx:132
msgctxt "toast"
msgid "Developer mode enabled"
msgstr ""
@@ -2947,7 +2949,7 @@ msgstr ""
msgid "Developer options"
msgstr ""
-#: src/components/WhoCanReply.tsx:220
+#: src/components/WhoCanReply.tsx:221
msgid "Dialog: adjust who can interact with this post"
msgstr ""
@@ -2973,11 +2975,11 @@ msgstr ""
msgid "Disable haptic feedback"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:622
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:625
msgid "Disable quote posts of this post"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:459
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:462
msgid "Disable replies entirely"
msgstr ""
@@ -2996,8 +2998,11 @@ msgstr ""
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:807
-#: src/view/com/composer/Composer.tsx:1002
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr ""
@@ -3006,11 +3011,12 @@ msgstr ""
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:804
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:994
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr ""
@@ -3024,7 +3030,7 @@ msgstr ""
msgid "Discover new custom feeds"
msgstr ""
-#: src/screens/Search/Explore.tsx:436
+#: src/screens/Search/Explore.tsx:438
#: src/view/screens/Feeds.tsx:730
msgid "Discover New Feeds"
msgstr ""
@@ -3033,11 +3039,11 @@ msgstr ""
msgid "Dismiss"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:75
+#: src/components/contacts/FindContactsBannerNUX.tsx:76
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1815
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr ""
@@ -3049,11 +3055,16 @@ msgstr ""
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr ""
-#: src/components/FeedInterstitials.tsx:587
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3096,8 +3107,8 @@ msgstr ""
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:104
-#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:37
+#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:105
+#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:38
msgid "Don't show again"
msgstr ""
@@ -3107,8 +3118,8 @@ msgstr ""
#: src/components/contacts/components/InviteInfo.tsx:72
#: src/components/contacts/components/InviteInfo.tsx:78
-#: src/components/contacts/screens/ViewMatches.tsx:392
-#: src/components/contacts/screens/ViewMatches.tsx:409
+#: src/components/contacts/screens/ViewMatches.tsx:394
+#: src/components/contacts/screens/ViewMatches.tsx:411
#: src/components/dialogs/BirthDateSettings.tsx:196
#: src/components/dialogs/BirthDateSettings.tsx:203
#: src/components/dialogs/ServerInput.tsx:240
@@ -3121,8 +3132,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3158,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1123
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr ""
@@ -3164,6 +3175,12 @@ msgstr ""
msgid "Doxxing"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr ""
@@ -3214,9 +3231,9 @@ msgstr ""
#: src/screens/Settings/AccountSettings.tsx:145
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:252
-#: src/screens/StarterPack/StarterPackScreen.tsx:590
-#: src/screens/StarterPack/Wizard/index.tsx:339
-#: src/screens/StarterPack/Wizard/index.tsx:344
+#: src/screens/StarterPack/StarterPackScreen.tsx:595
+#: src/screens/StarterPack/Wizard/index.tsx:340
+#: src/screens/StarterPack/Wizard/index.tsx:345
msgid "Edit"
msgstr ""
@@ -3226,7 +3243,7 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:439
+#: src/view/com/util/UserAvatar.tsx:440
#: src/view/com/util/UserBanner.tsx:121
msgid "Edit avatar"
msgstr ""
@@ -3241,8 +3258,8 @@ msgstr ""
msgid "Edit image"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:724
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740
msgid "Edit interaction settings"
msgstr ""
@@ -3251,13 +3268,13 @@ msgstr ""
msgid "Edit interests"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:196
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:199
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:190
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:193
msgid "Edit list details"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:376
+#: src/view/com/profile/ProfileMenu.tsx:357
+#: src/view/com/profile/ProfileMenu.tsx:377
msgid "Edit live status"
msgstr ""
@@ -3265,7 +3282,7 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:359
#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr ""
@@ -3278,24 +3295,24 @@ msgstr ""
msgid "Edit People"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:114
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:260
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:115
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:263
msgid "Edit post interaction settings"
msgstr ""
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
+#: src/screens/StarterPack/StarterPackScreen.tsx:587
msgid "Edit starter pack"
msgstr ""
@@ -3303,11 +3320,11 @@ msgstr ""
msgid "Edit user list"
msgstr ""
-#: src/components/WhoCanReply.tsx:114
+#: src/components/WhoCanReply.tsx:115
msgid "Edit who can reply"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:605
msgid "Edit your starter pack"
msgstr ""
@@ -3320,7 +3337,7 @@ msgid "Either the creator of this list has blocked you or you have blocked the c
msgstr ""
#: src/screens/Settings/AccountSettings.tsx:66
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Signup/StepInfo/index.tsx:223
msgid "Email"
msgstr ""
@@ -3359,8 +3376,8 @@ msgstr ""
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124
msgid "Embed post"
msgstr ""
@@ -3409,7 +3426,7 @@ msgstr ""
msgid "Enable push notifications"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:623
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:626
msgid "Enable quote posts of this post"
msgstr ""
@@ -3426,8 +3443,8 @@ msgstr ""
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:155
-#: src/screens/Settings/ContentAndMediaSettings.tsx:169
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr ""
@@ -3445,7 +3462,7 @@ msgstr ""
msgid "Ensure you have selected a language for each subtitle file."
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:228
+#: src/components/contacts/screens/VerifyNumber.tsx:230
msgid "Enter 6-digit code that was sent to your phone number"
msgstr ""
@@ -3468,7 +3485,7 @@ msgstr ""
msgid "Enter fullscreen"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:223
+#: src/components/contacts/screens/VerifyNumber.tsx:225
msgid "Enter the 6-digit code sent to {prettyNumber}"
msgstr ""
@@ -3489,7 +3506,7 @@ msgid "Enter your birthdate"
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:245
+#: src/screens/Signup/StepInfo/index.tsx:243
msgid "Enter your email address"
msgstr ""
@@ -3497,7 +3514,7 @@ msgstr ""
msgid "Enter your password"
msgstr ""
-#: src/screens/Login/index.tsx:137
+#: src/screens/Login/index.tsx:138
msgid "Enter your username and password"
msgstr ""
@@ -3505,16 +3522,16 @@ msgstr ""
msgid "Enters full screen"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:236
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1900
+#: src/view/com/composer/Composer.tsx:2304
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:90
+#: src/screens/Settings/FindContactsSettings.tsx:92
msgid "Error getting the latest data."
msgstr ""
@@ -3534,7 +3551,7 @@ msgstr ""
msgid "Error occurred while saving file"
msgstr ""
-#: src/screens/Signup/StepCaptcha/index.tsx:125
+#: src/screens/Signup/StepCaptcha/index.tsx:126
msgid "Error receiving captcha response."
msgstr ""
@@ -3542,18 +3559,18 @@ msgstr ""
msgid "Error: {error}"
msgstr ""
-#: src/components/WhoCanReply.tsx:83
+#: src/components/WhoCanReply.tsx:84
msgid "Everybody can reply"
msgstr ""
-#: src/components/WhoCanReply.tsx:277
+#: src/components/WhoCanReply.tsx:278
msgid "Everybody can reply to this post."
msgstr ""
#: src/screens/Messages/Settings.tsx:88
#: src/screens/Messages/Settings.tsx:91
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:167
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:177
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178
msgid "Everyone"
msgstr ""
@@ -3578,11 +3595,7 @@ msgstr ""
msgid "Exits account deletion process"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr ""
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr ""
@@ -3598,7 +3611,7 @@ msgstr ""
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:995
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr ""
@@ -3636,15 +3649,15 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:788
+#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
-#: src/components/WelcomeModal.tsx:168
-#: src/components/WelcomeModal.tsx:177
+#: src/components/WelcomeModal.tsx:170
+#: src/components/WelcomeModal.tsx:179
msgid "Explore the app"
msgstr ""
@@ -3672,7 +3685,7 @@ msgstr ""
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr ""
-#: src/Navigation.tsx:377
+#: src/Navigation.tsx:378
#: src/screens/Settings/ExternalMediaPreferences.tsx:34
msgid "External Media Preferences"
msgstr ""
@@ -3687,11 +3700,11 @@ msgid "Failed to accept chat"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:66
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageContextMenu.tsx:98
msgid "Failed to add emoji reaction"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:270
+#: src/components/dialogs/StarterPackDialog.tsx:271
msgid "Failed to add to starter pack"
msgstr ""
@@ -3703,12 +3716,12 @@ msgstr ""
msgid "Failed to create app password. Please try again."
msgstr ""
-#: src/components/dms/MessageProfileButton.tsx:36
+#: src/components/dms/MessageProfileButton.tsx:37
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:262
-#: src/screens/StarterPack/Wizard/index.tsx:270
+#: src/screens/StarterPack/Wizard/index.tsx:263
+#: src/screens/StarterPack/Wizard/index.tsx:271
msgid "Failed to create starter pack"
msgstr ""
@@ -3718,31 +3731,31 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:81
+#: src/components/dms/MessageContextMenu.tsx:78
msgid "Failed to delete message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:214
msgid "Failed to delete post, please try again"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:724
+#: src/screens/StarterPack/StarterPackScreen.tsx:729
msgid "Failed to delete starter pack"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:121
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:145
+#: src/components/contacts/screens/ViewMatches.tsx:147
msgid "Failed to follow all your friends, please try again"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:233
+#: src/components/contacts/screens/ViewMatches.tsx:235
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:578
+#: src/components/contacts/screens/ViewMatches.tsx:581
msgid "Failed to launch SMS app"
msgstr ""
@@ -3751,10 +3764,10 @@ msgstr ""
msgid "Failed to load conversations"
msgstr ""
-#: src/screens/Search/Explore.tsx:472
-#: src/screens/Search/Explore.tsx:524
-#: src/screens/Search/Explore.tsx:562
-#: src/screens/Search/Explore.tsx:601
+#: src/screens/Search/Explore.tsx:474
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr ""
@@ -3784,14 +3797,14 @@ msgstr ""
msgid "Failed to load preference."
msgstr ""
-#: src/screens/Search/Explore.tsx:465
-#: src/screens/Search/Explore.tsx:517
-#: src/screens/Search/Explore.tsx:555
-#: src/screens/Search/Explore.tsx:594
+#: src/screens/Search/Explore.tsx:467
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/screens/Search/Explore.tsx:375
+#: src/screens/Search/Explore.tsx:377
msgid "Failed to load suggested follows"
msgstr ""
@@ -3804,20 +3817,20 @@ msgstr ""
msgid "Failed to pin post"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:481
+#: src/screens/Settings/FindContactsSettings.tsx:487
msgid "Failed to remove data due to a network error, please check your internet connection."
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:487
+#: src/screens/Settings/FindContactsSettings.tsx:493
msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:60
-#: src/components/dms/MessageContextMenu.tsx:95
+#: src/components/dms/MessageContextMenu.tsx:92
msgid "Failed to remove emoji reaction"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:289
+#: src/components/dialogs/StarterPackDialog.tsx:290
msgid "Failed to remove from starter pack"
msgstr ""
@@ -3829,6 +3842,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3858,11 +3875,11 @@ msgstr ""
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:238
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:104
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:106
msgid "Failed to unpin list"
msgstr ""
@@ -3910,11 +3927,12 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:293
+#: src/Navigation.tsx:294
msgid "Feed"
msgstr ""
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr ""
@@ -3927,7 +3945,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:355
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:356
msgid "Feed menu"
msgstr ""
@@ -3941,24 +3959,24 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:296
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:320
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:300
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:324
msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:584
+#: src/Navigation.tsx:585
#: src/screens/SavedFeeds.tsx:108
#: src/screens/Search/SearchResults.tsx:78
-#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/screens/StarterPack/StarterPackScreen.tsx:193
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr ""
@@ -3972,7 +3990,7 @@ msgctxt "toast"
msgid "Feeds updated!"
msgstr ""
-#: src/screens/Search/modules/ExploreRecommendations.tsx:65
+#: src/screens/Search/modules/ExploreRecommendations.tsx:66
msgid "Feeds we think you might like."
msgstr ""
@@ -4000,11 +4018,11 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:161
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "Filter who you receive notifications from"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:328
+#: src/screens/Onboarding/StepFinished/index.tsx:331
msgid "Finalizing"
msgstr ""
@@ -4016,18 +4034,18 @@ msgstr ""
msgid "Finance"
msgstr ""
-#: src/view/com/posts/CustomFeedEmptyState.tsx:71
+#: src/view/com/posts/CustomFeedEmptyState.tsx:72
#: src/view/com/posts/FollowingEmptyState.tsx:53
#: src/view/com/posts/FollowingEndOfFeed.tsx:54
msgid "Find accounts to follow"
msgstr ""
-#: src/Navigation.tsx:425
-#: src/Navigation.tsx:626
+#: src/Navigation.tsx:426
+#: src/Navigation.tsx:627
msgid "Find Contacts"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:76
+#: src/screens/Settings/FindContactsSettings.tsx:78
msgid "Find Friends"
msgstr ""
@@ -4036,15 +4054,15 @@ msgstr ""
msgid "Find friends from contacts"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:270
-#: src/components/contacts/screens/GetContacts.tsx:284
+#: src/components/contacts/screens/GetContacts.tsx:272
+#: src/components/contacts/screens/GetContacts.tsx:286
msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:431
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr ""
@@ -4057,8 +4075,8 @@ msgstr ""
msgid "Find your friends"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:38
-#: src/screens/Settings/FindContactsSettings.tsx:123
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:45
+#: src/screens/Settings/FindContactsSettings.tsx:125
msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more0>"
msgstr ""
@@ -4066,11 +4084,11 @@ msgstr ""
msgid "Find your people"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:278
+#: src/components/contacts/screens/GetContacts.tsx:280
msgid "Finding friends..."
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:218
+#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Finish"
msgstr ""
@@ -4097,24 +4115,24 @@ msgstr ""
#: src/components/ProfileCard.tsx:559
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:140
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:879
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:127
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:856
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr ""
-#: src/state/shell/progress-guide.tsx:231
+#: src/state/shell/progress-guide.tsx:232
msgid "Follow 10 accounts"
msgstr ""
@@ -4126,41 +4144,41 @@ msgstr ""
msgid "Follow 7 accounts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:312
-#: src/view/com/profile/ProfileMenu.tsx:323
+#: src/view/com/profile/ProfileMenu.tsx:313
+#: src/view/com/profile/ProfileMenu.tsx:324
msgid "Follow account"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:273
-#: src/components/contacts/screens/ViewMatches.tsx:288
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:265
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:156
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:163
-#: src/screens/Settings/FindContactsSettings.tsx:438
-#: src/screens/Settings/FindContactsSettings.tsx:448
-#: src/screens/StarterPack/StarterPackScreen.tsx:438
-#: src/screens/StarterPack/StarterPackScreen.tsx:446
+#: src/components/contacts/screens/ViewMatches.tsx:275
+#: src/components/contacts/screens/ViewMatches.tsx:290
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
+#: src/screens/Settings/FindContactsSettings.tsx:443
+#: src/screens/Settings/FindContactsSettings.tsx:453
+#: src/screens/StarterPack/StarterPackScreen.tsx:442
+#: src/screens/StarterPack/StarterPackScreen.tsx:450
msgid "Follow all"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:138
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:116
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:391
+#: src/screens/Settings/FindContactsSettings.tsx:396
msgid "Followed all matches"
msgstr ""
@@ -4180,7 +4198,7 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:248
msgid "Followers of @{0} that you know"
msgstr ""
@@ -4194,9 +4212,9 @@ msgstr ""
#: src/components/ProfileCard.tsx:546
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:143
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:877
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,7 +4232,7 @@ msgstr ""
msgid "Following {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:855
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr ""
@@ -4223,7 +4241,7 @@ msgstr ""
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:364
+#: src/Navigation.tsx:365
#: src/screens/Settings/FollowingFeedPreferences.tsx:56
msgid "Following Feed Preferences"
msgstr ""
@@ -4264,8 +4282,8 @@ msgstr ""
msgid "For the best experience, we recommend using the theme font."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:323
-#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:91
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4277,8 +4295,8 @@ msgstr ""
msgid "Forget the noise"
msgstr ""
-#: src/screens/Login/index.tsx:167
-#: src/screens/Login/index.tsx:182
+#: src/screens/Login/index.tsx:168
+#: src/screens/Login/index.tsx:183
msgid "Forgot Password"
msgstr ""
@@ -4294,7 +4312,7 @@ msgstr ""
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:157
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158
msgid "From"
msgstr ""
@@ -4307,11 +4325,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr ""
@@ -4394,15 +4412,15 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1184
-#: src/screens/VideoFeed/index.tsx:1188
-#: src/view/com/auth/LoggedOut.tsx:72
-#: src/view/com/profile/ProfileFollowers.tsx:180
-#: src/view/com/profile/ProfileFollowers.tsx:181
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
+#: src/view/com/auth/LoggedOut.tsx:73
+#: src/view/com/profile/ProfileFollowers.tsx:178
+#: src/view/com/profile/ProfileFollowers.tsx:179
#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr ""
@@ -4411,8 +4429,8 @@ msgstr ""
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:775
+#: src/screens/Profile/ProfileFeed/index.tsx:100
+#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
msgstr ""
@@ -4429,7 +4447,7 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr ""
-#: src/screens/Bookmarks/index.tsx:285
+#: src/screens/Bookmarks/index.tsx:305
#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr ""
@@ -4438,8 +4456,8 @@ msgstr ""
msgid "Go Home"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:357
-#: src/view/com/profile/ProfileMenu.tsx:378
+#: src/view/com/profile/ProfileMenu.tsx:358
+#: src/view/com/profile/ProfileMenu.tsx:379
msgid "Go live"
msgstr ""
@@ -4450,8 +4468,8 @@ msgstr ""
msgid "Go Live"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:354
-#: src/view/com/profile/ProfileMenu.tsx:374
+#: src/view/com/profile/ProfileMenu.tsx:355
+#: src/view/com/profile/ProfileMenu.tsx:375
msgid "Go live (disabled)"
msgstr ""
@@ -4463,14 +4481,14 @@ msgstr ""
msgid "Go to {firstAuthorName}'s profile"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:91
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:71
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:80
+#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:92
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:72
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:81
#: src/screens/Moderation/index.tsx:219
msgid "Go to account settings"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:363
+#: src/screens/Messages/components/ChatListItem.tsx:364
msgid "Go to conversation with {0}"
msgstr ""
@@ -4498,8 +4516,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr ""
@@ -4515,8 +4533,8 @@ msgstr ""
msgid "Hacking or system attacks"
msgstr ""
-#: src/state/shell/progress-guide.tsx:220
-#: src/state/shell/progress-guide.tsx:230
+#: src/state/shell/progress-guide.tsx:221
+#: src/state/shell/progress-guide.tsx:231
msgid "Half way there!"
msgstr ""
@@ -4539,7 +4557,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr ""
#: src/components/FeedCard.tsx:157
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Happening now"
msgstr ""
@@ -4559,7 +4577,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:549
+#: src/Navigation.tsx:550
msgid "Hashtag"
msgstr ""
@@ -4576,15 +4594,15 @@ msgstr ""
msgid "Have a code? <0>Click here.0>"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:332
+#: src/screens/Signup/StepInfo/index.tsx:330
msgid "Have we got your location wrong? <0>Tap here to confirm your location with GPS.0>"
msgstr ""
-#: src/screens/Signup/index.tsx:220
+#: src/screens/Signup/index.tsx:231
msgid "Having trouble?"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:287
+#: src/components/contacts/screens/PhoneInput.tsx:289
msgid "Held by Bluesky for 7 days to prevent abuse, then deleted"
msgstr ""
@@ -4592,7 +4610,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr ""
@@ -4609,11 +4627,11 @@ msgstr ""
msgid "Hey there 👋"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:170
+#: src/ageAssurance/components/NoAccessScreen.tsx:167
msgid "Hey there!"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:210
+#: src/ageAssurance/components/NoAccessScreen.tsx:207
msgid "Hi there!"
msgstr ""
@@ -4622,7 +4640,7 @@ msgstr ""
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:653
+#: src/screens/VideoFeed/index.tsx:647
msgid "Hidden by your moderation settings."
msgstr ""
@@ -4630,17 +4648,17 @@ msgstr ""
msgid "Hidden list"
msgstr ""
-#: src/components/interstitials/Trending.tsx:130
+#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:773
+#: src/components/moderation/PostHider.tsx:139
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
#: src/lib/moderation/useLabelBehaviorDescription.ts:28
#: src/lib/moderation/useLabelBehaviorDescription.ts:33
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:129
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:130
msgid "Hide"
msgstr ""
@@ -4658,22 +4676,22 @@ msgstr ""
msgid "Hide customization options"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:527
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:530
msgid "Hide lists"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:613
msgid "Hide post for me"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:631
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
msgid "Hide reply for everyone"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:603
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:606
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:612
msgid "Hide reply for me"
msgstr ""
@@ -4686,21 +4704,21 @@ msgstr ""
msgid "Hide this event"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:771
msgid "Hide this post?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:771
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:806
msgid "Hide this reply?"
msgstr ""
-#: src/components/interstitials/Trending.tsx:112
+#: src/components/interstitials/Trending.tsx:115
msgid "Hide trending topics"
msgstr ""
-#: src/components/interstitials/Trending.tsx:128
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127
+#: src/components/interstitials/Trending.tsx:131
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128
msgid "Hide trending topics?"
msgstr ""
@@ -4712,13 +4730,13 @@ msgstr ""
msgid "Hide user list"
msgstr ""
-#: src/screens/Moderation/VerificationSettings.tsx:90
-#: src/screens/Moderation/VerificationSettings.tsx:99
+#: src/screens/Moderation/VerificationSettings.tsx:87
+#: src/screens/Moderation/VerificationSettings.tsx:96
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr ""
@@ -4758,11 +4776,11 @@ msgstr ""
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/Navigation.tsx:783
-#: src/Navigation.tsx:803
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/Navigation.tsx:784
+#: src/Navigation.tsx:804
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr ""
@@ -4775,7 +4793,7 @@ msgstr ""
msgid "Hosting provider"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:188
msgid "Hot"
msgstr ""
@@ -4788,7 +4806,7 @@ msgstr ""
msgid "How should we open this link?"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:276
+#: src/components/contacts/screens/PhoneInput.tsx:278
msgid "How we use your number:"
msgstr ""
@@ -4796,7 +4814,7 @@ msgstr ""
msgid "Human trafficking"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:264
+#: src/components/contacts/screens/GetContacts.tsx:266
msgid "I consent to Bluesky using my contacts for mutual friend discovery and to retain hashed data for matching until I opt out."
msgstr ""
@@ -4815,19 +4833,19 @@ msgstr ""
msgid "I understand"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:574
+#: src/components/contacts/screens/ViewMatches.tsx:577
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:351
+#: src/screens/Signup/StepInfo/index.tsx:349
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:122
+#: src/ageAssurance/components/NoAccessScreen.tsx:119
msgid "If you believe your birthdate is incorrect, please <0>contact our support team0>."
msgstr ""
@@ -4839,7 +4857,7 @@ msgstr ""
msgid "If you choose to hide all events, you can always re-enable them from <0>Settings → Content & Media0>."
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:277
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:271
msgid "If you delete this list, you won't be able to recover it."
msgstr ""
@@ -4851,7 +4869,7 @@ msgstr ""
msgid "If you need to update your email, <0>click here0>."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:759
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:762
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
@@ -4872,7 +4890,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr ""
@@ -4880,12 +4898,12 @@ msgstr ""
msgid "Image"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:64
+#: src/screens/Settings/AboutSettings.tsx:62
msgid "Image cache cleared"
msgstr ""
#. Android-only toast message which includes amount of space freed using localized number formatting
-#: src/screens/Settings/AboutSettings.tsx:50
+#: src/screens/Settings/AboutSettings.tsx:48
msgid "Image cache cleared, freed {0}"
msgstr ""
@@ -4902,10 +4920,10 @@ msgstr ""
msgid "Impersonation"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:68
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:73
-#: src/screens/Settings/FindContactsSettings.tsx:143
-#: src/screens/Settings/FindContactsSettings.tsx:148
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:75
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:80
+#: src/screens/Settings/FindContactsSettings.tsx:145
+#: src/screens/Settings/FindContactsSettings.tsx:150
msgid "Import contacts"
msgstr ""
@@ -4914,16 +4932,16 @@ msgstr ""
msgid "Import Contacts"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:31
-#: src/components/contacts/FindContactsBannerNUX.tsx:69
+#: src/components/contacts/FindContactsBannerNUX.tsx:32
+#: src/components/contacts/FindContactsBannerNUX.tsx:70
msgid "Import contacts to find your friends"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:507
+#: src/screens/Settings/FindContactsSettings.tsx:513
msgid "Imported on {0}"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:213
+#: src/ageAssurance/components/NoAccessScreen.tsx:210
msgid "In order to provide an age-appropriate experience, we need to know your birthdate. This is a one-time thing, and your data will be kept private."
msgstr ""
@@ -4931,7 +4949,7 @@ msgstr ""
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:146
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:147
msgid "In-app notifications"
msgstr ""
@@ -4984,7 +5002,7 @@ msgstr ""
msgid "Input the code which has been emailed to you"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:135
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:137
msgid "Interaction limited"
msgstr ""
@@ -5013,13 +5031,13 @@ msgstr ""
msgid "Invalid handle. Please try a different one."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:391
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395
msgctxt "toast"
msgid "Invalid interaction settings."
msgstr ""
#: src/components/contacts/phone-number.ts:33
-#: src/components/contacts/screens/PhoneInput.tsx:139
+#: src/components/contacts/screens/PhoneInput.tsx:141
msgid "Invalid phone number"
msgstr ""
@@ -5031,19 +5049,19 @@ msgstr ""
msgid "Invalid Verification Code"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:583
+#: src/components/contacts/screens/ViewMatches.tsx:586
msgid "Invite"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:563
+#: src/components/contacts/screens/ViewMatches.tsx:566
msgid "Invite {name} to join Bluesky"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:195
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Invite code"
msgstr ""
-#: src/screens/Signup/state.ts:342
+#: src/screens/Signup/state.ts:346
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr ""
@@ -5052,11 +5070,11 @@ msgstr ""
msgid "Invite Friends"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:298
+#: src/components/contacts/screens/ViewMatches.tsx:300
msgid "Invite friends <0/>"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:81
+#: src/components/StarterPack/ShareDialog.tsx:82
msgid "Invite people to this starter pack!"
msgstr ""
@@ -5068,8 +5086,8 @@ msgstr ""
msgid "Invites, but personal"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:365
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:92
+#: src/ageAssurance/components/NoAccessScreen.tsx:363
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:94
msgid "Is your location not accurate? <0>Tap here to confirm your location.0>"
msgstr ""
@@ -5077,19 +5095,19 @@ msgstr ""
msgid "It looks like some of your contacts have not tried to find you here yet. You can personally invite them by customizing a draft message we will provide."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:384
+#: src/screens/Signup/StepInfo/index.tsx:382
msgid "It's correct"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:491
+#: src/screens/StarterPack/Wizard/index.tsx:492
msgid "It's just <0>{0} 0>right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:486
+#: src/screens/StarterPack/Wizard/index.tsx:487
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1834
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr ""
@@ -5098,10 +5116,10 @@ msgstr ""
msgid "Jobs"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:209
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
-#: src/screens/StarterPack/StarterPackScreen.tsx:464
-#: src/screens/StarterPack/StarterPackScreen.tsx:475
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:216
+#: src/screens/StarterPack/StarterPackScreen.tsx:468
+#: src/screens/StarterPack/StarterPackScreen.tsx:479
msgid "Join Bluesky"
msgstr ""
@@ -5122,20 +5140,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr ""
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr ""
@@ -5151,7 +5169,7 @@ msgstr ""
msgid "Labels on your content"
msgstr ""
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:221
msgid "Language Settings"
msgstr ""
@@ -5165,13 +5183,13 @@ msgstr ""
msgid "Larger"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:348
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:193
+#: src/ageAssurance/components/NoAccessScreen.tsx:346
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:195
msgid "Last initiated {timeAgo} ago"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:346
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:191
+#: src/ageAssurance/components/NoAccessScreen.tsx:344
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:193
msgid "Last initiated just now"
msgstr ""
@@ -5181,9 +5199,9 @@ msgstr ""
msgid "Latest"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:170
-#: src/components/verification/VerifierDialog.tsx:138
-#: src/screens/Moderation/VerificationSettings.tsx:48
+#: src/components/verification/VerificationsDialog.tsx:167
+#: src/components/verification/VerifierDialog.tsx:135
+#: src/screens/Moderation/VerificationSettings.tsx:49
#: src/screens/Profile/Header/EditProfileDialog.tsx:349
#: src/screens/Settings/components/ChangeHandleDialog.tsx:213
#: src/screens/Settings/components/ChangeHandleDialog.tsx:277
@@ -5195,7 +5213,7 @@ msgstr ""
msgid "Learn More"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:65
+#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66
msgid "Learn more about age assurance"
msgstr ""
@@ -5207,9 +5225,9 @@ msgstr ""
msgid "Learn more about how inviting friends works"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:300
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:45
-#: src/screens/Settings/FindContactsSettings.tsx:130
+#: src/components/contacts/screens/PhoneInput.tsx:302
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:52
+#: src/screens/Settings/FindContactsSettings.tsx:132
msgctxt "english-only-resource"
msgid "Learn more about importing contacts"
msgstr ""
@@ -5218,8 +5236,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr ""
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr ""
@@ -5231,13 +5249,13 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:151
-#: src/components/verification/VerifierDialog.tsx:119
+#: src/components/verification/VerificationsDialog.tsx:152
+#: src/components/verification/VerifierDialog.tsx:120
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -5247,16 +5265,16 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:88
+#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89
msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr ""
@@ -5286,16 +5304,16 @@ msgstr ""
msgid "left to go."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr ""
-#: src/screens/Login/index.tsx:168
-#: src/screens/Login/index.tsx:183
+#: src/screens/Login/index.tsx:169
+#: src/screens/Login/index.tsx:184
msgid "Let's get your password reset!"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:330
+#: src/screens/Onboarding/StepFinished/index.tsx:333
msgid "Let's go!"
msgstr ""
@@ -5310,12 +5328,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:517
msgid "Like"
msgstr ""
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:286
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5323,25 +5341,25 @@ msgstr ""
msgid "Like 10 posts"
msgstr ""
-#: src/state/shell/progress-guide.tsx:216
-#: src/state/shell/progress-guide.tsx:221
+#: src/state/shell/progress-guide.tsx:217
+#: src/state/shell/progress-guide.tsx:222
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/Navigation.tsx:462
+#: src/Navigation.tsx:463
msgid "Like notifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:502
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:504
msgid "Like this feed"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:146
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:147
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:298
-#: src/Navigation.tsx:303
+#: src/Navigation.tsx:299
+#: src/Navigation.tsx:304
msgid "Liked by"
msgstr ""
@@ -5357,39 +5375,39 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:490
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:166
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:180
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:492
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:167
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:126
+#: src/lib/hooks/useNotificationHandler.ts:129
#: src/screens/Settings/NotificationSettings/index.tsx:126
#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:168
+#: src/lib/hooks/useNotificationHandler.ts:171
#: src/screens/Settings/NotificationSettings/index.tsx:207
#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:486
+#: src/Navigation.tsx:487
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:482
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:47
-#: src/screens/PostThread/components/HeaderDropdown.tsx:52
+#: src/screens/PostThread/components/HeaderDropdown.tsx:48
+#: src/screens/PostThread/components/HeaderDropdown.tsx:53
msgid "Linear"
msgstr ""
-#: src/Navigation.tsx:253
+#: src/Navigation.tsx:254
msgid "List"
msgstr ""
@@ -5397,7 +5415,7 @@ msgstr ""
msgid "List avatar"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:50
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:47
msgctxt "toast"
msgid "List blocked"
msgstr ""
@@ -5419,7 +5437,7 @@ msgstr ""
msgid "List creator"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:90
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:92
msgctxt "toast"
msgid "List deleted"
msgstr ""
@@ -5444,7 +5462,7 @@ msgstr ""
msgid "List must have a name."
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:31
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:32
msgctxt "toast"
msgid "List muted"
msgstr ""
@@ -5457,24 +5475,24 @@ msgstr ""
msgid "List name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:116
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:131
+#: src/screens/ProfileList/components/Header.tsx:114
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:129
msgctxt "toast"
msgid "List unblocked"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:98
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:113
+#: src/screens/ProfileList/components/Header.tsx:100
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:115
msgctxt "toast"
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:175
#: src/view/screens/Lists.tsx:67
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr ""
@@ -5491,20 +5509,30 @@ msgstr ""
msgid "LIVE"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:52
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:52
+#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:53
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:53
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:235
+#: src/components/live/LiveStatusDialog.tsx:228
msgid "Live feature is in beta"
msgstr ""
@@ -5515,31 +5543,31 @@ msgstr ""
msgid "Live link"
msgstr ""
-#: src/screens/Search/Explore.tsx:84
+#: src/screens/Search/Explore.tsx:83
msgid "Load more"
msgstr ""
-#: src/screens/Search/Explore.tsx:506
-#: src/screens/Search/Explore.tsx:583
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr ""
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
-#: src/view/com/feeds/FeedPage.tsx:169
+#: src/view/com/feeds/FeedPage.tsx:170
msgid "Load new posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:569
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:572
msgid "Loading lists..."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:273
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:276
msgid "Loading post interaction settings..."
msgstr ""
@@ -5547,7 +5575,7 @@ msgstr ""
msgid "Loading..."
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:324
msgid "Log"
msgstr ""
@@ -5564,7 +5592,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr ""
@@ -5638,22 +5666,31 @@ msgstr ""
msgid "Media"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
-#: src/Navigation.tsx:446
+#: src/Navigation.tsx:447
msgid "Mention notifications"
msgstr ""
-#: src/components/WhoCanReply.tsx:318
+#: src/components/WhoCanReply.tsx:319
msgid "mentioned users"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:147
+#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr ""
@@ -5661,20 +5698,20 @@ msgstr ""
msgid "Menu"
msgstr ""
-#: src/components/dms/MessageProfileButton.tsx:97
+#: src/components/dms/MessageProfileButton.tsx:98
msgid "Message {0}"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/MessageContextMenu.tsx:76
msgctxt "toast"
msgid "Message deleted"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:199
+#: src/screens/Messages/components/ChatListItem.tsx:200
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:127
+#: src/components/dms/MessageContextMenu.tsx:124
msgid "Message from @{0}: {1}"
msgstr ""
@@ -5691,11 +5728,11 @@ msgstr ""
msgid "Message is too long"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:125
+#: src/components/dms/MessageContextMenu.tsx:122
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:798
+#: src/Navigation.tsx:799
msgid "Messages"
msgstr ""
@@ -5708,7 +5745,7 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:510
+#: src/Navigation.tsx:511
msgid "Miscellaneous notifications"
msgstr ""
@@ -5716,7 +5753,11 @@ msgstr ""
msgid "Misleading"
msgstr ""
-#: src/Navigation.tsx:179
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
+#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
#: src/screens/Settings/Settings.tsx:195
@@ -5755,7 +5796,7 @@ msgstr ""
msgid "Moderation lists"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:185
#: src/view/screens/ModerationModlists.tsx:67
msgid "Moderation Lists"
msgstr ""
@@ -5764,7 +5805,7 @@ msgstr ""
msgid "moderation settings"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:314
msgid "Moderation states"
msgstr ""
@@ -5777,8 +5818,8 @@ msgstr ""
msgid "Moderator has chosen to set a general warning on the content."
msgstr ""
-#: src/view/shell/desktop/Feeds.tsx:109
-#: src/view/shell/desktop/Feeds.tsx:156
+#: src/view/shell/desktop/Feeds.tsx:106
+#: src/view/shell/desktop/Feeds.tsx:153
msgid "More feeds"
msgstr ""
@@ -5787,9 +5828,10 @@ msgstr ""
msgid "More languages..."
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:149
-#: src/view/com/profile/ProfileMenu.tsx:241
-#: src/view/com/profile/ProfileMenu.tsx:248
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
+#: src/view/com/profile/ProfileMenu.tsx:242
+#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
msgstr ""
@@ -5820,15 +5862,15 @@ msgstr ""
msgid "Mute {tag}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
-#: src/view/com/profile/ProfileMenu.tsx:435
-#: src/view/com/profile/ProfileMenu.tsx:442
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:689
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:695
+#: src/view/com/profile/ProfileMenu.tsx:436
+#: src/view/com/profile/ProfileMenu.tsx:443
msgid "Mute account"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:89
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:92
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:82
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:85
msgid "Mute accounts"
msgstr ""
@@ -5841,11 +5883,11 @@ msgstr ""
msgid "Mute in:"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:115
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:108
msgid "Mute list"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:110
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:103
msgid "Mute these accounts?"
msgstr ""
@@ -5873,13 +5915,13 @@ msgstr ""
msgid "Mute this word until you unmute it"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:574
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:577
msgid "Mute thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:584
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:586
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:589
msgid "Mute words & tags"
msgstr ""
@@ -5887,7 +5929,7 @@ msgstr ""
msgid "Muted accounts"
msgstr ""
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:190
#: src/view/screens/ModerationMutedAccounts.tsx:116
msgid "Muted Accounts"
msgstr ""
@@ -5904,7 +5946,7 @@ msgstr ""
msgid "Muted words & tags"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:112
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:105
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr ""
@@ -5939,12 +5981,12 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr ""
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:333
-#: src/components/moderation/ReportDialog/index.tsx:350
+#: src/components/moderation/ReportDialog/index.tsx:327
+#: src/components/moderation/ReportDialog/index.tsx:344
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -5952,8 +5994,8 @@ msgstr ""
msgid "Nevermind, create a handle for me"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196
-#: src/view/com/profile/ProfileMenu.tsx:390
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:193
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "New"
msgstr ""
@@ -5971,7 +6013,7 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/components/dms/dialogs/NewChatDialog.tsx:68
#: src/screens/Messages/ChatList.tsx:403
#: src/screens/Messages/ChatList.tsx:410
msgid "New chat"
@@ -5983,15 +6025,15 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:478
+#: src/Navigation.tsx:479
msgid "New follower notifications"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:161
+#: src/lib/hooks/useNotificationHandler.ts:164
#: src/screens/Settings/NotificationSettings/index.tsx:137
#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
msgid "New followers"
@@ -6018,16 +6060,16 @@ msgstr ""
msgid "New password"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr ""
-#: src/view/com/feeds/FeedPage.tsx:180
+#: src/view/com/feeds/FeedPage.tsx:181
msgctxt "action"
msgid "New post"
msgstr ""
@@ -6053,39 +6095,39 @@ msgstr ""
msgid "New user info dialog"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:93
-#: src/screens/PostThread/components/HeaderDropdown.tsx:98
+#: src/screens/PostThread/components/HeaderDropdown.tsx:94
+#: src/screens/PostThread/components/HeaderDropdown.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:72
#: src/screens/Settings/ThreadPreferences.tsx:75
msgid "Newest replies first"
msgstr ""
#: src/lib/interests.ts:67
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:238
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "News"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:392
-#: src/components/contacts/screens/ViewMatches.tsx:407
+#: src/components/contacts/screens/ViewMatches.tsx:394
+#: src/components/contacts/screens/ViewMatches.tsx:409
#: src/screens/Login/ForgotPasswordForm.tsx:137
#: src/screens/Login/ForgotPasswordForm.tsx:143
#: src/screens/Login/LoginForm.tsx:346
#: src/screens/Login/LoginForm.tsx:353
#: src/screens/Login/SetNewPasswordForm.tsx:182
#: src/screens/Login/SetNewPasswordForm.tsx:188
-#: src/screens/Onboarding/StepFinished/index.tsx:323
-#: src/screens/Onboarding/StepFinished/index.tsx:332
+#: src/screens/Onboarding/StepFinished/index.tsx:326
+#: src/screens/Onboarding/StepFinished/index.tsx:335
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165
#: src/screens/Signup/BackNextButtons.tsx:67
-#: src/screens/StarterPack/Wizard/index.tsx:210
-#: src/screens/StarterPack/Wizard/index.tsx:214
-#: src/screens/StarterPack/Wizard/index.tsx:392
-#: src/screens/StarterPack/Wizard/index.tsx:399
+#: src/screens/StarterPack/Wizard/index.tsx:211
+#: src/screens/StarterPack/Wizard/index.tsx:215
+#: src/screens/StarterPack/Wizard/index.tsx:393
+#: src/screens/StarterPack/Wizard/index.tsx:400
msgid "Next"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr ""
@@ -6097,11 +6139,11 @@ msgstr ""
msgid "No app passwords yet"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:677
+#: src/components/contacts/screens/ViewMatches.tsx:680
msgid "No contacts found"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:655
+#: src/components/contacts/screens/ViewMatches.tsx:658
msgid "No contacts with the name “{query}” found"
msgstr ""
@@ -6114,6 +6156,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr ""
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6126,7 +6172,7 @@ msgstr ""
msgid "No feeds found. Try searching for something else."
msgstr ""
-#: src/view/com/profile/ProfileFollowers.tsx:171
+#: src/view/com/profile/ProfileFollowers.tsx:169
msgid "No followers yet"
msgstr ""
@@ -6136,7 +6182,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr ""
@@ -6150,11 +6196,11 @@ msgstr ""
msgid "No longer following {0}"
msgstr ""
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:141
+#: src/screens/Messages/components/ChatListItem.tsx:142
msgid "No messages yet"
msgstr ""
@@ -6162,7 +6208,7 @@ msgstr ""
msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you."
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:559
+#: src/components/contacts/screens/ViewMatches.tsx:562
msgid "No name"
msgstr ""
@@ -6178,7 +6224,7 @@ msgstr ""
msgid "No one"
msgstr ""
-#: src/components/WhoCanReply.tsx:301
+#: src/components/WhoCanReply.tsx:302
msgid "No one but the author can quote this post."
msgstr ""
@@ -6195,7 +6241,7 @@ msgstr ""
msgid "No quotes yet"
msgstr ""
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,11 +6255,11 @@ msgid "No result"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:229
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr ""
-#: src/screens/Search/Explore.tsx:800
+#: src/screens/Search/Explore.tsx:789
msgid "No results for \"{0}\"."
msgstr ""
@@ -6230,7 +6276,7 @@ msgstr ""
msgid "No results found for \"<0>{query}0>\"."
msgstr ""
-#: src/screens/Search/Explore.tsx:804
+#: src/screens/Search/Explore.tsx:793
msgid "No results."
msgstr ""
@@ -6238,7 +6284,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr ""
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,11 +6293,11 @@ msgstr ""
msgid "No thanks"
msgstr ""
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:465
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:468
msgid "Nobody"
msgstr ""
@@ -6285,7 +6331,7 @@ msgid "None"
msgstr ""
#: src/screens/FindContactsFlowScreen.tsx:70
-#: src/screens/Settings/FindContactsSettings.tsx:101
+#: src/screens/Settings/FindContactsSettings.tsx:103
msgid "Not available on this platform."
msgstr ""
@@ -6293,12 +6339,12 @@ msgstr ""
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:169
+#: src/Navigation.tsx:170
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:557
+#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr ""
@@ -6306,7 +6352,7 @@ msgstr ""
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134
msgid "Note: This post is only visible to logged-in users."
msgstr ""
@@ -6315,13 +6361,13 @@ msgid "Nothing here"
msgstr ""
#: src/screens/Bookmarks/components/EmptyState.tsx:35
-#: src/screens/Bookmarks/index.tsx:281
+#: src/screens/Bookmarks/index.tsx:301
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:432
-#: src/Navigation.tsx:579
-#: src/view/screens/Notifications.tsx:136
+#: src/Navigation.tsx:433
+#: src/Navigation.tsx:580
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr ""
@@ -6333,8 +6379,8 @@ msgstr ""
msgid "Notification Sounds"
msgstr ""
-#: src/Navigation.tsx:574
-#: src/Navigation.tsx:793
+#: src/Navigation.tsx:575
+#: src/Navigation.tsx:794
#: src/screens/Notifications/ActivityList.tsx:30
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90
#: src/screens/Settings/NotificationSettings/index.tsx:92
@@ -6349,10 +6395,10 @@ msgstr ""
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr ""
@@ -6368,8 +6414,8 @@ msgstr ""
msgid "Now"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr ""
@@ -6389,8 +6435,8 @@ msgid "Oh no!"
msgstr ""
#. Confirm button text.
-#: src/components/contacts/screens/GetContacts.tsx:314
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:222
+#: src/components/contacts/screens/GetContacts.tsx:316
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6402,8 +6448,8 @@ msgstr ""
msgid "Okay"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:83
-#: src/screens/PostThread/components/HeaderDropdown.tsx:88
+#: src/screens/PostThread/components/HeaderDropdown.tsx:84
+#: src/screens/PostThread/components/HeaderDropdown.tsx:89
#: src/screens/Settings/ThreadPreferences.tsx:64
#: src/screens/Settings/ThreadPreferences.tsx:67
msgid "Oldest replies first"
@@ -6417,11 +6463,11 @@ msgstr ""
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:398
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:395
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr ""
@@ -6433,7 +6479,7 @@ msgstr ""
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:405
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr ""
@@ -6441,7 +6487,7 @@ msgstr ""
msgid "Only .jpg and .png files are supported"
msgstr ""
-#: src/components/WhoCanReply.tsx:281
+#: src/components/WhoCanReply.tsx:282
msgid "Only {0} can reply."
msgstr ""
@@ -6464,8 +6510,8 @@ msgid "Oops, something went wrong!"
msgstr ""
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,30 +6522,34 @@ msgstr ""
msgid "Open avatar creator"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:198
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:373
-#: src/screens/Messages/components/ChatListItem.tsx:377
+#: src/screens/Messages/components/ChatListItem.tsx:374
+#: src/screens/Messages/components/ChatListItem.tsx:378
msgid "Open conversation options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1481
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:292
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:297
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
msgid "Open feed options menu"
msgstr ""
@@ -6531,16 +6581,16 @@ msgstr ""
msgid "Open post options menu"
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:205
-#: src/components/live/LiveStatusDialog.tsx:219
+#: src/components/live/LiveStatusDialog.tsx:202
+#: src/components/live/LiveStatusDialog.tsx:212
msgid "Open profile"
msgstr ""
-#: src/components/PostControls/ShareMenu/index.tsx:100
+#: src/components/PostControls/ShareMenu/index.tsx:98
msgid "Open share menu"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:568
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
msgid "Open starter pack menu"
msgstr ""
@@ -6553,15 +6603,15 @@ msgstr ""
msgid "Open system log"
msgstr ""
-#: src/view/shell/desktop/Feeds.tsx:188
+#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:153
msgid "Opens a dialog to choose who can interact with this post"
msgstr ""
@@ -6589,7 +6639,7 @@ msgstr ""
msgid "Opens composer"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:199
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
@@ -6598,21 +6648,21 @@ msgstr ""
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1482
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/view/com/composer/photos/SelectGifBtn.tsx:36
+#: src/view/com/composer/photos/SelectGifBtn.tsx:37
msgid "Opens GIF select dialog"
msgstr ""
@@ -6620,7 +6670,7 @@ msgstr ""
msgid "Opens helpdesk in browser"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:221
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6628,7 +6678,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:581
+#: src/view/com/util/UserAvatar.tsx:579
msgid "Opens live status dialog"
msgstr ""
@@ -6640,12 +6690,16 @@ msgstr ""
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:144
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
msgstr ""
@@ -6679,7 +6733,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr ""
@@ -6741,7 +6795,7 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:229
#: src/screens/Settings/AccountSettings.tsx:121
#: src/screens/Settings/AccountSettings.tsx:125
-#: src/screens/Signup/StepInfo/index.tsx:260
+#: src/screens/Signup/StepInfo/index.tsx:258
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -6755,7 +6809,7 @@ msgstr ""
msgid "Password must be at least 8 characters long."
msgstr ""
-#: src/screens/Login/index.tsx:195
+#: src/screens/Login/index.tsx:196
msgid "Password updated"
msgstr ""
@@ -6775,28 +6829,28 @@ msgstr ""
#: src/screens/ProfileList/index.tsx:166
#: src/screens/Search/SearchResults.tsx:72
-#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/screens/StarterPack/StarterPackScreen.tsx:192
msgid "People"
msgstr ""
-#: src/Navigation.tsx:240
+#: src/Navigation.tsx:241
msgid "People followed by @{0}"
msgstr ""
-#: src/Navigation.tsx:233
+#: src/Navigation.tsx:234
msgid "People following @{0}"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:181
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:191
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:192
msgid "People I follow"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:504
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:507
msgid "People you follow"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:518
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:521
msgid "People you mention"
msgstr ""
@@ -6816,12 +6870,12 @@ msgstr ""
msgid "Pets"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:189
-#: src/components/contacts/screens/PhoneInput.tsx:201
+#: src/components/contacts/screens/PhoneInput.tsx:191
+#: src/components/contacts/screens/PhoneInput.tsx:203
msgid "Phone number"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:301
+#: src/components/contacts/screens/VerifyNumber.tsx:303
msgid "Phone number verified"
msgstr ""
@@ -6829,12 +6883,12 @@ msgstr ""
msgid "Photography"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:527
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:529
#: src/screens/SavedFeeds.tsx:351
msgid "Pin feed"
msgstr ""
@@ -6843,17 +6897,17 @@ msgstr ""
msgid "Pin Feed"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:156
-#: src/screens/ProfileList/components/Header.tsx:163
+#: src/screens/ProfileList/components/Header.tsx:150
+#: src/screens/ProfileList/components/Header.tsx:157
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:338
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:339
msgid "Pin to Home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:478
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
msgid "Pin to your profile"
msgstr ""
@@ -6861,8 +6915,8 @@ msgstr ""
msgid "Pinned"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:161
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:175
msgid "Pinned {0} to Home"
msgstr ""
@@ -6870,7 +6924,7 @@ msgstr ""
msgid "Pinned Feeds"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:74
+#: src/screens/ProfileList/components/Header.tsx:76
msgid "Pinned to your feeds"
msgstr ""
@@ -6909,7 +6963,7 @@ msgstr ""
msgid "Plays the video"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -6917,12 +6971,12 @@ msgstr ""
msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive."
msgstr ""
-#: src/screens/Signup/state.ts:289
+#: src/screens/Signup/state.ts:293
msgid "Please choose your handle."
msgstr ""
-#: src/screens/Signup/state.ts:281
-#: src/screens/Signup/StepInfo/index.tsx:151
+#: src/screens/Signup/state.ts:285
+#: src/screens/Signup/StepInfo/index.tsx:153
msgid "Please choose your password."
msgstr ""
@@ -6930,12 +6984,12 @@ msgstr ""
msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
msgstr ""
-#: src/screens/Signup/state.ts:304
+#: src/screens/Signup/state.ts:308
msgid "Please complete the verification captcha."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101
-#: src/screens/Signup/StepInfo/index.tsx:140
+#: src/screens/Signup/StepInfo/index.tsx:142
msgid "Please double-check that you have entered your email address correctly."
msgstr ""
@@ -6982,12 +7036,12 @@ msgstr ""
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
-#: src/screens/Signup/state.ts:265
-#: src/screens/Signup/StepInfo/index.tsx:122
+#: src/screens/Signup/state.ts:269
+#: src/screens/Signup/StepInfo/index.tsx:124
msgid "Please enter your email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:115
+#: src/screens/Signup/StepInfo/index.tsx:117
msgid "Please enter your invite code."
msgstr ""
@@ -7024,7 +7078,7 @@ msgstr ""
msgid "Please go back, or activate this element to return to the start of the active content."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:97
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:99
msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status."
msgstr ""
@@ -7040,12 +7094,12 @@ msgstr ""
msgid "Please select a reason for this report"
msgstr ""
-#: src/lib/hooks/useAccountSwitcher.ts:45
-#: src/lib/hooks/useAccountSwitcher.ts:55
+#: src/lib/hooks/useAccountSwitcher.ts:46
+#: src/lib/hooks/useAccountSwitcher.ts:56
msgid "Please sign in as @{0}"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:102
+#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Please use the native app to import your contacts."
msgstr ""
@@ -7062,35 +7116,35 @@ msgid "Please write your message below:"
msgstr ""
#: src/lib/interests.ts:70
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:232
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229
msgid "Politics"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr ""
-#: src/screens/PostThread/index.tsx:531
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr ""
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr ""
@@ -7099,14 +7153,14 @@ msgstr ""
msgid "Post blocked"
msgstr ""
-#: src/Navigation.tsx:266
-#: src/Navigation.tsx:273
-#: src/Navigation.tsx:280
-#: src/Navigation.tsx:287
+#: src/Navigation.tsx:267
+#: src/Navigation.tsx:274
+#: src/Navigation.tsx:281
+#: src/Navigation.tsx:288
msgid "Post by @{0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:194
msgctxt "toast"
msgid "Post deleted"
msgstr ""
@@ -7118,7 +7172,7 @@ msgstr ""
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:134
#: src/screens/PostThread/components/ThreadItemPost.tsx:112
#: src/screens/PostThread/components/ThreadItemTreePost.tsx:108
-#: src/screens/VideoFeed/index.tsx:557
+#: src/screens/VideoFeed/index.tsx:551
msgid "Post has been deleted"
msgstr ""
@@ -7132,11 +7186,11 @@ msgstr ""
msgid "Post Hidden by You"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:679
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:682
msgid "Post interaction settings"
msgstr ""
-#: src/Navigation.tsx:200
+#: src/Navigation.tsx:201
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr ""
@@ -7156,7 +7210,7 @@ msgctxt "toast"
msgid "Post pinned"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:66
+#: src/components/PostControls/BookmarkButton.tsx:67
msgid "Post saved"
msgstr ""
@@ -7169,7 +7223,7 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262
#: src/screens/ProfileList/index.tsx:166
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216
-#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/screens/StarterPack/StarterPackScreen.tsx:194
#: src/view/screens/Profile.tsx:234
msgid "Posts"
msgstr ""
@@ -7213,11 +7267,11 @@ msgstr ""
msgid "Press to view followers of this account that you also follow"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:118
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:119
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr ""
@@ -7239,8 +7293,8 @@ msgstr ""
msgid "Privacy and security"
msgstr ""
-#: src/Navigation.tsx:409
-#: src/Navigation.tsx:417
+#: src/Navigation.tsx:410
+#: src/Navigation.tsx:418
#: src/screens/Settings/ActivityPrivacySettings.tsx:40
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:44
msgid "Privacy and Security"
@@ -7253,12 +7307,12 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102
-#: src/Navigation.tsx:333
-#: src/screens/Settings/AboutSettings.tsx:92
-#: src/screens/Settings/AboutSettings.tsx:95
+#: src/Navigation.tsx:334
+#: src/screens/Settings/AboutSettings.tsx:90
+#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr ""
@@ -7266,7 +7320,7 @@ msgstr ""
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1897
+#: src/view/com/composer/Composer.tsx:2301
msgid "Processing video..."
msgstr ""
@@ -7280,10 +7334,10 @@ msgstr ""
msgid "profile"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr ""
@@ -7296,7 +7350,7 @@ msgstr ""
msgid "Promoting or selling prohibited items or services"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:160
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:162
msgid "Psst! You can edit who can interact with this post."
msgstr ""
@@ -7305,22 +7359,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr ""
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1101
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1094
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1079
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1086
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7328,7 +7382,7 @@ msgstr ""
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:129
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:130
msgid "Push notifications"
msgstr ""
@@ -7340,19 +7394,19 @@ msgstr ""
msgid "Push, People you follow"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:137
+#: src/components/StarterPack/QrCodeDialog.tsx:139
msgid "QR code copied to your clipboard!"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:115
+#: src/components/StarterPack/QrCodeDialog.tsx:117
msgid "QR code has been downloaded!"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:116
+#: src/components/StarterPack/QrCodeDialog.tsx:118
msgid "QR code saved to your camera roll!"
msgstr ""
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:455
msgid "Quote notifications"
msgstr ""
@@ -7360,14 +7414,15 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:340
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
msgid "Quote post was re-attached"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:343
msgid "Quote post was successfully detached"
msgstr ""
@@ -7378,14 +7433,14 @@ msgstr ""
msgid "Quote posts disabled"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:154
+#: src/lib/hooks/useNotificationHandler.ts:157
#: src/screens/Post/PostQuotes.tsx:41
#: src/screens/Settings/NotificationSettings/index.tsx:170
#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
msgid "Quotes"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr ""
@@ -7393,12 +7448,12 @@ msgstr ""
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:106
+#: src/components/contacts/screens/PhoneInput.tsx:108
msgid "Rate limit exceeded. Please try again later."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:646
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:656
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659
msgid "Re-attach quote"
msgstr ""
@@ -7419,16 +7474,16 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:159
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:170
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:996
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:996
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr ""
@@ -7454,11 +7509,11 @@ msgstr ""
msgid "Read the Bluesky Terms of Service"
msgstr ""
-#: src/components/WelcomeModal.tsx:146
+#: src/components/WelcomeModal.tsx:148
msgid "Real conversations."
msgstr ""
-#: src/components/WelcomeModal.tsx:144
+#: src/components/WelcomeModal.tsx:146
msgid "Real people."
msgstr ""
@@ -7467,11 +7522,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:135
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:136
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:119
msgid "Receive push notifications"
msgstr ""
@@ -7483,7 +7538,7 @@ msgstr ""
msgid "Recently used"
msgstr ""
-#: src/screens/Search/modules/ExploreRecommendations.tsx:54
+#: src/screens/Search/modules/ExploreRecommendations.tsx:55
msgid "Recommended"
msgstr ""
@@ -7507,12 +7562,12 @@ msgstr ""
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:443
-#: src/components/dialogs/StarterPackDialog.tsx:374
-#: src/components/dialogs/StarterPackDialog.tsx:380
+#: src/components/dialogs/StarterPackDialog.tsx:375
+#: src/components/dialogs/StarterPackDialog.tsx:381
#: src/components/FeedCard.tsx:375
#: src/components/StarterPack/Wizard/WizardListCard.tsx:105
#: src/components/StarterPack/Wizard/WizardListCard.tsx:112
-#: src/screens/Bookmarks/index.tsx:266
+#: src/screens/Bookmarks/index.tsx:267
#: src/screens/Settings/Settings.tsx:682
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:220
@@ -7532,8 +7587,8 @@ msgstr ""
msgid "Remove account"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:548
-#: src/screens/Settings/FindContactsSettings.tsx:556
+#: src/screens/Settings/FindContactsSettings.tsx:554
+#: src/screens/Settings/FindContactsSettings.tsx:562
msgid "Remove all contacts"
msgstr ""
@@ -7541,8 +7596,8 @@ msgstr ""
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:498
-#: src/view/com/util/UserAvatar.tsx:501
+#: src/view/com/util/UserAvatar.tsx:499
+#: src/view/com/util/UserAvatar.tsx:502
msgid "Remove Avatar"
msgstr ""
@@ -7565,10 +7620,10 @@ msgstr ""
msgid "Remove feed?"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:181
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:184
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:175
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:178
#: src/screens/SavedFeeds.tsx:340
msgid "Remove from my feeds"
msgstr ""
@@ -7582,8 +7637,8 @@ msgstr ""
msgid "Remove from saved feeds"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:140
-#: src/screens/Bookmarks/index.tsx:260
+#: src/components/PostControls/BookmarkButton.tsx:141
+#: src/screens/Bookmarks/index.tsx:261
msgid "Remove from saved posts"
msgstr ""
@@ -7617,8 +7672,8 @@ msgstr ""
msgid "Remove subtitle file"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:497
-#: src/screens/Settings/FindContactsSettings.tsx:323
+#: src/components/contacts/screens/ViewMatches.tsx:499
+#: src/screens/Settings/FindContactsSettings.tsx:327
msgid "Remove suggestion"
msgstr ""
@@ -7631,9 +7686,9 @@ msgid "Remove user from list"
msgstr ""
#: src/components/verification/VerificationRemovePrompt.tsx:46
-#: src/components/verification/VerificationsDialog.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:408
-#: src/view/com/profile/ProfileMenu.tsx:411
+#: src/components/verification/VerificationsDialog.tsx:249
+#: src/view/com/profile/ProfileMenu.tsx:409
+#: src/view/com/profile/ProfileMenu.tsx:412
msgid "Remove verification"
msgstr ""
@@ -7658,17 +7713,17 @@ msgstr ""
msgid "Removed from saved feeds"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:106
-#: src/screens/Bookmarks/index.tsx:218
+#: src/components/PostControls/BookmarkButton.tsx:107
+#: src/screens/Bookmarks/index.tsx:219
msgid "Removed from saved posts"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:277
+#: src/components/dialogs/StarterPackDialog.tsx:278
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:74
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:123
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:76
#: src/view/com/posts/FeedShutdownMsg.tsx:44
msgid "Removed from your feeds"
msgstr ""
@@ -7704,7 +7759,7 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279
-#: src/lib/hooks/useNotificationHandler.ts:140
+#: src/lib/hooks/useNotificationHandler.ts:143
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218
#: src/screens/Settings/NotificationSettings/index.tsx:148
#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
@@ -7712,21 +7767,21 @@ msgstr ""
msgid "Replies"
msgstr ""
-#: src/components/WhoCanReply.tsx:85
+#: src/components/WhoCanReply.tsx:86
msgid "Replies disabled"
msgstr ""
-#: src/components/WhoCanReply.tsx:279
+#: src/components/WhoCanReply.tsx:280
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1117
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:240
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -7740,36 +7795,36 @@ msgstr ""
msgid "Reply Hidden by You"
msgstr ""
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:439
msgid "Reply notifications"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:412
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:415
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:69
+#: src/screens/PostThread/components/HeaderDropdown.tsx:70
msgid "Reply sorting"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:381
msgctxt "toast"
msgid "Reply visibility updated"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:376
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380
msgid "Reply was successfully hidden"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:168
+#: src/components/dms/MessageContextMenu.tsx:165
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
-#: src/components/live/LiveStatusDialog.tsx:257
+#: src/components/live/LiveStatusDialog.tsx:250
msgid "Report"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:475
-#: src/view/com/profile/ProfileMenu.tsx:478
+#: src/view/com/profile/ProfileMenu.tsx:476
+#: src/view/com/profile/ProfileMenu.tsx:479
msgid "Report account"
msgstr ""
@@ -7782,31 +7837,31 @@ msgid "Report conversation"
msgstr ""
#: src/components/moderation/ReportDialog/index.tsx:90
-#: src/components/moderation/ReportDialog/index.tsx:253
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:543
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:549
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:545
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:551
msgid "Report feed"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:215
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:218
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:209
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:212
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:166
+#: src/components/dms/MessageContextMenu.tsx:163
msgid "Report message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:712
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:714
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:715
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Report post"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:632
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
+#: src/screens/StarterPack/StarterPackScreen.tsx:640
msgid "Report starter pack"
msgstr ""
@@ -7827,7 +7882,7 @@ msgstr ""
msgid "Report this list"
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:240
+#: src/components/live/LiveStatusDialog.tsx:233
#: src/components/moderation/ReportDialog/copy.ts:19
msgid "Report this livestream"
msgstr ""
@@ -7861,14 +7916,14 @@ msgstr ""
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:470
+#: src/Navigation.tsx:471
msgid "Repost notifications"
msgstr ""
#: src/components/PostControls/RepostButton.tsx:145
#: src/components/PostControls/RepostButton.web.tsx:44
#: src/components/PostControls/RepostButton.web.tsx:104
-#: src/screens/StarterPack/StarterPackScreen.tsx:563
+#: src/screens/StarterPack/StarterPackScreen.tsx:568
msgid "Repost or quote post"
msgstr ""
@@ -7886,23 +7941,23 @@ msgstr ""
msgid "Reposted by you"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:133
+#: src/lib/hooks/useNotificationHandler.ts:136
#: src/screens/Settings/NotificationSettings/index.tsx:181
#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:175
+#: src/lib/hooks/useNotificationHandler.ts:178
#: src/screens/Settings/NotificationSettings/index.tsx:222
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:494
+#: src/Navigation.tsx:495
msgid "Reposts of your reposts notifications"
msgstr ""
@@ -7920,7 +7975,7 @@ msgstr ""
msgid "Require an email code to sign in to your account."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:209
+#: src/screens/Signup/StepInfo/index.tsx:207
msgid "Required for this provider"
msgstr ""
@@ -7932,12 +7987,12 @@ msgstr ""
msgid "Resend"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:362
-#: src/components/contacts/screens/VerifyNumber.tsx:379
+#: src/components/contacts/screens/VerifyNumber.tsx:364
+#: src/components/contacts/screens/VerifyNumber.tsx:381
msgid "Resend code"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:369
+#: src/components/contacts/screens/VerifyNumber.tsx:371
msgid "Resend code in <0>00:{0}0>"
msgstr ""
@@ -7972,8 +8027,8 @@ msgstr ""
msgid "Reset password"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:516
-#: src/screens/Settings/FindContactsSettings.tsx:532
+#: src/screens/Settings/FindContactsSettings.tsx:522
+#: src/screens/Settings/FindContactsSettings.tsx:538
msgid "Resync contacts"
msgstr ""
@@ -7988,22 +8043,22 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceErrors.tsx:27
#: src/components/ageAssurance/AgeAssuranceErrors.tsx:30
-#: src/components/contacts/screens/VerifyNumber.tsx:347
-#: src/components/contacts/screens/VerifyNumber.tsx:352
+#: src/components/contacts/screens/VerifyNumber.tsx:349
+#: src/components/contacts/screens/VerifyNumber.tsx:354
#: src/components/dms/MessageItem.tsx:322
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:114
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8015,14 +8070,14 @@ msgstr ""
msgid "Retry"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:284
+#: src/components/moderation/ReportDialog/index.tsx:278
#: src/view/screens/Storybook/Admonitions.tsx:60
msgid "Retry loading report options"
msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:769
+#: src/screens/StarterPack/StarterPackScreen.tsx:774
msgid "Return to previous page"
msgstr ""
@@ -8030,26 +8085,26 @@ msgstr ""
msgid "Returns to home page"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1185
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/screens/StarterPack/Wizard/index.tsx:325
msgid "Returns to the previous step"
msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:203
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:292
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:307
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:662
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:667
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:665
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:670
#: src/components/live/EditLiveDialog.tsx:202
#: src/components/live/EditLiveDialog.tsx:209
-#: src/components/StarterPack/QrCodeDialog.tsx:204
+#: src/components/StarterPack/QrCodeDialog.tsx:206
#: src/screens/Profile/Header/EditProfileDialog.tsx:236
#: src/screens/Profile/Header/EditProfileDialog.tsx:250
#: src/screens/SavedFeeds.tsx:120
@@ -8063,7 +8118,7 @@ msgstr ""
msgid "Save"
msgstr ""
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr ""
@@ -8076,11 +8131,28 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:142
-#: src/components/StarterPack/ShareDialog.tsx:148
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:143
+#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
msgstr ""
@@ -8088,22 +8160,22 @@ msgstr ""
msgid "Save new handle"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:196
+#: src/components/StarterPack/QrCodeDialog.tsx:198
msgid "Save QR code"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:643
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:649
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:646
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:652
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:322
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:328
msgid "Save to my feeds"
msgstr ""
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8113,13 +8185,13 @@ msgid "Saved Feeds"
msgstr ""
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:143
-#: src/Navigation.tsx:618
-#: src/screens/Bookmarks/index.tsx:60
+#: src/Navigation.tsx:619
+#: src/screens/Bookmarks/index.tsx:61
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
-#: src/screens/ProfileList/components/Header.tsx:85
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:133
+#: src/screens/ProfileList/components/Header.tsx:87
msgid "Saved to your feeds"
msgstr ""
@@ -8155,20 +8227,20 @@ msgstr ""
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr ""
-#: src/Navigation.tsx:259
+#: src/Navigation.tsx:260
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:662
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:353
+#: src/components/contacts/screens/ViewMatches.tsx:355
msgid "Search contacts"
msgstr ""
@@ -8177,12 +8249,12 @@ msgid "Search feeds"
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:491
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:484
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8194,15 +8266,15 @@ msgstr ""
msgid "Search for \"{searchText}\""
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:549
+#: src/screens/StarterPack/Wizard/index.tsx:550
msgid "Search for feeds that you want to suggest to others."
msgstr ""
-#: src/screens/Search/Explore.tsx:362
+#: src/screens/Search/Explore.tsx:364
msgid "Search for more accounts"
msgstr ""
-#: src/screens/Search/Explore.tsx:439
+#: src/screens/Search/Explore.tsx:441
msgid "Search for more feeds"
msgstr ""
@@ -8228,13 +8300,13 @@ msgstr ""
msgid "Search my posts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:291
-#: src/view/com/profile/ProfileMenu.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:292
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:681
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr ""
@@ -8247,7 +8319,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:682
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,17 +8355,17 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr ""
-#: src/components/FeedInterstitials.tsx:730
-#: src/components/FeedInterstitials.tsx:791
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:712
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
-#: src/view/com/profile/ProfileFollows.tsx:192
-#: src/view/com/profile/ProfileFollows.tsx:193
+#: src/view/com/profile/ProfileFollows.tsx:190
+#: src/view/com/profile/ProfileFollows.tsx:191
msgid "See suggested accounts"
msgstr ""
@@ -8323,11 +8395,11 @@ msgstr ""
msgid "Select a color"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:372
+#: src/components/moderation/ReportDialog/index.tsx:366
msgid "Select a reason"
msgstr ""
-#: src/screens/Login/ChooseAccountForm.tsx:77
+#: src/screens/Login/ChooseAccountForm.tsx:78
msgid "Select account"
msgstr ""
@@ -8359,23 +8431,23 @@ msgstr ""
msgid "Select duration"
msgstr ""
-#: src/screens/Login/index.tsx:158
+#: src/screens/Login/index.tsx:159
msgid "Select from an existing account"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:547
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:550
msgid "Select from your lists"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:549
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:552
msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}0>"
msgstr ""
-#: src/view/com/composer/photos/SelectGifBtn.tsx:35
+#: src/view/com/composer/photos/SelectGifBtn.tsx:36
msgid "Select GIF"
msgstr ""
-#: src/components/dialogs/GifSelect.tsx:294
+#: src/components/dialogs/GifSelect.tsx:295
msgid "Select GIF \"{0}\""
msgstr ""
@@ -8398,7 +8470,7 @@ msgstr ""
msgid "Select languages"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:422
+#: src/components/moderation/ReportDialog/index.tsx:416
msgid "Select moderation service"
msgstr ""
@@ -8439,11 +8511,11 @@ msgstr ""
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:302
+#: src/screens/Signup/StepInfo/index.tsx:300
msgid "Select your date of birth"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:67
+#: src/screens/Onboarding/StepInterests/index.tsx:68
#: src/screens/Settings/InterestsSettings.tsx:165
msgid "Select your interests from the options below"
msgstr ""
@@ -8452,7 +8524,7 @@ msgstr ""
msgid "Select your preferred language for translations in your feed."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:113
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:114
msgid "Select your preferred notification channels"
msgstr ""
@@ -8468,8 +8540,8 @@ msgstr ""
msgid "Send a neat website!"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:252
-#: src/components/contacts/screens/PhoneInput.tsx:257
+#: src/components/contacts/screens/PhoneInput.tsx:254
+#: src/components/contacts/screens/PhoneInput.tsx:259
msgid "Send code"
msgstr ""
@@ -8485,7 +8557,7 @@ msgctxt "action"
msgid "Send Email"
msgstr ""
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr ""
@@ -8494,15 +8566,15 @@ msgstr ""
msgid "Send message"
msgstr ""
-#: src/components/PostControls/ShareMenu/RecentChats.tsx:121
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:122
msgid "Send post to {name}"
msgstr ""
-#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
+#: src/components/dms/dialogs/ShareViaChatDialog.tsx:63
msgid "Send post to..."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:813
+#: src/components/moderation/ReportDialog/index.tsx:807
msgid "Send report to {title}"
msgstr ""
@@ -8516,10 +8588,10 @@ msgstr ""
msgid "Send verification email"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:102
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:108
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
msgid "Send via direct message"
msgstr ""
@@ -8527,7 +8599,7 @@ msgstr ""
msgid "Sends email with confirmation code for account deletion"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:280
+#: src/components/contacts/screens/PhoneInput.tsx:282
msgid "Sent to our phone number verification provider Plivo"
msgstr ""
@@ -8543,7 +8615,7 @@ msgstr ""
msgid "Set new password"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:475
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:478
msgid "Set precisely which groups of people can reply to your post"
msgstr ""
@@ -8551,11 +8623,11 @@ msgstr ""
msgid "Set up your account"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:425
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:428
msgid "Set who can reply to your post"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:220
+#: src/ageAssurance/components/NoAccessScreen.tsx:217
msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!"
msgstr ""
@@ -8563,10 +8635,10 @@ msgstr ""
msgid "Sets email for password reset"
msgstr ""
-#: src/Navigation.tsx:215
+#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr ""
@@ -8619,7 +8691,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr ""
@@ -8627,14 +8699,14 @@ msgstr ""
msgid "Sexually Suggestive"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/components/StarterPack/QrCodeDialog.tsx:194
#: src/screens/Hashtag.tsx:142
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
+#: src/screens/StarterPack/StarterPackScreen.tsx:437
#: src/screens/Topic.tsx:103
msgid "Share"
msgstr ""
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr ""
@@ -8647,60 +8719,60 @@ msgstr ""
msgid "Share a fun fact!"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:562
+#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Share anyway"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:164
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165
msgid "Share author DID"
msgstr ""
#: src/components/dialogs/LinkWarning.tsx:96
#: src/components/dialogs/LinkWarning.tsx:104
-#: src/components/StarterPack/ShareDialog.tsx:113
-#: src/components/StarterPack/ShareDialog.tsx:122
+#: src/components/StarterPack/ShareDialog.tsx:114
+#: src/components/StarterPack/ShareDialog.tsx:123
msgid "Share link"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:72
+#: src/components/StarterPack/ShareDialog.tsx:73
msgid "Share link dialog"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:156
msgid "Share post at:// URI"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:127
-#: src/components/StarterPack/ShareDialog.tsx:137
+#: src/components/StarterPack/ShareDialog.tsx:128
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Share QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:471
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:473
msgid "Share this feed"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:426
+#: src/screens/StarterPack/StarterPackScreen.tsx:430
msgid "Share this starter pack"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:84
+#: src/components/StarterPack/ShareDialog.tsx:85
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:118
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:121
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:159
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:165
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:171
-#: src/screens/StarterPack/StarterPackScreen.tsx:613
-#: src/screens/StarterPack/StarterPackScreen.tsx:621
-#: src/view/com/profile/ProfileMenu.tsx:269
-#: src/view/com/profile/ProfileMenu.tsx:282
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
+#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/view/com/profile/ProfileMenu.tsx:270
+#: src/view/com/profile/ProfileMenu.tsx:283
msgid "Share via..."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:229
+#: src/components/contacts/screens/GetContacts.tsx:231
msgid "Share your contacts to find friends"
msgstr ""
@@ -8708,25 +8780,25 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:319
msgid "Shared Preferences Tester"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:183
msgid "Show alt text"
msgstr ""
#: src/components/moderation/ScreenHider.tsx:178
#: src/components/moderation/ScreenHider.tsx:181
#: src/screens/List/ListHiddenScreen.tsx:190
+#: src/screens/VideoFeed/index.tsx:650
#: src/screens/VideoFeed/index.tsx:656
-#: src/screens/VideoFeed/index.tsx:662
msgid "Show anyway"
msgstr ""
@@ -8743,8 +8815,8 @@ msgstr ""
msgid "Show customization options"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:541
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546
msgid "Show less like this"
msgstr ""
@@ -8752,7 +8824,7 @@ msgstr ""
msgid "Show list anyway"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:528
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:531
msgid "Show lists of users to select from"
msgstr ""
@@ -8765,12 +8837,12 @@ msgstr ""
msgid "Show More"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:535
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:536
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538
msgid "Show more like this"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14
+#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:15
msgid "Show more replies"
msgstr ""
@@ -8788,12 +8860,12 @@ msgstr ""
msgid "Show replies"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:43
+#: src/screens/PostThread/components/HeaderDropdown.tsx:44
msgid "Show replies as"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
msgid "Show reply for everyone"
msgstr ""
@@ -8820,7 +8892,7 @@ msgstr ""
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr ""
@@ -8828,28 +8900,28 @@ msgstr ""
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
#: src/components/dialogs/Signin.tsx:97
#: src/components/dialogs/Signin.tsx:99
-#: src/components/WelcomeModal.tsx:194
-#: src/components/WelcomeModal.tsx:206
+#: src/components/WelcomeModal.tsx:196
+#: src/components/WelcomeModal.tsx:208
#: src/screens/Hashtag.tsx:240
-#: src/screens/Login/index.tsx:136
-#: src/screens/Login/index.tsx:157
+#: src/screens/Login/index.tsx:137
+#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8859,7 +8931,7 @@ msgstr ""
msgid "Sign in as {0}"
msgstr ""
-#: src/screens/Login/ChooseAccountForm.tsx:81
+#: src/screens/Login/ChooseAccountForm.tsx:82
msgid "Sign in as..."
msgstr ""
@@ -8880,8 +8952,8 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Sign in to view post"
msgstr ""
@@ -8911,38 +8983,34 @@ msgstr ""
msgid "Sign-in Required"
msgstr ""
-#: src/lib/hooks/useAccountSwitcher.ts:41
-#: src/screens/Login/ChooseAccountForm.tsx:53
+#: src/lib/hooks/useAccountSwitcher.ts:42
+#: src/screens/Login/ChooseAccountForm.tsx:54
msgid "Signed in as @{0}"
msgstr ""
-#: src/components/FeedInterstitials.tsx:707
-msgid "Similar accounts"
-msgstr ""
-
-#: src/components/contacts/screens/PhoneInput.tsx:160
-#: src/components/contacts/screens/VerifyNumber.tsx:202
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:78
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:82
-#: src/screens/Onboarding/StepFinished/index.tsx:288
-#: src/screens/Onboarding/StepFinished/index.tsx:310
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:252
+#: src/components/contacts/screens/PhoneInput.tsx:162
+#: src/components/contacts/screens/VerifyNumber.tsx:204
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
+#: src/screens/Onboarding/StepFinished/index.tsx:291
+#: src/screens/Onboarding/StepFinished/index.tsx:313
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
-#: src/screens/StarterPack/Wizard/index.tsx:218
+#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:157
-#: src/components/contacts/screens/VerifyNumber.tsx:199
+#: src/components/contacts/screens/PhoneInput.tsx:159
+#: src/components/contacts/screens/VerifyNumber.tsx:201
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:281
-#: src/screens/Onboarding/StepFinished/index.tsx:307
+#: src/screens/Onboarding/StepFinished/index.tsx:284
+#: src/screens/Onboarding/StepFinished/index.tsx:310
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8955,7 +9023,7 @@ msgstr ""
msgid "Snoozes the reminder"
msgstr ""
-#: src/components/WelcomeModal.tsx:148
+#: src/components/WelcomeModal.tsx:150
msgid "Social media you control."
msgstr ""
@@ -8963,15 +9031,15 @@ msgstr ""
msgid "Software Dev"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:120
+#: src/components/verification/VerificationsDialog.tsx:121
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:869
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr ""
-#: src/components/WhoCanReply.tsx:86
+#: src/components/WhoCanReply.tsx:87
msgid "Some people can reply"
msgstr ""
@@ -8979,7 +9047,7 @@ msgstr ""
msgid "Someone reacted {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:243
+#: src/screens/Messages/components/ChatListItem.tsx:244
msgid "Someone reacted {0} to {1}"
msgstr ""
@@ -8992,9 +9060,9 @@ msgid "Something went wrong"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
-#: src/components/moderation/ReportDialog/index.tsx:279
+#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr ""
@@ -9012,20 +9080,20 @@ msgstr ""
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:233
+#: src/components/moderation/ReportDialog/index.tsx:231
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:539
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:541
msgid "Something wrong? Let us know."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
-#: src/App.native.tsx:132
-#: src/App.web.tsx:104
+#: src/App.native.tsx:137
+#: src/App.web.tsx:113
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -9055,15 +9123,15 @@ msgid "Spam or other inauthentic behavior or deception"
msgstr ""
#: src/lib/interests.ts:72
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:230
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227
msgid "Sports"
msgstr ""
-#: src/components/PostControls/ShareMenu/RecentChats.tsx:206
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:207
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:74
+#: src/components/dms/dialogs/NewChatDialog.tsx:75
msgid "Start a new chat"
msgstr ""
@@ -9081,9 +9149,9 @@ msgstr ""
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:589
-#: src/Navigation.tsx:594
-#: src/screens/StarterPack/Wizard/index.tsx:209
+#: src/Navigation.tsx:590
+#: src/Navigation.tsx:595
+#: src/screens/StarterPack/Wizard/index.tsx:210
msgid "Starter Pack"
msgstr ""
@@ -9100,11 +9168,11 @@ msgstr ""
msgid "Starter pack by you"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:733
+#: src/screens/StarterPack/StarterPackScreen.tsx:738
msgid "Starter pack is invalid"
msgstr ""
-#: src/screens/Search/Explore.tsx:630
+#: src/screens/Search/Explore.tsx:629
#: src/view/screens/Profile.tsx:240
msgid "Starter Packs"
msgstr ""
@@ -9113,17 +9181,21 @@ msgstr ""
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr ""
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:100
-#: src/screens/Settings/AboutSettings.tsx:103
+#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:101
msgid "Status Page"
msgstr ""
#: src/screens/Onboarding/Layout.tsx:226
-#: src/screens/Signup/index.tsx:169
+#: src/screens/Signup/index.tsx:180
msgid "Step {0} of {1}"
msgstr ""
@@ -9131,11 +9203,11 @@ msgstr ""
msgid "Storage cleared, you need to restart the app now."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:291
+#: src/components/contacts/screens/PhoneInput.tsx:293
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:309
#: src/screens/Settings/Settings.tsx:464
msgid "Storybook"
msgstr ""
@@ -9144,8 +9216,8 @@ msgstr ""
msgid "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:117
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:123
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:119
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:125
#: src/components/live/GoLiveDisabledDialog.tsx:138
#: src/components/live/GoLiveDisabledDialog.tsx:139
#: src/components/moderation/LabelsOnMeDialog.tsx:342
@@ -9163,13 +9235,13 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:500
-#: src/components/moderation/ReportDialog/index.tsx:561
-#: src/components/moderation/ReportDialog/index.tsx:568
+#: src/components/moderation/ReportDialog/index.tsx:494
+#: src/components/moderation/ReportDialog/index.tsx:555
+#: src/components/moderation/ReportDialog/index.tsx:562
msgid "Submit report"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:81
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:74
msgid "Subscribe"
msgstr ""
@@ -9181,20 +9253,20 @@ msgstr ""
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:69
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:62
msgid "Subscribe to this list"
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:251
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:158
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:159
msgid "Success"
msgstr ""
@@ -9207,18 +9279,18 @@ msgstr ""
msgid "Successfully verified"
msgstr ""
-#: src/screens/Search/Explore.tsx:359
+#: src/screens/Search/Explore.tsx:361
msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:705
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:155
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr ""
@@ -9232,13 +9304,13 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:329
#: src/view/screens/Support.tsx:34
#: src/view/screens/Support.tsx:37
msgid "Support"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:233
+#: src/components/contacts/screens/PhoneInput.tsx:235
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
@@ -9270,8 +9342,8 @@ msgid "System"
msgstr ""
#: src/screens/Log.tsx:58
-#: src/screens/Settings/AboutSettings.tsx:107
-#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/AboutSettings.tsx:105
+#: src/screens/Settings/AboutSettings.tsx:108
#: src/screens/Settings/Settings.tsx:457
msgid "System log"
msgstr ""
@@ -9292,7 +9364,7 @@ msgstr ""
msgid "Tap for more information"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:336
+#: src/screens/Signup/StepInfo/index.tsx:334
msgid "Tap here to confirm your location with GPS."
msgstr ""
@@ -9314,11 +9386,11 @@ msgstr ""
msgid "Targeted harassment"
msgstr ""
-#: src/state/shell/progress-guide.tsx:235
+#: src/state/shell/progress-guide.tsx:236
msgid "Task complete - 10 follows!"
msgstr ""
-#: src/state/shell/progress-guide.tsx:225
+#: src/state/shell/progress-guide.tsx:226
msgid "Task complete - 10 likes!"
msgstr ""
@@ -9350,12 +9422,12 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:182
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97
-#: src/Navigation.tsx:338
-#: src/screens/Settings/AboutSettings.tsx:84
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/Navigation.tsx:339
+#: src/screens/Settings/AboutSettings.tsx:82
+#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr ""
@@ -9377,8 +9449,8 @@ msgstr ""
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:394
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:121
+#: src/ageAssurance/components/NoAccessScreen.tsx:392
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:123
msgid "Thanks! You're all set."
msgstr ""
@@ -9386,16 +9458,16 @@ msgstr ""
msgid "That contains the following:"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:110
-#: src/screens/StarterPack/StarterPackScreen.tsx:111
-#: src/screens/StarterPack/StarterPackScreen.tsx:155
-#: src/screens/StarterPack/StarterPackScreen.tsx:156
+#: src/screens/StarterPack/StarterPackScreen.tsx:112
+#: src/screens/StarterPack/StarterPackScreen.tsx:113
+#: src/screens/StarterPack/StarterPackScreen.tsx:157
+#: src/screens/StarterPack/StarterPackScreen.tsx:158
#: src/screens/StarterPack/Wizard/index.tsx:117
#: src/screens/StarterPack/Wizard/index.tsx:127
msgid "That starter pack could not be found."
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:77
+#: src/screens/Signup/StepHandle/index.tsx:80
msgid "That username is already taken"
msgstr ""
@@ -9403,13 +9475,13 @@ msgstr ""
msgid "That's all, folks!"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1157
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
-#: src/view/com/profile/ProfileMenu.tsx:538
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr ""
@@ -9443,11 +9515,11 @@ msgstr ""
msgid "The Discover feed"
msgstr ""
-#: src/state/shell/progress-guide.tsx:226
+#: src/state/shell/progress-guide.tsx:227
msgid "The Discover feed now knows what you like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:332
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -9493,7 +9565,7 @@ msgstr ""
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:743
+#: src/screens/StarterPack/StarterPackScreen.tsx:748
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
@@ -9513,9 +9585,9 @@ msgstr ""
msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:112
-#: src/components/contacts/screens/VerifyNumber.tsx:110
-#: src/components/contacts/screens/VerifyNumber.tsx:162
+#: src/components/contacts/screens/PhoneInput.tsx:114
+#: src/components/contacts/screens/VerifyNumber.tsx:112
+#: src/components/contacts/screens/VerifyNumber.tsx:164
msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again."
msgstr ""
@@ -9527,11 +9599,11 @@ msgstr ""
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:144
+#: src/components/contacts/screens/GetContacts.tsx:146
msgid "There was a problem with your internet connection, please try again"
msgstr ""
@@ -9539,15 +9611,15 @@ msgstr ""
msgid "There was an issue connecting to Tenor."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
-#: src/screens/ProfileList/components/Header.tsx:88
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:76
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:179
+#: src/screens/ProfileList/components/Header.tsx:90
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:78
#: src/screens/SavedFeeds.tsx:97
msgid "There was an issue contacting the server"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:419
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:98
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:421
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:99
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr ""
@@ -9555,8 +9627,8 @@ msgstr ""
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
-#: src/screens/Search/Explore.tsx:999
-#: src/view/com/posts/PostFeed.tsx:755
+#: src/screens/Search/Explore.tsx:988
+#: src/view/com/posts/PostFeed.tsx:757
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -9581,40 +9653,40 @@ msgstr ""
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:139
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:446
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:104
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:115
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:116
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:127
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:253
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
-#: src/view/com/profile/ProfileMenu.tsx:151
-#: src/view/com/profile/ProfileMenu.tsx:161
-#: src/view/com/profile/ProfileMenu.tsx:175
-#: src/view/com/profile/ProfileMenu.tsx:185
-#: src/view/com/profile/ProfileMenu.tsx:198
-#: src/view/com/profile/ProfileMenu.tsx:210
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:176
+#: src/view/com/profile/ProfileMenu.tsx:186
+#: src/view/com/profile/ProfileMenu.tsx:199
+#: src/view/com/profile/ProfileMenu.tsx:211
msgid "There was an issue! {0}"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:238
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:240
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/screens/ProfileList/components/Header.tsx:107
-#: src/screens/ProfileList/components/Header.tsx:125
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:122
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:140
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:40
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:59
+#: src/screens/ProfileList/components/Header.tsx:105
+#: src/screens/ProfileList/components/Header.tsx:119
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:120
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:134
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:37
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:52
msgid "There was an issue. Please check your internet connection and try again."
msgstr ""
@@ -9628,7 +9700,7 @@ msgstr ""
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:654
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:657
msgid "These are your default settings"
msgstr ""
@@ -9640,11 +9712,11 @@ msgstr ""
msgid "This {screenDescription} has been flagged:"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:87
+#: src/components/verification/VerificationsDialog.tsx:88
msgid "This account has a checkmark because it's been verified by trusted sources."
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:92
+#: src/components/verification/VerificationsDialog.tsx:93
msgid "This account has one or more attempted verifications, but it is not currently verified."
msgstr ""
@@ -9678,7 +9750,7 @@ msgstr ""
msgid "This chat was disconnected"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:103
+#: src/components/contacts/screens/VerifyNumber.tsx:105
msgid "This code is invalid. Resend to get a new code."
msgstr ""
@@ -9707,10 +9779,14 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:365
+#: src/screens/Messages/components/ChatListItem.tsx:366
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9735,12 +9811,12 @@ msgstr ""
msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later."
msgstr ""
-#: src/view/com/posts/CustomFeedEmptyState.tsx:61
+#: src/view/com/posts/CustomFeedEmptyState.tsx:62
msgid "This feed is empty! You may need to follow more users or tune your language settings."
msgstr ""
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr ""
@@ -9798,35 +9874,35 @@ msgstr ""
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
-#: src/components/WhoCanReply.tsx:272
+#: src/components/WhoCanReply.tsx:273
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143
msgid "This post is only visible to logged-in users."
msgstr ""
-#: src/screens/Bookmarks/index.tsx:256
+#: src/screens/Bookmarks/index.tsx:257
msgid "This post was deleted by its author"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:773
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:514
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:559
+#: src/view/com/profile/ProfileMenu.tsx:560
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:805
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr ""
@@ -9834,7 +9910,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9850,7 +9926,7 @@ msgstr ""
msgid "This user does not have a display name, and therefore cannot be verified."
msgstr ""
-#: src/view/com/profile/ProfileFollowers.tsx:172
+#: src/view/com/profile/ProfileFollowers.tsx:170
msgid "This user doesn't have any followers."
msgstr ""
@@ -9879,7 +9955,7 @@ msgstr ""
msgid "This user is new here. Press for more info about when they joined."
msgstr ""
-#: src/view/com/profile/ProfileFollows.tsx:184
+#: src/view/com/profile/ProfileFollows.tsx:182
msgid "This user isn't following anyone."
msgstr ""
@@ -9891,12 +9967,12 @@ msgstr ""
msgid "This will remove @{0} from the quick access list."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:795
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:23
-#: src/screens/PostThread/components/HeaderDropdown.tsx:26
+#: src/screens/PostThread/components/HeaderDropdown.tsx:24
+#: src/screens/PostThread/components/HeaderDropdown.tsx:27
msgid "Thread options"
msgstr ""
@@ -9909,12 +9985,12 @@ msgstr ""
msgid "Thread Preferences"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:57
-#: src/screens/PostThread/components/HeaderDropdown.tsx:62
+#: src/screens/PostThread/components/HeaderDropdown.tsx:58
+#: src/screens/PostThread/components/HeaderDropdown.tsx:63
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:371
+#: src/Navigation.tsx:372
msgid "Threads Preferences"
msgstr ""
@@ -9935,7 +10011,7 @@ msgstr ""
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:242
+#: src/ageAssurance/components/NoAccessScreen.tsx:239
msgid "To log out, <0>click here0>."
msgstr ""
@@ -9955,15 +10031,15 @@ msgstr ""
msgid "Toggles the sound"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:120
+#: src/components/contacts/screens/VerifyNumber.tsx:122
msgid "Too many attempts. Please wait a few minutes and try again."
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:173
+#: src/components/contacts/screens/VerifyNumber.tsx:175
msgid "Too many codes sent. Please wait a few minutes and try again."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:153
+#: src/components/contacts/screens/GetContacts.tsx:155
msgid "Too many contacts - you've exceeded the number of contacts you can import to find your friends"
msgstr ""
@@ -9973,23 +10049,23 @@ msgstr ""
msgid "Top"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:73
-#: src/screens/PostThread/components/HeaderDropdown.tsx:78
+#: src/screens/PostThread/components/HeaderDropdown.tsx:74
+#: src/screens/PostThread/components/HeaderDropdown.tsx:79
#: src/screens/Settings/ThreadPreferences.tsx:56
#: src/screens/Settings/ThreadPreferences.tsx:59
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:554
+#: src/Navigation.tsx:555
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:139
-#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:502
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:504
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
+#: src/components/dms/MessageContextMenu.tsx:136
+#: src/components/dms/MessageContextMenu.tsx:138
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr ""
@@ -9998,11 +10074,11 @@ msgstr ""
msgid "Tree view"
msgstr ""
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:49
msgid "Trending"
msgstr ""
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:56
msgid "Trending options"
msgstr ""
@@ -10014,7 +10090,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:139
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -10059,14 +10135,14 @@ msgid "Unable to contact your service. Please check your internet connection and
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:68
-#: src/screens/Login/index.tsx:93
+#: src/screens/Login/index.tsx:94
#: src/screens/Login/LoginForm.tsx:169
#: src/screens/Login/SetNewPasswordForm.tsx:81
-#: src/screens/Signup/index.tsx:77
+#: src/screens/Signup/index.tsx:88
msgid "Unable to contact your service. Please check your Internet connection."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:680
msgid "Unable to delete"
msgstr ""
@@ -10078,7 +10154,7 @@ msgstr ""
msgid "Unapply Pull Request {currentChannel}"
msgstr ""
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:41
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:42
msgid "Unavailable"
msgstr ""
@@ -10091,44 +10167,48 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
-#: src/screens/ProfileList/components/Header.tsx:171
-#: src/screens/ProfileList/components/Header.tsx:178
-#: src/view/com/profile/ProfileMenu.tsx:550
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
+#: src/screens/ProfileList/components/Header.tsx:165
+#: src/screens/ProfileList/components/Header.tsx:172
+#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:261
#: src/components/dms/ConvoMenu.tsx:264
-#: src/view/com/profile/ProfileMenu.tsx:455
-#: src/view/com/profile/ProfileMenu.tsx:461
+#: src/view/com/profile/ProfileMenu.tsx:456
+#: src/view/com/profile/ProfileMenu.tsx:462
msgid "Unblock account"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
-#: src/view/com/profile/ProfileMenu.tsx:532
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
+#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:247
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:250
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:241
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:244
msgid "Unblock list"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:42
+#: src/components/PostControls/BookmarkButton.tsx:43
msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,32 +10222,32 @@ msgstr ""
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:311
-#: src/view/com/profile/ProfileMenu.tsx:321
+#: src/view/com/profile/ProfileMenu.tsx:312
+#: src/view/com/profile/ProfileMenu.tsx:322
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:860
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:484
+#: src/components/moderation/ReportDialog/index.tsx:478
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:197
+#: src/ageAssurance/components/NoAccessScreen.tsx:194
msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:182
+#: src/ageAssurance/components/NoAccessScreen.tsx:179
msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region."
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:211
+#: src/components/verification/VerificationsDialog.tsx:208
msgid "Unknown verifier"
msgstr ""
@@ -10179,12 +10259,12 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:517
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:276
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -10194,8 +10274,8 @@ msgctxt "video"
msgid "Unmute"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:185
-#: src/screens/ProfileList/components/Header.tsx:192
+#: src/screens/ProfileList/components/Header.tsx:179
+#: src/screens/ProfileList/components/Header.tsx:186
msgid "Unmute"
msgstr ""
@@ -10204,10 +10284,10 @@ msgstr ""
msgid "Unmute {tag}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:685
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691
-#: src/view/com/profile/ProfileMenu.tsx:434
-#: src/view/com/profile/ProfileMenu.tsx:440
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:688
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
+#: src/view/com/profile/ProfileMenu.tsx:435
+#: src/view/com/profile/ProfileMenu.tsx:441
msgid "Unmute account"
msgstr ""
@@ -10215,13 +10295,13 @@ msgstr ""
msgid "Unmute conversation"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:257
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:260
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:251
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:254
msgid "Unmute list"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:574
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:577
msgid "Unmute thread"
msgstr ""
@@ -10229,13 +10309,13 @@ msgstr ""
msgid "Unmute video"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:156
-#: src/screens/ProfileList/components/Header.tsx:163
+#: src/screens/ProfileList/components/Header.tsx:150
+#: src/screens/ProfileList/components/Header.tsx:157
msgid "Unpin"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:527
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:529
#: src/screens/SavedFeeds.tsx:351
msgid "Unpin feed"
msgstr ""
@@ -10244,30 +10324,30 @@ msgstr ""
msgid "Unpin Feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:311
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:313
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:477
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:484
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:487
msgid "Unpin from profile"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:230
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:233
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:224
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:227
msgid "Unpin moderation list"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
msgid "Unpinned {0} from Home"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:75
+#: src/screens/ProfileList/components/Header.tsx:77
msgid "Unpinned from your feeds"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:102
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:104
msgid "Unpinned list"
msgstr ""
@@ -10276,7 +10356,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:341
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr ""
@@ -10285,7 +10365,7 @@ msgstr ""
msgid "Unsubscribe from list"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:308
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr ""
@@ -10293,7 +10373,7 @@ msgstr ""
msgid "Unsubscribed from list"
msgstr ""
-#: src/view/com/composer/Composer.tsx:897
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10322,12 +10402,12 @@ msgstr ""
msgid "Update your email"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:348
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:396
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
@@ -10344,20 +10424,20 @@ msgstr ""
msgid "Upload a text file to:"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:469
-#: src/view/com/util/UserAvatar.tsx:472
+#: src/view/com/util/UserAvatar.tsx:470
+#: src/view/com/util/UserAvatar.tsx:473
#: src/view/com/util/UserBanner.tsx:159
#: src/view/com/util/UserBanner.tsx:162
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:486
+#: src/view/com/util/UserAvatar.tsx:487
#: src/view/com/util/UserBanner.tsx:176
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:480
-#: src/view/com/util/UserAvatar.tsx:484
+#: src/view/com/util/UserAvatar.tsx:481
+#: src/view/com/util/UserAvatar.tsx:485
#: src/view/com/util/UserBanner.tsx:170
#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Library"
@@ -10372,7 +10452,7 @@ msgstr ""
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1894
+#: src/view/com/composer/Composer.tsx:2298
msgid "Uploading video..."
msgstr ""
@@ -10445,6 +10525,10 @@ msgstr ""
msgid "User list by {0}"
msgstr ""
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr ""
@@ -10459,15 +10543,15 @@ msgctxt "toast"
msgid "User list updated"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:233
+#: src/screens/Signup/StepHandle/index.tsx:230
msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:217
+#: src/screens/Signup/StepHandle/index.tsx:214
msgid "Username cannot begin or end with a hyphen"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:221
+#: src/screens/Signup/StepHandle/index.tsx:218
msgid "Username must only contain letters (a-z), numbers, and hyphens"
msgstr ""
@@ -10475,11 +10559,11 @@ msgstr ""
msgid "Username or email address"
msgstr ""
-#: src/components/WhoCanReply.tsx:335
+#: src/components/WhoCanReply.tsx:336
msgid "users followed by <0>@{0}0>"
msgstr ""
-#: src/components/WhoCanReply.tsx:322
+#: src/components/WhoCanReply.tsx:323
msgid "users following <0>@{0}0>"
msgstr ""
@@ -10500,28 +10584,28 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:208
-#: src/screens/Moderation/VerificationSettings.tsx:32
+#: src/Navigation.tsx:209
+#: src/screens/Moderation/VerificationSettings.tsx:33
msgid "Verification Settings"
msgstr ""
-#: src/screens/Moderation/VerificationSettings.tsx:41
+#: src/screens/Moderation/VerificationSettings.tsx:42
msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:103
+#: src/components/verification/VerificationsDialog.tsx:104
msgid "Verified by:"
msgstr ""
#: src/components/verification/VerificationCreatePrompt.tsx:84
#: src/components/verification/VerificationCreatePrompt.tsx:86
-#: src/view/com/profile/ProfileMenu.tsx:418
-#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:419
+#: src/view/com/profile/ProfileMenu.tsx:422
msgid "Verify account"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:331
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:176
+#: src/ageAssurance/components/NoAccessScreen.tsx:329
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:178
msgid "Verify again"
msgstr ""
@@ -10547,15 +10631,15 @@ msgstr ""
msgid "Verify email dialog"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:319
-#: src/ageAssurance/components/NoAccessScreen.tsx:333
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:164
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:178
+#: src/ageAssurance/components/NoAccessScreen.tsx:317
+#: src/ageAssurance/components/NoAccessScreen.tsx:331
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:166
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:180
msgid "Verify now"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:172
-#: src/components/contacts/screens/VerifyNumber.tsx:214
+#: src/components/contacts/screens/PhoneInput.tsx:174
+#: src/components/contacts/screens/VerifyNumber.tsx:216
msgid "Verify phone number"
msgstr ""
@@ -10579,21 +10663,21 @@ msgid "Verify your email"
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:296
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:207
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:208
msgid "Verifying"
msgstr ""
-#: src/ageAssurance/components/RedirectOverlay.tsx:165
+#: src/ageAssurance/components/RedirectOverlay.tsx:164
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74
msgid "Verifying your age assurance status"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:304
+#: src/components/contacts/screens/VerifyNumber.tsx:306
msgid "Verifying..."
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:126
-#: src/screens/Settings/AboutSettings.tsx:155
+#: src/screens/Settings/AboutSettings.tsx:124
+#: src/screens/Settings/AboutSettings.tsx:153
msgid "Version {0}"
msgstr ""
@@ -10606,7 +10690,7 @@ msgstr ""
msgid "Video failed to process"
msgstr ""
-#: src/Navigation.tsx:610
+#: src/Navigation.tsx:611
msgid "Video Feed"
msgstr ""
@@ -10614,16 +10698,20 @@ msgstr ""
msgid "Video from {0}: {text}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:234
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1115
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1115
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr ""
@@ -10635,7 +10723,7 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1904
+#: src/view/com/composer/Composer.tsx:2308
msgid "Video uploaded"
msgstr ""
@@ -10651,19 +10739,19 @@ msgstr ""
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:586
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:267
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr ""
#: src/components/ProfileCard.tsx:142
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:456
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:819
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr ""
@@ -10684,8 +10772,8 @@ msgstr ""
msgid "View debug entry"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:684
-#: src/screens/VideoFeed/index.tsx:702
+#: src/screens/VideoFeed/index.tsx:678
+#: src/screens/VideoFeed/index.tsx:696
msgid "View details"
msgstr ""
@@ -10697,18 +10785,18 @@ msgstr ""
msgid "View information about these labels"
msgstr ""
-#: src/components/interstitials/TrendingVideos.tsx:198
-#: src/components/interstitials/TrendingVideos.tsx:220
-#: src/screens/Search/modules/ExploreTrendingVideos.tsx:193
-#: src/screens/Search/modules/ExploreTrendingVideos.tsx:212
+#: src/components/interstitials/TrendingVideos.tsx:199
+#: src/components/interstitials/TrendingVideos.tsx:221
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:190
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:209
msgid "View more"
msgstr ""
-#: src/components/interstitials/TrendingVideos.tsx:226
+#: src/components/interstitials/TrendingVideos.tsx:227
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:581
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10729,11 +10817,11 @@ msgstr ""
msgid "View the labeling service provided by @{0}"
msgstr ""
-#: src/components/verification/VerificationCheckButton.tsx:99
+#: src/components/verification/VerificationCheckButton.tsx:100
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:488
msgid "View users who like this feed"
msgstr ""
@@ -10762,7 +10850,7 @@ msgstr ""
msgid "View your muted accounts"
msgstr ""
-#: src/components/verification/VerificationCheckButton.tsx:98
+#: src/components/verification/VerificationCheckButton.tsx:99
msgid "View your verifications"
msgstr ""
@@ -10788,7 +10876,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10810,12 +10898,12 @@ msgstr ""
msgid "Warn content and filter from feeds"
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:172
-#: src/components/live/LiveStatusDialog.tsx:185
+#: src/components/live/LiveStatusDialog.tsx:173
+#: src/components/live/LiveStatusDialog.tsx:182
msgid "Watch now"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:250
+#: src/components/contacts/screens/GetContacts.tsx:252
msgid "We apply the highest privacy standards, and never share or sell your contact information."
msgstr ""
@@ -10839,7 +10927,7 @@ msgstr ""
msgid "We couldn't load this conversation"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:241
+#: src/components/contacts/screens/GetContacts.tsx:243
msgid "We delete hashes after matches are made"
msgstr ""
@@ -10859,15 +10947,15 @@ msgstr ""
msgid "We have sent another verification email to <0>{0}0>."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:181
+#: src/components/contacts/screens/PhoneInput.tsx:183
msgid "We need to verify your number before we can look for your friends. A verification code will be sent to this number."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:238
+#: src/components/contacts/screens/GetContacts.tsx:240
msgid "We never keep plain phone numbers"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:244
+#: src/components/contacts/screens/GetContacts.tsx:246
msgid "We only suggest follows if both people consent"
msgstr ""
@@ -10900,7 +10988,7 @@ msgid "We were unable to load your configured labelers at this time."
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:304
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:215
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:216
msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically."
msgstr ""
@@ -10908,7 +10996,7 @@ msgstr ""
msgid "We will let you know when your account is ready."
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:503
+#: src/screens/Settings/FindContactsSettings.tsx:509
msgid "We will notify you when we find your friends."
msgstr ""
@@ -10916,7 +11004,7 @@ msgstr ""
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:60
+#: src/screens/Onboarding/StepInterests/index.tsx:61
msgid "We'll use this to help customize your experience."
msgstr ""
@@ -10929,7 +11017,7 @@ msgid "We're also updating our Community Guidelines, and we want your input! The
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:310
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:222
msgid "We're confirming your age assurance status with our servers. This should only take a few seconds."
msgstr ""
@@ -10938,20 +11026,20 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:189
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:95
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "We're so excited to have you join us!"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:387
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:114
+#: src/ageAssurance/components/NoAccessScreen.tsx:385
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:116
msgid "We're sorry, but based on your device's location, you are currently located in a region that requires age assurance."
msgstr ""
@@ -10968,7 +11056,7 @@ msgstr ""
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr ""
-#: src/view/com/composer/Composer.tsx:511
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
@@ -10977,7 +11065,7 @@ msgstr ""
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:216
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr ""
@@ -10998,7 +11086,7 @@ msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Poli
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:256
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:163
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164
msgid "We've confirmed your age assurance status. You can now close this dialog."
msgstr ""
@@ -11010,7 +11098,7 @@ msgstr ""
msgid "Welcome, friend!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:57
+#: src/screens/Onboarding/StepInterests/index.tsx:58
msgid "What are your interests?"
msgstr ""
@@ -11018,14 +11106,13 @@ msgstr ""
msgid "What do you want to call your starter pack?"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:857
-#: src/view/com/feeds/ComposerPrompt.tsx:189
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:147
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -11033,16 +11120,16 @@ msgstr ""
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr ""
-#: src/components/WhoCanReply.tsx:224
+#: src/components/WhoCanReply.tsx:225
msgid "Who can interact with this post?"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:421
-#: src/components/WhoCanReply.tsx:114
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:424
+#: src/components/WhoCanReply.tsx:115
msgid "Who can reply"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:128
msgid "Who can verify?"
msgstr ""
@@ -11097,6 +11184,14 @@ msgstr ""
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11202,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:855
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr ""
@@ -11133,20 +11228,20 @@ msgstr ""
msgid "Yes"
msgstr ""
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:687
+#: src/screens/StarterPack/StarterPackScreen.tsx:692
msgid "Yes, delete this starter pack"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
msgid "Yes, detach"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
msgid "Yes, hide"
msgstr ""
@@ -11158,11 +11253,11 @@ msgstr ""
msgid "Yesterday"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:59
+#: src/components/verification/VerifierDialog.tsx:60
msgid "You are a trusted verifier"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:173
+#: src/ageAssurance/components/NoAccessScreen.tsx:170
msgid "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app."
msgstr ""
@@ -11174,8 +11269,8 @@ msgstr ""
msgid "You are currently blocked from using the Go Live feature. To appeal this moderation decision, please submit the form below."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:301
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:134
+#: src/ageAssurance/components/NoAccessScreen.tsx:299
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:136
msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team0> if you believe this is an error."
msgstr ""
@@ -11188,7 +11283,7 @@ msgstr ""
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:212
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11196,15 +11291,15 @@ msgstr ""
msgid "You are not allowed to upload videos."
msgstr ""
-#: src/view/com/profile/ProfileFollows.tsx:183
+#: src/view/com/profile/ProfileFollows.tsx:181
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:157
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:64
+#: src/components/verification/VerificationsDialog.tsx:65
msgid "You are verified"
msgstr ""
@@ -11229,11 +11324,11 @@ msgstr ""
msgid "You can also temporarily deactivate your account instead, and reactivate it at any time."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:247
+#: src/components/contacts/screens/GetContacts.tsx:249
msgid "You can always opt out and delete your data"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:101
+#: src/lib/hooks/useNotificationHandler.ts:104
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
@@ -11241,7 +11336,7 @@ msgstr ""
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
msgctxt "toast"
msgid "You can hide a maximum of {MAX_HIDDEN_REPLIES} replies."
msgstr ""
@@ -11250,7 +11345,7 @@ msgstr ""
msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button."
msgstr ""
-#: src/screens/Login/index.tsx:196
+#: src/screens/Login/index.tsx:197
#: src/screens/Login/PasswordUpdatedForm.tsx:26
msgid "You can now sign in with your new password."
msgstr ""
@@ -11272,9 +11367,9 @@ msgstr ""
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
-#: src/components/interstitials/Trending.tsx:129
+#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:137
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:129
msgid "You can update this later from your settings."
msgstr ""
@@ -11291,7 +11386,7 @@ msgstr ""
msgid "You don't have any chat requests at the moment."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:583
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:586
msgid "You don't have any lists yet."
msgstr ""
@@ -11303,7 +11398,7 @@ msgstr ""
msgid "You don't have any saved feeds."
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:309
+#: src/components/contacts/screens/ViewMatches.tsx:311
msgid "You got here first"
msgstr ""
@@ -11317,7 +11412,7 @@ msgstr ""
msgid "You have blocked this user. You cannot view their content."
msgstr ""
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11471,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr ""
@@ -11425,11 +11528,11 @@ msgstr ""
msgid "You may only add up to 3 feeds"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:322
+#: src/screens/Signup/StepInfo/index.tsx:320
msgid "You must be {0} years of age or older to create an account in your region."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:317
+#: src/screens/Signup/StepInfo/index.tsx:315
msgid "You must be {MIN_ACCESS_AGE} years of age or older to create an account."
msgstr ""
@@ -11437,15 +11540,15 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr ""
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:60
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:61
msgid "You must complete age assurance in order to access this screen."
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:65
+#: src/components/StarterPack/QrCodeDialog.tsx:67
msgid "You must grant access to your photo library to save a QR code"
msgstr ""
@@ -11469,7 +11572,7 @@ msgstr ""
msgid "You reacted {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:220
+#: src/screens/Messages/components/ChatListItem.tsx:221
msgid "You reacted {0} to {1}"
msgstr ""
@@ -11487,11 +11590,11 @@ msgstr ""
msgid "You will no longer receive notifications for {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:231
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:239
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:221
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:229
msgid "You will now receive notifications for this thread"
msgstr ""
@@ -11499,35 +11602,35 @@ msgstr ""
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:156
+#: src/screens/Messages/components/ChatListItem.tsx:157
msgid "You: {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:185
+#: src/screens/Messages/components/ChatListItem.tsx:186
msgid "You: {defaultEmbeddedContentMessage}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:179
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:141
+#: src/screens/Signup/index.tsx:152
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:157
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:244
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:245
msgid "You'll follow these people and {0} others"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:242
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:243
msgid "You'll follow these people right away"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:311
+#: src/components/contacts/screens/GetContacts.tsx:313
msgid "You'll need to go to the System Settings for Bluesky and give permission if you want to use this feature."
msgstr ""
@@ -11535,7 +11638,7 @@ msgstr ""
msgid "You'll start receiving notifications for {0}!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:282
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:283
msgid "You'll stay updated with these feeds"
msgstr ""
@@ -11544,7 +11647,7 @@ msgid "You're in line"
msgstr ""
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -11557,11 +11660,11 @@ msgstr ""
msgid "You've chosen to hide a word or tag within this post."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:310
+#: src/components/contacts/screens/GetContacts.tsx:312
msgid "You've denied access to your contacts"
msgstr ""
-#: src/state/shell/progress-guide.tsx:236
+#: src/state/shell/progress-guide.tsx:237
msgid "You've found some people to follow"
msgstr ""
@@ -11589,11 +11692,11 @@ msgstr ""
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1166
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
-#: src/screens/Signup/index.tsx:179
+#: src/screens/Signup/index.tsx:190
msgid "Your account"
msgstr ""
@@ -11621,7 +11724,7 @@ msgstr ""
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:289
+#: src/screens/Signup/StepInfo/index.tsx:287
msgid "Your birth date"
msgstr ""
@@ -11645,7 +11748,7 @@ msgstr ""
msgid "Your contact {firstAuthorName} is on Bluesky"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:451
+#: src/components/contacts/screens/ViewMatches.tsx:453
msgid "Your contact {name}"
msgstr ""
@@ -11665,8 +11768,8 @@ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:51
#: src/screens/Settings/components/ChangePasswordDialog.tsx:81
-#: src/screens/Signup/state.ts:273
-#: src/screens/Signup/StepInfo/index.tsx:129
+#: src/screens/Signup/state.ts:277
+#: src/screens/Signup/StepInfo/index.tsx:131
msgid "Your email appears to be invalid."
msgstr ""
@@ -11674,11 +11777,11 @@ msgstr ""
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
-#: src/state/shell/progress-guide.tsx:215
+#: src/state/shell/progress-guide.tsx:216
msgid "Your first like!"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:490
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:493
msgid "Your followers"
msgstr ""
@@ -11690,7 +11793,7 @@ msgstr ""
msgid "Your full handle will be <0>@{0}0>"
msgstr ""
-#: src/Navigation.tsx:526
+#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
#: src/screens/Settings/ContentAndMediaSettings.tsx:93
#: src/screens/Settings/ContentAndMediaSettings.tsx:96
@@ -11715,7 +11818,7 @@ msgstr ""
msgid "Your location data is not tracked and does not leave your device."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:367
+#: src/screens/Signup/StepInfo/index.tsx:365
msgid "Your location has been updated."
msgstr ""
@@ -11727,15 +11830,15 @@ msgstr ""
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:158
+#: src/screens/Signup/StepInfo/index.tsx:160
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:574
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,15 +11855,15 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr ""
-#: src/view/com/composer/Composer.tsx:576
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:511
+#: src/components/moderation/ReportDialog/index.tsx:505
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -11768,7 +11871,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:65
+#: src/components/verification/VerificationsDialog.tsx:66
msgid "Your verifications"
msgstr ""
diff --git a/src/locale/locales/bn/messages.po b/src/locale/locales/bn/messages.po
index 7ac6a207ec..a5cd300489 100644
--- a/src/locale/locales/bn/messages.po
+++ b/src/locale/locales/bn/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: bn\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Bengali\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -23,7 +23,7 @@ msgstr ""
msgid "\"{interestsDisplayName}\" category (active)"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:162
+#: src/screens/Messages/components/ChatListItem.tsx:163
msgid "(contains embedded content)"
msgstr ""
@@ -43,7 +43,7 @@ msgstr ""
msgid "{0, plural, one {# following} other {# following}}"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:265
+#: src/components/contacts/screens/ViewMatches.tsx:267
msgid "{0, plural, one {# friend found!} other {# friends found!}}"
msgstr ""
@@ -83,9 +83,9 @@ msgstr ""
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr ""
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:489
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
@@ -112,28 +116,28 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:455
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:500
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:79
msgid "{0, plural, other {{1} posts}}"
msgstr ""
#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
-#: src/screens/StarterPack/StarterPackScreen.tsx:492
+#: src/screens/StarterPack/StarterPackScreen.tsx:496
msgid "{0, plural, other {# people have}} used this starter pack!"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:360
+#: src/components/dialogs/StarterPackDialog.tsx:361
msgid "{0, plural, other {+# more}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -164,11 +168,11 @@ msgstr ""
msgid "{0} is live"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:188
+#: src/screens/Signup/StepHandle/index.tsx:185
msgid "{0} is not available"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
msgid "{0} joined this week"
msgstr ""
@@ -185,20 +189,20 @@ msgstr ""
msgid "{0} reacted {1}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:233
+#: src/screens/Messages/components/ChatListItem.tsx:234
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:577
-#: src/view/com/util/UserAvatar.tsx:595
+#: src/view/com/util/UserAvatar.tsx:575
+#: src/view/com/util/UserAvatar.tsx:593
msgid "{0}'s avatar"
msgstr ""
@@ -243,7 +247,7 @@ msgid "{DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Display name is too long. The
msgstr ""
#: src/lib/generate-starterpack.ts:104
-#: src/screens/StarterPack/Wizard/index.tsx:201
+#: src/screens/StarterPack/Wizard/index.tsx:202
msgid "{displayName}'s Starter Pack"
msgstr ""
@@ -432,11 +436,11 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:430
+#: src/screens/Settings/FindContactsSettings.tsx:435
msgid "{numMatches, plural, one {# contact found} other {# contacts found}}"
msgstr ""
@@ -449,25 +453,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago"
msgstr ""
#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:108
msgid "{rank}."
msgstr ""
#. trending topic time spent trending. should be as short as possible to fit in a pill
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:203
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200
msgid "{type}h ago"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:60
+#: src/components/verification/VerifierDialog.tsx:61
msgid "{userName} is a trusted verifier"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:67
+#: src/components/verification/VerificationsDialog.tsx:68
msgid "{userName} is verified"
msgstr ""
#. Possessive, meaning "the verifications of {userName}"
-#: src/components/verification/VerificationsDialog.tsx:69
+#: src/components/verification/VerificationsDialog.tsx:70
msgid "{userName}'s verifications"
msgstr ""
@@ -476,34 +480,34 @@ msgstr ""
msgid "+{computedTotal}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:524
+#: src/screens/StarterPack/Wizard/index.tsx:525
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:577
+#: src/screens/StarterPack/Wizard/index.tsx:578
msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:511
-#: src/screens/StarterPack/Wizard/index.tsx:565
+#: src/screens/StarterPack/Wizard/index.tsx:512
+#: src/screens/StarterPack/Wizard/index.tsx:566
msgid "<0>{0}0> and<1> 1><2>{1} 2>are included in your starter pack"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:558
+#: src/screens/StarterPack/Wizard/index.tsx:559
msgid "<0>{0}0> is included in your starter pack"
msgstr ""
-#: src/components/WhoCanReply.tsx:351
+#: src/components/WhoCanReply.tsx:352
msgid "<0>{0}0> members"
msgstr ""
@@ -516,7 +520,7 @@ msgstr ""
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:502
+#: src/screens/StarterPack/Wizard/index.tsx:503
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr ""
@@ -545,24 +549,24 @@ msgid "A collection of popular feeds you can find on Bluesky, including News, Bo
msgstr ""
#. If last message does not contain text, fall back to "{user} reacted to {a message}"
-#: src/screens/Messages/components/ChatListItem.tsx:212
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "a message"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:99
+#: src/components/contacts/screens/PhoneInput.tsx:101
msgid "A network error occurred. Please check your internet connection"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:96
-#: src/components/contacts/screens/VerifyNumber.tsx:152
+#: src/components/contacts/screens/VerifyNumber.tsx:98
+#: src/components/contacts/screens/VerifyNumber.tsx:154
msgid "A network error occurred. Please check your internet connection."
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:140
+#: src/components/contacts/screens/VerifyNumber.tsx:142
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:92
msgid "A new form of verification"
msgstr ""
@@ -580,8 +584,8 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
-#: src/Navigation.tsx:534
-#: src/screens/Settings/AboutSettings.tsx:75
+#: src/Navigation.tsx:535
+#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
#: src/screens/Settings/Settings.tsx:263
msgid "About"
@@ -615,11 +619,11 @@ msgstr ""
msgid "Accessibility"
msgstr ""
-#: src/Navigation.tsx:385
+#: src/Navigation.tsx:386
msgid "Accessibility Settings"
msgstr ""
-#: src/Navigation.tsx:401
+#: src/Navigation.tsx:402
#: src/screens/Login/LoginForm.tsx:194
#: src/screens/Settings/AccountSettings.tsx:51
#: src/screens/Settings/Settings.tsx:178
@@ -627,20 +631,20 @@ msgstr ""
msgid "Account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:419
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423
#: src/screens/Messages/components/RequestButtons.tsx:91
-#: src/view/com/profile/ProfileMenu.tsx:181
+#: src/view/com/profile/ProfileMenu.tsx:182
msgctxt "toast"
msgid "Account blocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:194
+#: src/view/com/profile/ProfileMenu.tsx:195
msgctxt "toast"
msgid "Account followed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442
-#: src/view/com/profile/ProfileMenu.tsx:157
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:446
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account muted"
msgstr ""
@@ -668,45 +672,45 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:84
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:290
-#: src/view/com/profile/ProfileMenu.tsx:171
+#: src/view/com/profile/ProfileMenu.tsx:172
msgctxt "toast"
msgid "Account unblocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:206
+#: src/view/com/profile/ProfileMenu.tsx:207
msgctxt "toast"
msgid "Account unfollowed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:432
-#: src/view/com/profile/ProfileMenu.tsx:147
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unmuted"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:97
+#: src/components/verification/VerifierDialog.tsx:98
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:182
+#: src/lib/hooks/useNotificationHandler.ts:185
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102
#: src/screens/Settings/NotificationSettings/index.tsx:192
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:502
+#: src/Navigation.tsx:503
msgid "Activity notifications"
msgstr ""
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:333
-#: src/components/dialogs/StarterPackDialog.tsx:374
-#: src/components/dialogs/StarterPackDialog.tsx:380
+#: src/components/dialogs/StarterPackDialog.tsx:375
+#: src/components/dialogs/StarterPackDialog.tsx:381
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:613
+#: src/screens/StarterPack/Wizard/index.tsx:614
msgid "Add {0} more to continue"
msgstr ""
@@ -714,8 +718,8 @@ msgstr ""
msgid "Add {displayName} to starter pack"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr ""
@@ -754,11 +758,11 @@ msgstr ""
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:856
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1496
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,7 +780,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:220
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
@@ -785,8 +789,8 @@ msgstr ""
msgid "Add media to post"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:520
-#: src/components/moderation/ReportDialog/index.tsx:524
+#: src/components/moderation/ReportDialog/index.tsx:514
+#: src/components/moderation/ReportDialog/index.tsx:518
msgid "Add more details (optional)"
msgstr ""
@@ -815,7 +819,7 @@ msgstr ""
msgid "Add recommended feeds"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:546
+#: src/screens/StarterPack/Wizard/index.tsx:547
msgid "Add some feeds to your starter pack!"
msgstr ""
@@ -831,18 +835,18 @@ msgstr ""
msgid "Add this feed to your feeds"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:342
-#: src/view/com/profile/ProfileMenu.tsx:345
+#: src/view/com/profile/ProfileMenu.tsx:343
+#: src/view/com/profile/ProfileMenu.tsx:346
msgid "Add to lists"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:141
+#: src/components/PostControls/BookmarkButton.tsx:142
msgid "Add to saved posts"
msgstr ""
#: src/components/dialogs/StarterPackDialog.tsx:176
-#: src/view/com/profile/ProfileMenu.tsx:333
-#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:334
+#: src/view/com/profile/ProfileMenu.tsx:337
msgid "Add to starter packs"
msgstr ""
@@ -850,7 +854,7 @@ msgstr ""
msgid "Add user to list"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:231
+#: src/ageAssurance/components/NoAccessScreen.tsx:228
msgid "Add your birthdate"
msgstr ""
@@ -859,19 +863,19 @@ msgstr ""
msgid "Added to list"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:258
+#: src/components/dialogs/StarterPackDialog.tsx:259
msgid "Added to starter pack"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:111
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:113
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:538
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr ""
@@ -879,10 +883,10 @@ msgstr ""
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr ""
@@ -894,8 +898,8 @@ msgstr ""
msgid "Adult content is disabled."
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr ""
@@ -911,17 +915,17 @@ msgstr ""
msgid "Age Assurance"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:69
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:71
msgid "Age assurance inquiry failed to send, please try again."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:77
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:79
msgctxt "toast"
msgid "Age assurance inquiry was submitted"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:354
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:199
+#: src/ageAssurance/components/NoAccessScreen.tsx:352
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:201
msgid "Age assurance only takes a few minutes"
msgstr ""
@@ -930,17 +934,17 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:174
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:91
-#: src/screens/StarterPack/StarterPackScreen.tsx:386
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:390
msgid "All accounts have been followed!"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:141
+#: src/components/contacts/screens/ViewMatches.tsx:143
msgid "All friends followed!"
msgstr ""
@@ -960,7 +964,7 @@ msgstr ""
msgid "Allow access to your direct messages"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:448
msgid "Allow anyone to reply"
msgstr ""
@@ -979,23 +983,23 @@ msgstr ""
msgid "Allow others to be notified of your posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:498
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:501
msgid "Allow people you follow to reply"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:512
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:515
msgid "Allow people you mention to reply"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:630
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:633
msgid "Allow quote posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:592
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:595
msgid "Allow users in {0} to reply"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:484
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:487
msgid "Allow your followers to reply"
msgstr ""
@@ -1009,15 +1013,15 @@ msgstr ""
msgid "Already have a code?"
msgstr ""
-#: src/components/WelcomeModal.tsx:189
+#: src/components/WelcomeModal.tsx:191
msgid "Already have an account?"
msgstr ""
-#: src/screens/Login/ChooseAccountForm.tsx:43
+#: src/screens/Login/ChooseAccountForm.tsx:44
msgid "Already signed in as @{0}"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1037,7 @@ msgstr ""
msgid "Alt text"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
msgid "Alt Text"
msgstr ""
@@ -1067,7 +1071,7 @@ msgstr ""
msgid "An error occurred while compressing the video."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:196
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,11 +1080,11 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:240
+#: src/components/contacts/screens/ViewMatches.tsx:242
msgid "An error occurred while hiding suggestion. {0}"
msgstr ""
@@ -1092,18 +1096,18 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:575
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:578
msgid "An error occurred while loading your lists :/"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:75
+#: src/components/StarterPack/QrCodeDialog.tsx:77
msgid "An error occurred while saving the QR code!"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:51
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:76
-#: src/screens/StarterPack/StarterPackScreen.tsx:352
-#: src/screens/StarterPack/StarterPackScreen.tsx:374
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:53
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:78
+#: src/screens/StarterPack/StarterPackScreen.tsx:356
+#: src/screens/StarterPack/StarterPackScreen.tsx:378
msgid "An error occurred while trying to follow all"
msgstr ""
@@ -1111,9 +1115,9 @@ msgstr ""
msgid "An error occurred while uploading the video."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:117
-#: src/components/contacts/screens/VerifyNumber.tsx:128
-#: src/components/contacts/screens/VerifyNumber.tsx:181
+#: src/components/contacts/screens/PhoneInput.tsx:119
+#: src/components/contacts/screens/VerifyNumber.tsx:130
+#: src/components/contacts/screens/VerifyNumber.tsx:183
msgid "An error occurred. {0}"
msgstr ""
@@ -1126,8 +1130,8 @@ msgstr ""
msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
-#: src/components/verification/VerifierDialog.tsx:86
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:85
+#: src/components/verification/VerifierDialog.tsx:87
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
@@ -1135,11 +1139,11 @@ msgstr ""
msgid "An issue not included in these options"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:38
+#: src/components/dms/dialogs/NewChatDialog.tsx:39
msgid "An issue occurred starting the chat"
msgstr ""
-#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47
+#: src/components/dms/dialogs/ShareViaChatDialog.tsx:48
msgid "An issue occurred while trying to open the chat"
msgstr ""
@@ -1152,7 +1156,7 @@ msgstr ""
msgid "An issue occurred, please try again."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:119
msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
msgstr ""
@@ -1165,7 +1169,7 @@ msgstr ""
msgid "an unknown labeler"
msgstr ""
-#: src/components/WhoCanReply.tsx:372
+#: src/components/WhoCanReply.tsx:373
msgid "and"
msgstr ""
@@ -1181,7 +1185,7 @@ msgstr ""
msgid "Animals"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:154
msgid "Animated GIF"
msgstr ""
@@ -1189,15 +1193,15 @@ msgstr ""
msgid "Announcement"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:38
msgid "Announcing verification on Bluesky"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:451
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:454
msgid "Anyone"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:134
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:136
msgid "Anyone can interact"
msgstr ""
@@ -1207,7 +1211,7 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:543
#: src/screens/Settings/AppIconSettings/index.tsx:64
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
@@ -1248,7 +1252,7 @@ msgstr ""
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:354
#: src/screens/Settings/AppPasswords.tsx:50
msgid "App Passwords"
msgstr ""
@@ -1289,7 +1293,7 @@ msgstr ""
msgid "Appeal this decision"
msgstr ""
-#: src/Navigation.tsx:393
+#: src/Navigation.tsx:394
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:228
#: src/screens/Settings/Settings.tsx:231
@@ -1306,12 +1310,12 @@ msgstr ""
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:670
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:678
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr ""
@@ -1319,11 +1323,11 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:200
+#: src/components/dms/MessageContextMenu.tsx:197
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:659
+#: src/screens/StarterPack/StarterPackScreen.tsx:664
msgid "Are you sure you want to delete this starter pack?"
msgstr ""
@@ -1332,11 +1336,11 @@ msgstr ""
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr ""
@@ -1344,11 +1348,7 @@ msgstr ""
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:805
-msgid "Are you sure you'd like to discard this draft?"
-msgstr ""
-
-#: src/view/com/composer/Composer.tsx:995
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -1364,12 +1364,12 @@ msgstr ""
msgid "Art"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:558
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:560
msgid "Assign topic for algo"
msgstr ""
@@ -1394,8 +1394,8 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:333
#: src/components/moderation/LabelsOnMeDialog.tsx:334
-#: src/screens/Login/ChooseAccountForm.tsx:91
-#: src/screens/Login/ChooseAccountForm.tsx:96
+#: src/screens/Login/ChooseAccountForm.tsx:92
+#: src/screens/Login/ChooseAccountForm.tsx:97
#: src/screens/Login/ForgotPasswordForm.tsx:123
#: src/screens/Login/ForgotPasswordForm.tsx:129
#: src/screens/Login/LoginForm.tsx:313
@@ -1404,11 +1404,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:184
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
-#: src/screens/StarterPack/Wizard/index.tsx:323
+#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr ""
@@ -1448,8 +1450,8 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:54
-#: src/components/dms/MessageProfileButton.tsx:58
+#: src/components/dms/dialogs/NewChatDialog.tsx:55
+#: src/components/dms/MessageProfileButton.tsx:59
#: src/screens/Messages/ChatList.tsx:371
#: src/screens/Messages/Conversation.tsx:228
msgid "Before you can message another user, you must first verify your email."
@@ -1463,7 +1465,7 @@ msgstr ""
msgid "Begin age assurance process"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:50
msgid "Begin the age assurance process by completing the fields below."
msgstr ""
@@ -1479,30 +1481,30 @@ msgstr ""
msgid "Birthday"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:821
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/view/com/profile/ProfileMenu.tsx:550
+#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Block"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:261
#: src/components/dms/ConvoMenu.tsx:264
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:706
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708
#: src/screens/Messages/components/RequestButtons.tsx:144
#: src/screens/Messages/components/RequestButtons.tsx:146
-#: src/view/com/profile/ProfileMenu.tsx:456
-#: src/view/com/profile/ProfileMenu.tsx:463
+#: src/view/com/profile/ProfileMenu.tsx:457
+#: src/view/com/profile/ProfileMenu.tsx:464
msgid "Block account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:813
-#: src/view/com/profile/ProfileMenu.tsx:533
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:816
+#: src/view/com/profile/ProfileMenu.tsx:534
msgid "Block Account?"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:97
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:100
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:90
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:93
msgid "Block accounts"
msgstr ""
@@ -1510,7 +1512,7 @@ msgstr ""
msgid "Block and Delete"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:125
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:118
msgid "Block list"
msgstr ""
@@ -1518,7 +1520,7 @@ msgstr ""
msgid "Block or report"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:120
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:113
msgid "Block these accounts?"
msgstr ""
@@ -1543,13 +1545,13 @@ msgstr ""
msgid "Blocked accounts"
msgstr ""
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:195
#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:815
-#: src/view/com/profile/ProfileMenu.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818
+#: src/view/com/profile/ProfileMenu.tsx:546
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -1561,11 +1563,11 @@ msgstr ""
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:122
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:115
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:542
+#: src/view/com/profile/ProfileMenu.tsx:543
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr ""
@@ -1578,7 +1580,7 @@ msgstr ""
msgid "Bluesky"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:700
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr ""
@@ -1587,7 +1589,7 @@ msgctxt "Name of app icon variant"
msgid "Bluesky Classic™"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:232
+#: src/components/contacts/screens/GetContacts.tsx:234
msgid "Bluesky helps friends find each other by creating an encoded digital fingerprint, called a \"hash\", and then looking for matching hashes."
msgstr ""
@@ -1603,7 +1605,7 @@ msgstr ""
msgid "Bluesky is better with friends!"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:35
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:42
msgid "Bluesky is more fun with friends"
msgstr ""
@@ -1611,7 +1613,7 @@ msgstr ""
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:312
+#: src/components/contacts/screens/ViewMatches.tsx:314
msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>"
msgstr ""
@@ -1619,11 +1621,11 @@ msgstr ""
msgid "Bluesky Social Terms of Service"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:542
+#: src/screens/Settings/FindContactsSettings.tsx:548
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
@@ -1631,7 +1633,7 @@ msgstr ""
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:133
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -1664,20 +1666,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:777
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:906
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:887
-#: src/components/FeedInterstitials.tsx:890
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:915
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -1698,7 +1700,7 @@ msgstr ""
msgid "Browse starter pack {displayName}"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90
msgid "Browse topic {0}"
msgstr ""
@@ -1710,18 +1712,18 @@ msgstr ""
msgid "Business"
msgstr ""
-#: src/screens/Bookmarks/index.tsx:284
+#: src/screens/Bookmarks/index.tsx:304
msgid "Button to go back to the home timeline"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:842
+#: src/components/moderation/ReportDialog/index.tsx:836
#: src/screens/Search/components/StarterPackCard.tsx:106
-#: src/screens/Search/Explore.tsx:943
+#: src/screens/Search/Explore.tsx:932
msgid "By {0}"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:453
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:455
msgid "By <0>{0}0>"
msgstr ""
@@ -1729,7 +1731,7 @@ msgstr ""
msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:294
+#: src/components/contacts/screens/PhoneInput.tsx:296
msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more0>"
msgstr ""
@@ -1754,10 +1756,10 @@ msgid "Camera"
msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:128
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:134
-#: src/components/contacts/screens/GetContacts.tsx:289
-#: src/components/contacts/screens/GetContacts.tsx:294
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:130
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:136
+#: src/components/contacts/screens/GetContacts.tsx:291
+#: src/components/contacts/screens/GetContacts.tsx:296
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:152
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:157
#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
@@ -1770,8 +1772,8 @@ msgstr ""
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1790,8 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1050
-#: src/view/com/composer/Composer.tsx:1061
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1819,10 +1821,10 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:107
-#: src/components/PostControls/index.tsx:138
-#: src/components/PostControls/index.tsx:166
-#: src/state/shell/composer/index.tsx:95
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:139
+#: src/components/PostControls/index.tsx:167
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -1861,7 +1863,7 @@ msgstr ""
msgid "Change Handle"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:437
+#: src/components/moderation/ReportDialog/index.tsx:431
msgid "Change moderation service"
msgstr ""
@@ -1874,11 +1876,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:302
+#: src/components/moderation/ReportDialog/index.tsx:296
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:382
+#: src/components/moderation/ReportDialog/index.tsx:376
msgid "Change report reason"
msgstr ""
@@ -1899,11 +1901,11 @@ msgstr ""
msgid "Changes saved"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:99
-#: src/Navigation.tsx:559
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/lib/hooks/useNotificationHandler.ts:102
+#: src/Navigation.tsx:560
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr ""
@@ -1913,11 +1915,11 @@ msgctxt "toast"
msgid "Chat deleted"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:114
+#: src/lib/hooks/useNotificationHandler.ts:117
msgid "Chat messages - silent"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:105
+#: src/lib/hooks/useNotificationHandler.ts:108
msgid "Chat messages - sound"
msgstr ""
@@ -1926,7 +1928,7 @@ msgctxt "toast"
msgid "Chat muted"
msgstr ""
-#: src/Navigation.tsx:569
+#: src/Navigation.tsx:570
#: src/screens/Messages/components/InboxPreview.tsx:22
msgid "Chat request inbox"
msgstr ""
@@ -1938,7 +1940,7 @@ msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:78
-#: src/Navigation.tsx:564
+#: src/Navigation.tsx:565
#: src/screens/Messages/ChatList.tsx:81
#: src/screens/Messages/ChatList.tsx:85
#: src/screens/Messages/ChatList.tsx:380
@@ -1985,15 +1987,15 @@ msgstr ""
msgid "Choose domain verification method"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:217
+#: src/screens/StarterPack/Wizard/index.tsx:218
msgid "Choose Feeds"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:213
+#: src/screens/StarterPack/Wizard/index.tsx:214
msgid "Choose People"
msgstr ""
@@ -2017,11 +2019,11 @@ msgstr ""
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:273
+#: src/screens/Signup/StepInfo/index.tsx:271
msgid "Choose your password"
msgstr ""
-#: src/screens/Signup/index.tsx:181
+#: src/screens/Signup/index.tsx:192
msgid "Choose your username"
msgstr ""
@@ -2033,8 +2035,8 @@ msgstr ""
msgid "Clear all storage data (restart after this)"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:116
-#: src/screens/Settings/AboutSettings.tsx:120
+#: src/screens/Settings/AboutSettings.tsx:114
+#: src/screens/Settings/AboutSettings.tsx:118
msgid "Clear image cache"
msgstr ""
@@ -2050,11 +2052,11 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:126
+#: src/ageAssurance/components/NoAccessScreen.tsx:123
msgid "Click here to contact our support team"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:245
+#: src/ageAssurance/components/NoAccessScreen.tsx:242
msgid "Click here to log out"
msgstr ""
@@ -2063,7 +2065,7 @@ msgid "Click here to restart the verification process."
msgstr ""
#: src/ageAssurance/components/NoAccessScreen.tsx:103
-#: src/ageAssurance/components/NoAccessScreen.tsx:228
+#: src/ageAssurance/components/NoAccessScreen.tsx:225
msgid "Click here to update your birthdate"
msgstr ""
@@ -2087,17 +2089,17 @@ msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:270
#: src/ageAssurance/components/RedirectOverlay.tsx:320
#: src/ageAssurance/components/RedirectOverlay.tsx:326
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:172
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:231
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:173
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:179
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:232
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:238
#: src/components/dialogs/GifSelect.tsx:269
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:198
#: src/components/dialogs/SearchablePeopleList.tsx:295
@@ -2111,14 +2113,14 @@ msgstr ""
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:445
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:204
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
-#: src/components/verification/VerificationsDialog.tsx:144
-#: src/components/verification/VerifierDialog.tsx:150
-#: src/components/WhoCanReply.tsx:234
-#: src/components/WhoCanReply.tsx:241
+#: src/components/verification/VerificationsDialog.tsx:145
+#: src/components/verification/VerifierDialog.tsx:147
+#: src/components/WhoCanReply.tsx:235
+#: src/components/WhoCanReply.tsx:242
#: src/screens/Settings/components/ChangePasswordDialog.tsx:287
#: src/screens/Settings/components/ChangePasswordDialog.tsx:292
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:335
@@ -2143,15 +2145,15 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:222
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:228
#: src/components/dialogs/GifSelect.tsx:263
-#: src/components/verification/VerificationsDialog.tsx:136
-#: src/components/verification/VerifierDialog.tsx:142
+#: src/components/verification/VerificationsDialog.tsx:137
+#: src/components/verification/VerifierDialog.tsx:139
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:204
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:298
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:330
msgid "Close dialog"
msgstr ""
-#: src/view/shell/index.web.tsx:130
+#: src/view/shell/index.web.tsx:131
msgid "Close drawer menu"
msgstr ""
@@ -2168,7 +2170,8 @@ msgstr ""
msgid "Close image"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr ""
@@ -2182,7 +2185,7 @@ msgstr ""
msgid "Close this dialog"
msgstr ""
-#: src/components/WelcomeModal.tsx:214
+#: src/components/WelcomeModal.tsx:216
msgid "Close welcome modal"
msgstr ""
@@ -2190,7 +2193,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1058
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2229,25 +2232,25 @@ msgid "Comics"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:344
#: src/view/screens/CommunityGuidelines.tsx:37
msgid "Community Guidelines"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:322
+#: src/screens/Onboarding/StepFinished/index.tsx:325
msgid "Complete onboarding and start using your account"
msgstr ""
-#: src/screens/Signup/index.tsx:183
+#: src/screens/Signup/index.tsx:194
msgid "Complete the challenge"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:143
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2258,7 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1891
+#: src/view/com/composer/Composer.tsx:2295
msgid "Compressing video..."
msgstr ""
@@ -2263,7 +2266,6 @@ msgstr ""
msgid "Configure content filtering setting for category: {name}"
msgstr ""
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2274,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr ""
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2287,8 +2289,8 @@ msgstr ""
msgid "Confirm delete account"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:368
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:95
+#: src/ageAssurance/components/NoAccessScreen.tsx:366
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:97
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:40
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:105
msgid "Confirm your location"
@@ -2310,36 +2312,36 @@ msgid "Connecting..."
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:296
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:207
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:208
msgid "Connection issue"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:305
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:138
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:29
+#: src/ageAssurance/components/NoAccessScreen.tsx:303
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:140
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:30
msgid "Contact our moderation team"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155
-#: src/screens/Signup/index.tsx:222
-#: src/screens/Signup/index.tsx:225
+#: src/screens/Signup/index.tsx:233
+#: src/screens/Signup/index.tsx:236
msgid "Contact support"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:57
-#: src/screens/Settings/FindContactsSettings.tsx:154
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:64
+#: src/screens/Settings/FindContactsSettings.tsx:156
msgid "Contact sync is not available on this device, as the app is unable to access your contacts."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:93
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:95
msgid "Contact us"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:498
+#: src/screens/Settings/FindContactsSettings.tsx:504
msgid "Contacts imported"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:471
+#: src/screens/Settings/FindContactsSettings.tsx:477
msgid "Contacts removed"
msgstr ""
@@ -2352,7 +2354,7 @@ msgstr ""
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:518
+#: src/Navigation.tsx:519
msgid "Content and Media"
msgstr ""
@@ -2364,7 +2366,7 @@ msgstr ""
msgid "Content filters"
msgstr ""
-#: src/screens/Search/modules/ExploreRecommendations.tsx:59
+#: src/screens/Search/modules/ExploreRecommendations.tsx:60
msgid "Content from across the network we think you might like."
msgstr ""
@@ -2389,7 +2391,7 @@ msgstr ""
msgid "Content Warning"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr ""
@@ -2399,9 +2401,9 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
-#: src/screens/Onboarding/StepInterests/index.tsx:91
+#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:276
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr ""
@@ -2418,9 +2420,9 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:88
+#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2436,18 +2438,18 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:198
+#: src/screens/Messages/components/ChatListItem.tsx:199
msgid "Conversation deleted"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:151
+#: src/screens/Settings/AboutSettings.tsx:149
msgid "Copied build version to clipboard"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:58
#: src/components/PostControls/DiscoverDebug.tsx:36
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:249
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:257
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:73
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
msgid "Copied to clipboard"
@@ -2458,11 +2460,11 @@ msgstr ""
msgid "Copied!"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:127
+#: src/screens/Settings/AboutSettings.tsx:125
msgid "Copies build version to clipboard"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/components/StarterPack/QrCodeDialog.tsx:194
msgid "Copy"
msgstr ""
@@ -2470,13 +2472,13 @@ msgstr ""
msgid "Copy App Password"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:493
-#: src/view/com/profile/ProfileMenu.tsx:496
+#: src/view/com/profile/ProfileMenu.tsx:494
+#: src/view/com/profile/ProfileMenu.tsx:497
msgid "Copy at:// URI"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156
msgid "Copy author DID"
msgstr ""
@@ -2486,8 +2488,8 @@ msgid "Copy code"
msgstr ""
#: src/screens/Settings/components/ChangeHandleDialog.tsx:502
-#: src/view/com/profile/ProfileMenu.tsx:502
-#: src/view/com/profile/ProfileMenu.tsx:505
+#: src/view/com/profile/ProfileMenu.tsx:503
+#: src/view/com/profile/ProfileMenu.tsx:506
msgid "Copy DID"
msgstr ""
@@ -2495,52 +2497,52 @@ msgstr ""
msgid "Copy host"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:113
-#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/components/StarterPack/ShareDialog.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:624
msgid "Copy link"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:120
+#: src/components/StarterPack/ShareDialog.tsx:121
msgid "Copy Link"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:165
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:169
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:159
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:163
msgid "Copy link to list"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:128
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:131
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90
msgid "Copy link to post"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:269
-#: src/view/com/profile/ProfileMenu.tsx:280
+#: src/view/com/profile/ProfileMenu.tsx:270
+#: src/view/com/profile/ProfileMenu.tsx:281
msgid "Copy link to profile"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:612
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link to starter pack"
msgstr ""
+#: src/components/dms/MessageContextMenu.tsx:143
#: src/components/dms/MessageContextMenu.tsx:146
-#: src/components/dms/MessageContextMenu.tsx:149
msgid "Copy message text"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147
msgid "Copy post at:// URI"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:512
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:513
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515
msgid "Copy post text"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:178
+#: src/components/StarterPack/QrCodeDialog.tsx:180
msgid "Copy QR code"
msgstr ""
@@ -2550,7 +2552,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:349
#: src/view/screens/CopyrightPolicy.tsx:34
msgid "Copyright Policy"
msgstr ""
@@ -2567,13 +2569,13 @@ msgstr ""
msgid "Could not find profile"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:208
-#: src/screens/Settings/FindContactsSettings.tsx:397
+#: src/screens/Settings/FindContactsSettings.tsx:211
+#: src/screens/Settings/FindContactsSettings.tsx:402
msgid "Could not follow all matches - please check your network connection."
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:214
-#: src/screens/Settings/FindContactsSettings.tsx:403
+#: src/screens/Settings/FindContactsSettings.tsx:217
+#: src/screens/Settings/FindContactsSettings.tsx:408
msgid "Could not follow all matches. {0}"
msgstr ""
@@ -2582,7 +2584,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr ""
@@ -2608,11 +2610,11 @@ msgstr ""
msgid "Could not update notification settings"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:168
+#: src/components/contacts/screens/GetContacts.tsx:170
msgid "Could not upload contacts. {0}"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:162
+#: src/components/contacts/screens/GetContacts.tsx:164
msgid "Could not upload contacts. You need to re-verify your phone number to proceed"
msgstr ""
@@ -2633,18 +2635,18 @@ msgstr ""
msgid "Create a list"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:163
+#: src/components/StarterPack/QrCodeDialog.tsx:165
msgid "Create a QR code for a starter pack"
msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:206
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
-#: src/Navigation.tsx:599
+#: src/Navigation.tsx:600
msgid "Create a starter pack"
msgstr ""
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2652,20 +2654,20 @@ msgstr ""
msgid "Create a starter pack for me"
msgstr ""
-#: src/components/WelcomeModal.tsx:155
-#: src/components/WelcomeModal.tsx:163
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/components/WelcomeModal.tsx:157
+#: src/components/WelcomeModal.tsx:165
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
msgstr ""
-#: src/screens/Signup/index.tsx:124
+#: src/screens/Signup/index.tsx:135
msgid "Create Account"
msgstr ""
@@ -2676,8 +2678,8 @@ msgstr ""
msgid "Create an account"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:311
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:312
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
msgid "Create an account without using this starter pack"
msgstr ""
@@ -2693,14 +2695,14 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
-#: src/components/moderation/ReportDialog/index.tsx:702
-#: src/components/moderation/ReportDialog/index.tsx:748
+#: src/components/moderation/ReportDialog/index.tsx:696
+#: src/components/moderation/ReportDialog/index.tsx:742
msgid "Create report for {0}"
msgstr ""
@@ -2766,13 +2768,13 @@ msgstr ""
msgid "Dark theme"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:301
+#: src/screens/Signup/StepInfo/index.tsx:299
msgid "Date of birth"
msgstr ""
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr ""
@@ -2796,14 +2798,14 @@ msgstr ""
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:202
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:762
+#: src/components/dms/MessageContextMenu.tsx:199
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:280
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:274
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:601
-#: src/screens/StarterPack/StarterPackScreen.tsx:690
-#: src/screens/StarterPack/StarterPackScreen.tsx:762
+#: src/screens/StarterPack/StarterPackScreen.tsx:606
+#: src/screens/StarterPack/StarterPackScreen.tsx:695
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Delete"
msgstr ""
@@ -2833,7 +2835,7 @@ msgstr ""
msgid "Delete chat declaration record"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:539
+#: src/screens/Settings/FindContactsSettings.tsx:545
msgid "Delete contacts"
msgstr ""
@@ -2848,20 +2850,20 @@ msgstr ""
msgid "Delete Conversation"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:160
+#: src/components/dms/MessageContextMenu.tsx:157
msgid "Delete for me"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:204
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:207
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:198
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:201
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:198
+#: src/components/dms/MessageContextMenu.tsx:195
msgid "Delete message"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:158
+#: src/components/dms/MessageContextMenu.tsx:155
msgid "Delete message for me"
msgstr ""
@@ -2869,26 +2871,26 @@ msgstr ""
msgid "Delete my account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745
-#: src/view/com/composer/Composer.tsx:969
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:595
-#: src/screens/StarterPack/StarterPackScreen.tsx:753
+#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:758
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:656
+#: src/screens/StarterPack/StarterPackScreen.tsx:661
msgid "Delete starter pack?"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:269
msgid "Delete this list?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:757
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:760
msgid "Delete this post?"
msgstr ""
@@ -2897,11 +2899,11 @@ msgid "Deleted"
msgstr ""
#: src/components/dms/MessagesListHeader.tsx:121
-#: src/screens/Messages/components/ChatListItem.tsx:131
+#: src/screens/Messages/components/ChatListItem.tsx:132
msgid "Deleted Account"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:283
+#: src/components/contacts/screens/PhoneInput.tsx:285
msgid "Deleted by Plivo after verification"
msgstr ""
@@ -2923,21 +2925,21 @@ msgstr ""
msgid "Descriptive alt text"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:650
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660
msgid "Detach quote"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:793
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796
msgid "Detach quote post?"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:140
+#: src/screens/Settings/AboutSettings.tsx:138
msgctxt "toast"
msgid "Developer mode disabled"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:134
+#: src/screens/Settings/AboutSettings.tsx:132
msgctxt "toast"
msgid "Developer mode enabled"
msgstr ""
@@ -2947,7 +2949,7 @@ msgstr ""
msgid "Developer options"
msgstr ""
-#: src/components/WhoCanReply.tsx:220
+#: src/components/WhoCanReply.tsx:221
msgid "Dialog: adjust who can interact with this post"
msgstr ""
@@ -2973,11 +2975,11 @@ msgstr ""
msgid "Disable haptic feedback"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:622
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:625
msgid "Disable quote posts of this post"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:459
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:462
msgid "Disable replies entirely"
msgstr ""
@@ -2996,8 +2998,11 @@ msgstr ""
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:807
-#: src/view/com/composer/Composer.tsx:1002
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr ""
@@ -3006,11 +3011,12 @@ msgstr ""
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:804
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:994
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr ""
@@ -3024,7 +3030,7 @@ msgstr ""
msgid "Discover new custom feeds"
msgstr ""
-#: src/screens/Search/Explore.tsx:436
+#: src/screens/Search/Explore.tsx:438
#: src/view/screens/Feeds.tsx:730
msgid "Discover New Feeds"
msgstr ""
@@ -3033,11 +3039,11 @@ msgstr ""
msgid "Dismiss"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:75
+#: src/components/contacts/FindContactsBannerNUX.tsx:76
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1815
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr ""
@@ -3049,11 +3055,16 @@ msgstr ""
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr ""
-#: src/components/FeedInterstitials.tsx:587
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3096,8 +3107,8 @@ msgstr ""
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:104
-#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:37
+#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:105
+#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:38
msgid "Don't show again"
msgstr ""
@@ -3107,8 +3118,8 @@ msgstr ""
#: src/components/contacts/components/InviteInfo.tsx:72
#: src/components/contacts/components/InviteInfo.tsx:78
-#: src/components/contacts/screens/ViewMatches.tsx:392
-#: src/components/contacts/screens/ViewMatches.tsx:409
+#: src/components/contacts/screens/ViewMatches.tsx:394
+#: src/components/contacts/screens/ViewMatches.tsx:411
#: src/components/dialogs/BirthDateSettings.tsx:196
#: src/components/dialogs/BirthDateSettings.tsx:203
#: src/components/dialogs/ServerInput.tsx:240
@@ -3121,8 +3132,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3158,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1123
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr ""
@@ -3164,6 +3175,12 @@ msgstr ""
msgid "Doxxing"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr ""
@@ -3214,9 +3231,9 @@ msgstr ""
#: src/screens/Settings/AccountSettings.tsx:145
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:252
-#: src/screens/StarterPack/StarterPackScreen.tsx:590
-#: src/screens/StarterPack/Wizard/index.tsx:339
-#: src/screens/StarterPack/Wizard/index.tsx:344
+#: src/screens/StarterPack/StarterPackScreen.tsx:595
+#: src/screens/StarterPack/Wizard/index.tsx:340
+#: src/screens/StarterPack/Wizard/index.tsx:345
msgid "Edit"
msgstr ""
@@ -3226,7 +3243,7 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:439
+#: src/view/com/util/UserAvatar.tsx:440
#: src/view/com/util/UserBanner.tsx:121
msgid "Edit avatar"
msgstr ""
@@ -3241,8 +3258,8 @@ msgstr ""
msgid "Edit image"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:724
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740
msgid "Edit interaction settings"
msgstr ""
@@ -3251,13 +3268,13 @@ msgstr ""
msgid "Edit interests"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:196
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:199
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:190
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:193
msgid "Edit list details"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:376
+#: src/view/com/profile/ProfileMenu.tsx:357
+#: src/view/com/profile/ProfileMenu.tsx:377
msgid "Edit live status"
msgstr ""
@@ -3265,7 +3282,7 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:359
#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr ""
@@ -3278,24 +3295,24 @@ msgstr ""
msgid "Edit People"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:114
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:260
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:115
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:263
msgid "Edit post interaction settings"
msgstr ""
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
+#: src/screens/StarterPack/StarterPackScreen.tsx:587
msgid "Edit starter pack"
msgstr ""
@@ -3303,11 +3320,11 @@ msgstr ""
msgid "Edit user list"
msgstr ""
-#: src/components/WhoCanReply.tsx:114
+#: src/components/WhoCanReply.tsx:115
msgid "Edit who can reply"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:605
msgid "Edit your starter pack"
msgstr ""
@@ -3320,7 +3337,7 @@ msgid "Either the creator of this list has blocked you or you have blocked the c
msgstr ""
#: src/screens/Settings/AccountSettings.tsx:66
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Signup/StepInfo/index.tsx:223
msgid "Email"
msgstr ""
@@ -3359,8 +3376,8 @@ msgstr ""
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124
msgid "Embed post"
msgstr ""
@@ -3409,7 +3426,7 @@ msgstr ""
msgid "Enable push notifications"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:623
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:626
msgid "Enable quote posts of this post"
msgstr ""
@@ -3426,8 +3443,8 @@ msgstr ""
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:155
-#: src/screens/Settings/ContentAndMediaSettings.tsx:169
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr ""
@@ -3445,7 +3462,7 @@ msgstr ""
msgid "Ensure you have selected a language for each subtitle file."
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:228
+#: src/components/contacts/screens/VerifyNumber.tsx:230
msgid "Enter 6-digit code that was sent to your phone number"
msgstr ""
@@ -3468,7 +3485,7 @@ msgstr ""
msgid "Enter fullscreen"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:223
+#: src/components/contacts/screens/VerifyNumber.tsx:225
msgid "Enter the 6-digit code sent to {prettyNumber}"
msgstr ""
@@ -3489,7 +3506,7 @@ msgid "Enter your birthdate"
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:245
+#: src/screens/Signup/StepInfo/index.tsx:243
msgid "Enter your email address"
msgstr ""
@@ -3497,7 +3514,7 @@ msgstr ""
msgid "Enter your password"
msgstr ""
-#: src/screens/Login/index.tsx:137
+#: src/screens/Login/index.tsx:138
msgid "Enter your username and password"
msgstr ""
@@ -3505,16 +3522,16 @@ msgstr ""
msgid "Enters full screen"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:236
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1900
+#: src/view/com/composer/Composer.tsx:2304
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:90
+#: src/screens/Settings/FindContactsSettings.tsx:92
msgid "Error getting the latest data."
msgstr ""
@@ -3534,7 +3551,7 @@ msgstr ""
msgid "Error occurred while saving file"
msgstr ""
-#: src/screens/Signup/StepCaptcha/index.tsx:125
+#: src/screens/Signup/StepCaptcha/index.tsx:126
msgid "Error receiving captcha response."
msgstr ""
@@ -3542,18 +3559,18 @@ msgstr ""
msgid "Error: {error}"
msgstr ""
-#: src/components/WhoCanReply.tsx:83
+#: src/components/WhoCanReply.tsx:84
msgid "Everybody can reply"
msgstr ""
-#: src/components/WhoCanReply.tsx:277
+#: src/components/WhoCanReply.tsx:278
msgid "Everybody can reply to this post."
msgstr ""
#: src/screens/Messages/Settings.tsx:88
#: src/screens/Messages/Settings.tsx:91
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:167
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:177
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178
msgid "Everyone"
msgstr ""
@@ -3578,11 +3595,7 @@ msgstr ""
msgid "Exits account deletion process"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr ""
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr ""
@@ -3598,7 +3611,7 @@ msgstr ""
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:995
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr ""
@@ -3636,15 +3649,15 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:788
+#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
-#: src/components/WelcomeModal.tsx:168
-#: src/components/WelcomeModal.tsx:177
+#: src/components/WelcomeModal.tsx:170
+#: src/components/WelcomeModal.tsx:179
msgid "Explore the app"
msgstr ""
@@ -3672,7 +3685,7 @@ msgstr ""
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr ""
-#: src/Navigation.tsx:377
+#: src/Navigation.tsx:378
#: src/screens/Settings/ExternalMediaPreferences.tsx:34
msgid "External Media Preferences"
msgstr ""
@@ -3687,11 +3700,11 @@ msgid "Failed to accept chat"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:66
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageContextMenu.tsx:98
msgid "Failed to add emoji reaction"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:270
+#: src/components/dialogs/StarterPackDialog.tsx:271
msgid "Failed to add to starter pack"
msgstr ""
@@ -3703,12 +3716,12 @@ msgstr ""
msgid "Failed to create app password. Please try again."
msgstr ""
-#: src/components/dms/MessageProfileButton.tsx:36
+#: src/components/dms/MessageProfileButton.tsx:37
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:262
-#: src/screens/StarterPack/Wizard/index.tsx:270
+#: src/screens/StarterPack/Wizard/index.tsx:263
+#: src/screens/StarterPack/Wizard/index.tsx:271
msgid "Failed to create starter pack"
msgstr ""
@@ -3718,31 +3731,31 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:81
+#: src/components/dms/MessageContextMenu.tsx:78
msgid "Failed to delete message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:214
msgid "Failed to delete post, please try again"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:724
+#: src/screens/StarterPack/StarterPackScreen.tsx:729
msgid "Failed to delete starter pack"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:121
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:145
+#: src/components/contacts/screens/ViewMatches.tsx:147
msgid "Failed to follow all your friends, please try again"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:233
+#: src/components/contacts/screens/ViewMatches.tsx:235
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:578
+#: src/components/contacts/screens/ViewMatches.tsx:581
msgid "Failed to launch SMS app"
msgstr ""
@@ -3751,10 +3764,10 @@ msgstr ""
msgid "Failed to load conversations"
msgstr ""
-#: src/screens/Search/Explore.tsx:472
-#: src/screens/Search/Explore.tsx:524
-#: src/screens/Search/Explore.tsx:562
-#: src/screens/Search/Explore.tsx:601
+#: src/screens/Search/Explore.tsx:474
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr ""
@@ -3784,14 +3797,14 @@ msgstr ""
msgid "Failed to load preference."
msgstr ""
-#: src/screens/Search/Explore.tsx:465
-#: src/screens/Search/Explore.tsx:517
-#: src/screens/Search/Explore.tsx:555
-#: src/screens/Search/Explore.tsx:594
+#: src/screens/Search/Explore.tsx:467
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/screens/Search/Explore.tsx:375
+#: src/screens/Search/Explore.tsx:377
msgid "Failed to load suggested follows"
msgstr ""
@@ -3804,20 +3817,20 @@ msgstr ""
msgid "Failed to pin post"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:481
+#: src/screens/Settings/FindContactsSettings.tsx:487
msgid "Failed to remove data due to a network error, please check your internet connection."
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:487
+#: src/screens/Settings/FindContactsSettings.tsx:493
msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:60
-#: src/components/dms/MessageContextMenu.tsx:95
+#: src/components/dms/MessageContextMenu.tsx:92
msgid "Failed to remove emoji reaction"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:289
+#: src/components/dialogs/StarterPackDialog.tsx:290
msgid "Failed to remove from starter pack"
msgstr ""
@@ -3829,6 +3842,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3858,11 +3875,11 @@ msgstr ""
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:238
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:104
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:106
msgid "Failed to unpin list"
msgstr ""
@@ -3910,11 +3927,12 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:293
+#: src/Navigation.tsx:294
msgid "Feed"
msgstr ""
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr ""
@@ -3927,7 +3945,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:355
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:356
msgid "Feed menu"
msgstr ""
@@ -3941,24 +3959,24 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:296
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:320
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:300
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:324
msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:584
+#: src/Navigation.tsx:585
#: src/screens/SavedFeeds.tsx:108
#: src/screens/Search/SearchResults.tsx:78
-#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/screens/StarterPack/StarterPackScreen.tsx:193
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr ""
@@ -3972,7 +3990,7 @@ msgctxt "toast"
msgid "Feeds updated!"
msgstr ""
-#: src/screens/Search/modules/ExploreRecommendations.tsx:65
+#: src/screens/Search/modules/ExploreRecommendations.tsx:66
msgid "Feeds we think you might like."
msgstr ""
@@ -4000,11 +4018,11 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:161
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "Filter who you receive notifications from"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:328
+#: src/screens/Onboarding/StepFinished/index.tsx:331
msgid "Finalizing"
msgstr ""
@@ -4016,18 +4034,18 @@ msgstr ""
msgid "Finance"
msgstr ""
-#: src/view/com/posts/CustomFeedEmptyState.tsx:71
+#: src/view/com/posts/CustomFeedEmptyState.tsx:72
#: src/view/com/posts/FollowingEmptyState.tsx:53
#: src/view/com/posts/FollowingEndOfFeed.tsx:54
msgid "Find accounts to follow"
msgstr ""
-#: src/Navigation.tsx:425
-#: src/Navigation.tsx:626
+#: src/Navigation.tsx:426
+#: src/Navigation.tsx:627
msgid "Find Contacts"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:76
+#: src/screens/Settings/FindContactsSettings.tsx:78
msgid "Find Friends"
msgstr ""
@@ -4036,15 +4054,15 @@ msgstr ""
msgid "Find friends from contacts"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:270
-#: src/components/contacts/screens/GetContacts.tsx:284
+#: src/components/contacts/screens/GetContacts.tsx:272
+#: src/components/contacts/screens/GetContacts.tsx:286
msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:431
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr ""
@@ -4057,8 +4075,8 @@ msgstr ""
msgid "Find your friends"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:38
-#: src/screens/Settings/FindContactsSettings.tsx:123
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:45
+#: src/screens/Settings/FindContactsSettings.tsx:125
msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more0>"
msgstr ""
@@ -4066,11 +4084,11 @@ msgstr ""
msgid "Find your people"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:278
+#: src/components/contacts/screens/GetContacts.tsx:280
msgid "Finding friends..."
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:218
+#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Finish"
msgstr ""
@@ -4097,24 +4115,24 @@ msgstr ""
#: src/components/ProfileCard.tsx:559
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:140
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:879
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:127
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:856
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr ""
-#: src/state/shell/progress-guide.tsx:231
+#: src/state/shell/progress-guide.tsx:232
msgid "Follow 10 accounts"
msgstr ""
@@ -4126,41 +4144,41 @@ msgstr ""
msgid "Follow 7 accounts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:312
-#: src/view/com/profile/ProfileMenu.tsx:323
+#: src/view/com/profile/ProfileMenu.tsx:313
+#: src/view/com/profile/ProfileMenu.tsx:324
msgid "Follow account"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:273
-#: src/components/contacts/screens/ViewMatches.tsx:288
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:265
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:156
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:163
-#: src/screens/Settings/FindContactsSettings.tsx:438
-#: src/screens/Settings/FindContactsSettings.tsx:448
-#: src/screens/StarterPack/StarterPackScreen.tsx:438
-#: src/screens/StarterPack/StarterPackScreen.tsx:446
+#: src/components/contacts/screens/ViewMatches.tsx:275
+#: src/components/contacts/screens/ViewMatches.tsx:290
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
+#: src/screens/Settings/FindContactsSettings.tsx:443
+#: src/screens/Settings/FindContactsSettings.tsx:453
+#: src/screens/StarterPack/StarterPackScreen.tsx:442
+#: src/screens/StarterPack/StarterPackScreen.tsx:450
msgid "Follow all"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:138
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:116
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:391
+#: src/screens/Settings/FindContactsSettings.tsx:396
msgid "Followed all matches"
msgstr ""
@@ -4180,7 +4198,7 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:248
msgid "Followers of @{0} that you know"
msgstr ""
@@ -4194,9 +4212,9 @@ msgstr ""
#: src/components/ProfileCard.tsx:546
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:143
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:877
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,7 +4232,7 @@ msgstr ""
msgid "Following {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:855
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr ""
@@ -4223,7 +4241,7 @@ msgstr ""
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:364
+#: src/Navigation.tsx:365
#: src/screens/Settings/FollowingFeedPreferences.tsx:56
msgid "Following Feed Preferences"
msgstr ""
@@ -4264,8 +4282,8 @@ msgstr ""
msgid "For the best experience, we recommend using the theme font."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:323
-#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:91
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4277,8 +4295,8 @@ msgstr ""
msgid "Forget the noise"
msgstr ""
-#: src/screens/Login/index.tsx:167
-#: src/screens/Login/index.tsx:182
+#: src/screens/Login/index.tsx:168
+#: src/screens/Login/index.tsx:183
msgid "Forgot Password"
msgstr ""
@@ -4294,7 +4312,7 @@ msgstr ""
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:157
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158
msgid "From"
msgstr ""
@@ -4307,11 +4325,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr ""
@@ -4394,15 +4412,15 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1184
-#: src/screens/VideoFeed/index.tsx:1188
-#: src/view/com/auth/LoggedOut.tsx:72
-#: src/view/com/profile/ProfileFollowers.tsx:180
-#: src/view/com/profile/ProfileFollowers.tsx:181
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
+#: src/view/com/auth/LoggedOut.tsx:73
+#: src/view/com/profile/ProfileFollowers.tsx:178
+#: src/view/com/profile/ProfileFollowers.tsx:179
#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr ""
@@ -4411,8 +4429,8 @@ msgstr ""
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:775
+#: src/screens/Profile/ProfileFeed/index.tsx:100
+#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
msgstr ""
@@ -4429,7 +4447,7 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr ""
-#: src/screens/Bookmarks/index.tsx:285
+#: src/screens/Bookmarks/index.tsx:305
#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr ""
@@ -4438,8 +4456,8 @@ msgstr ""
msgid "Go Home"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:357
-#: src/view/com/profile/ProfileMenu.tsx:378
+#: src/view/com/profile/ProfileMenu.tsx:358
+#: src/view/com/profile/ProfileMenu.tsx:379
msgid "Go live"
msgstr ""
@@ -4450,8 +4468,8 @@ msgstr ""
msgid "Go Live"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:354
-#: src/view/com/profile/ProfileMenu.tsx:374
+#: src/view/com/profile/ProfileMenu.tsx:355
+#: src/view/com/profile/ProfileMenu.tsx:375
msgid "Go live (disabled)"
msgstr ""
@@ -4463,14 +4481,14 @@ msgstr ""
msgid "Go to {firstAuthorName}'s profile"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:91
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:71
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:80
+#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:92
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:72
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:81
#: src/screens/Moderation/index.tsx:219
msgid "Go to account settings"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:363
+#: src/screens/Messages/components/ChatListItem.tsx:364
msgid "Go to conversation with {0}"
msgstr ""
@@ -4498,8 +4516,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr ""
@@ -4515,8 +4533,8 @@ msgstr ""
msgid "Hacking or system attacks"
msgstr ""
-#: src/state/shell/progress-guide.tsx:220
-#: src/state/shell/progress-guide.tsx:230
+#: src/state/shell/progress-guide.tsx:221
+#: src/state/shell/progress-guide.tsx:231
msgid "Half way there!"
msgstr ""
@@ -4539,7 +4557,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr ""
#: src/components/FeedCard.tsx:157
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Happening now"
msgstr ""
@@ -4559,7 +4577,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:549
+#: src/Navigation.tsx:550
msgid "Hashtag"
msgstr ""
@@ -4576,15 +4594,15 @@ msgstr ""
msgid "Have a code? <0>Click here.0>"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:332
+#: src/screens/Signup/StepInfo/index.tsx:330
msgid "Have we got your location wrong? <0>Tap here to confirm your location with GPS.0>"
msgstr ""
-#: src/screens/Signup/index.tsx:220
+#: src/screens/Signup/index.tsx:231
msgid "Having trouble?"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:287
+#: src/components/contacts/screens/PhoneInput.tsx:289
msgid "Held by Bluesky for 7 days to prevent abuse, then deleted"
msgstr ""
@@ -4592,7 +4610,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr ""
@@ -4609,11 +4627,11 @@ msgstr ""
msgid "Hey there 👋"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:170
+#: src/ageAssurance/components/NoAccessScreen.tsx:167
msgid "Hey there!"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:210
+#: src/ageAssurance/components/NoAccessScreen.tsx:207
msgid "Hi there!"
msgstr ""
@@ -4622,7 +4640,7 @@ msgstr ""
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:653
+#: src/screens/VideoFeed/index.tsx:647
msgid "Hidden by your moderation settings."
msgstr ""
@@ -4630,17 +4648,17 @@ msgstr ""
msgid "Hidden list"
msgstr ""
-#: src/components/interstitials/Trending.tsx:130
+#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:773
+#: src/components/moderation/PostHider.tsx:139
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
#: src/lib/moderation/useLabelBehaviorDescription.ts:28
#: src/lib/moderation/useLabelBehaviorDescription.ts:33
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:129
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:130
msgid "Hide"
msgstr ""
@@ -4658,22 +4676,22 @@ msgstr ""
msgid "Hide customization options"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:527
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:530
msgid "Hide lists"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:613
msgid "Hide post for me"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:631
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
msgid "Hide reply for everyone"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:603
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:606
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:612
msgid "Hide reply for me"
msgstr ""
@@ -4686,21 +4704,21 @@ msgstr ""
msgid "Hide this event"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:771
msgid "Hide this post?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:771
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:806
msgid "Hide this reply?"
msgstr ""
-#: src/components/interstitials/Trending.tsx:112
+#: src/components/interstitials/Trending.tsx:115
msgid "Hide trending topics"
msgstr ""
-#: src/components/interstitials/Trending.tsx:128
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127
+#: src/components/interstitials/Trending.tsx:131
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128
msgid "Hide trending topics?"
msgstr ""
@@ -4712,13 +4730,13 @@ msgstr ""
msgid "Hide user list"
msgstr ""
-#: src/screens/Moderation/VerificationSettings.tsx:90
-#: src/screens/Moderation/VerificationSettings.tsx:99
+#: src/screens/Moderation/VerificationSettings.tsx:87
+#: src/screens/Moderation/VerificationSettings.tsx:96
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr ""
@@ -4758,11 +4776,11 @@ msgstr ""
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/Navigation.tsx:783
-#: src/Navigation.tsx:803
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/Navigation.tsx:784
+#: src/Navigation.tsx:804
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr ""
@@ -4775,7 +4793,7 @@ msgstr ""
msgid "Hosting provider"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:188
msgid "Hot"
msgstr ""
@@ -4788,7 +4806,7 @@ msgstr ""
msgid "How should we open this link?"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:276
+#: src/components/contacts/screens/PhoneInput.tsx:278
msgid "How we use your number:"
msgstr ""
@@ -4796,7 +4814,7 @@ msgstr ""
msgid "Human trafficking"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:264
+#: src/components/contacts/screens/GetContacts.tsx:266
msgid "I consent to Bluesky using my contacts for mutual friend discovery and to retain hashed data for matching until I opt out."
msgstr ""
@@ -4815,19 +4833,19 @@ msgstr ""
msgid "I understand"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:574
+#: src/components/contacts/screens/ViewMatches.tsx:577
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:351
+#: src/screens/Signup/StepInfo/index.tsx:349
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:122
+#: src/ageAssurance/components/NoAccessScreen.tsx:119
msgid "If you believe your birthdate is incorrect, please <0>contact our support team0>."
msgstr ""
@@ -4839,7 +4857,7 @@ msgstr ""
msgid "If you choose to hide all events, you can always re-enable them from <0>Settings → Content & Media0>."
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:277
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:271
msgid "If you delete this list, you won't be able to recover it."
msgstr ""
@@ -4851,7 +4869,7 @@ msgstr ""
msgid "If you need to update your email, <0>click here0>."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:759
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:762
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
@@ -4872,7 +4890,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr ""
@@ -4880,12 +4898,12 @@ msgstr ""
msgid "Image"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:64
+#: src/screens/Settings/AboutSettings.tsx:62
msgid "Image cache cleared"
msgstr ""
#. Android-only toast message which includes amount of space freed using localized number formatting
-#: src/screens/Settings/AboutSettings.tsx:50
+#: src/screens/Settings/AboutSettings.tsx:48
msgid "Image cache cleared, freed {0}"
msgstr ""
@@ -4902,10 +4920,10 @@ msgstr ""
msgid "Impersonation"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:68
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:73
-#: src/screens/Settings/FindContactsSettings.tsx:143
-#: src/screens/Settings/FindContactsSettings.tsx:148
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:75
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:80
+#: src/screens/Settings/FindContactsSettings.tsx:145
+#: src/screens/Settings/FindContactsSettings.tsx:150
msgid "Import contacts"
msgstr ""
@@ -4914,16 +4932,16 @@ msgstr ""
msgid "Import Contacts"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:31
-#: src/components/contacts/FindContactsBannerNUX.tsx:69
+#: src/components/contacts/FindContactsBannerNUX.tsx:32
+#: src/components/contacts/FindContactsBannerNUX.tsx:70
msgid "Import contacts to find your friends"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:507
+#: src/screens/Settings/FindContactsSettings.tsx:513
msgid "Imported on {0}"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:213
+#: src/ageAssurance/components/NoAccessScreen.tsx:210
msgid "In order to provide an age-appropriate experience, we need to know your birthdate. This is a one-time thing, and your data will be kept private."
msgstr ""
@@ -4931,7 +4949,7 @@ msgstr ""
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:146
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:147
msgid "In-app notifications"
msgstr ""
@@ -4984,7 +5002,7 @@ msgstr ""
msgid "Input the code which has been emailed to you"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:135
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:137
msgid "Interaction limited"
msgstr ""
@@ -5013,13 +5031,13 @@ msgstr ""
msgid "Invalid handle. Please try a different one."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:391
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395
msgctxt "toast"
msgid "Invalid interaction settings."
msgstr ""
#: src/components/contacts/phone-number.ts:33
-#: src/components/contacts/screens/PhoneInput.tsx:139
+#: src/components/contacts/screens/PhoneInput.tsx:141
msgid "Invalid phone number"
msgstr ""
@@ -5031,19 +5049,19 @@ msgstr ""
msgid "Invalid Verification Code"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:583
+#: src/components/contacts/screens/ViewMatches.tsx:586
msgid "Invite"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:563
+#: src/components/contacts/screens/ViewMatches.tsx:566
msgid "Invite {name} to join Bluesky"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:195
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Invite code"
msgstr ""
-#: src/screens/Signup/state.ts:342
+#: src/screens/Signup/state.ts:346
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr ""
@@ -5052,11 +5070,11 @@ msgstr ""
msgid "Invite Friends"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:298
+#: src/components/contacts/screens/ViewMatches.tsx:300
msgid "Invite friends <0/>"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:81
+#: src/components/StarterPack/ShareDialog.tsx:82
msgid "Invite people to this starter pack!"
msgstr ""
@@ -5068,8 +5086,8 @@ msgstr ""
msgid "Invites, but personal"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:365
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:92
+#: src/ageAssurance/components/NoAccessScreen.tsx:363
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:94
msgid "Is your location not accurate? <0>Tap here to confirm your location.0>"
msgstr ""
@@ -5077,19 +5095,19 @@ msgstr ""
msgid "It looks like some of your contacts have not tried to find you here yet. You can personally invite them by customizing a draft message we will provide."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:384
+#: src/screens/Signup/StepInfo/index.tsx:382
msgid "It's correct"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:491
+#: src/screens/StarterPack/Wizard/index.tsx:492
msgid "It's just <0>{0} 0>right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:486
+#: src/screens/StarterPack/Wizard/index.tsx:487
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1834
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr ""
@@ -5098,10 +5116,10 @@ msgstr ""
msgid "Jobs"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:209
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
-#: src/screens/StarterPack/StarterPackScreen.tsx:464
-#: src/screens/StarterPack/StarterPackScreen.tsx:475
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:216
+#: src/screens/StarterPack/StarterPackScreen.tsx:468
+#: src/screens/StarterPack/StarterPackScreen.tsx:479
msgid "Join Bluesky"
msgstr ""
@@ -5122,20 +5140,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr ""
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr ""
@@ -5151,7 +5169,7 @@ msgstr ""
msgid "Labels on your content"
msgstr ""
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:221
msgid "Language Settings"
msgstr ""
@@ -5165,13 +5183,13 @@ msgstr ""
msgid "Larger"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:348
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:193
+#: src/ageAssurance/components/NoAccessScreen.tsx:346
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:195
msgid "Last initiated {timeAgo} ago"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:346
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:191
+#: src/ageAssurance/components/NoAccessScreen.tsx:344
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:193
msgid "Last initiated just now"
msgstr ""
@@ -5181,9 +5199,9 @@ msgstr ""
msgid "Latest"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:170
-#: src/components/verification/VerifierDialog.tsx:138
-#: src/screens/Moderation/VerificationSettings.tsx:48
+#: src/components/verification/VerificationsDialog.tsx:167
+#: src/components/verification/VerifierDialog.tsx:135
+#: src/screens/Moderation/VerificationSettings.tsx:49
#: src/screens/Profile/Header/EditProfileDialog.tsx:349
#: src/screens/Settings/components/ChangeHandleDialog.tsx:213
#: src/screens/Settings/components/ChangeHandleDialog.tsx:277
@@ -5195,7 +5213,7 @@ msgstr ""
msgid "Learn More"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:65
+#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66
msgid "Learn more about age assurance"
msgstr ""
@@ -5207,9 +5225,9 @@ msgstr ""
msgid "Learn more about how inviting friends works"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:300
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:45
-#: src/screens/Settings/FindContactsSettings.tsx:130
+#: src/components/contacts/screens/PhoneInput.tsx:302
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:52
+#: src/screens/Settings/FindContactsSettings.tsx:132
msgctxt "english-only-resource"
msgid "Learn more about importing contacts"
msgstr ""
@@ -5218,8 +5236,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr ""
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr ""
@@ -5231,13 +5249,13 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:151
-#: src/components/verification/VerifierDialog.tsx:119
+#: src/components/verification/VerificationsDialog.tsx:152
+#: src/components/verification/VerifierDialog.tsx:120
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -5247,16 +5265,16 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:88
+#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89
msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr ""
@@ -5286,16 +5304,16 @@ msgstr ""
msgid "left to go."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr ""
-#: src/screens/Login/index.tsx:168
-#: src/screens/Login/index.tsx:183
+#: src/screens/Login/index.tsx:169
+#: src/screens/Login/index.tsx:184
msgid "Let's get your password reset!"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:330
+#: src/screens/Onboarding/StepFinished/index.tsx:333
msgid "Let's go!"
msgstr ""
@@ -5310,12 +5328,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:517
msgid "Like"
msgstr ""
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:286
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5323,25 +5341,25 @@ msgstr ""
msgid "Like 10 posts"
msgstr ""
-#: src/state/shell/progress-guide.tsx:216
-#: src/state/shell/progress-guide.tsx:221
+#: src/state/shell/progress-guide.tsx:217
+#: src/state/shell/progress-guide.tsx:222
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/Navigation.tsx:462
+#: src/Navigation.tsx:463
msgid "Like notifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:502
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:504
msgid "Like this feed"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:146
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:147
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:298
-#: src/Navigation.tsx:303
+#: src/Navigation.tsx:299
+#: src/Navigation.tsx:304
msgid "Liked by"
msgstr ""
@@ -5357,39 +5375,39 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:490
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:166
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:180
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:492
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:167
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:126
+#: src/lib/hooks/useNotificationHandler.ts:129
#: src/screens/Settings/NotificationSettings/index.tsx:126
#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:168
+#: src/lib/hooks/useNotificationHandler.ts:171
#: src/screens/Settings/NotificationSettings/index.tsx:207
#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:486
+#: src/Navigation.tsx:487
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:482
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:47
-#: src/screens/PostThread/components/HeaderDropdown.tsx:52
+#: src/screens/PostThread/components/HeaderDropdown.tsx:48
+#: src/screens/PostThread/components/HeaderDropdown.tsx:53
msgid "Linear"
msgstr ""
-#: src/Navigation.tsx:253
+#: src/Navigation.tsx:254
msgid "List"
msgstr ""
@@ -5397,7 +5415,7 @@ msgstr ""
msgid "List avatar"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:50
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:47
msgctxt "toast"
msgid "List blocked"
msgstr ""
@@ -5419,7 +5437,7 @@ msgstr ""
msgid "List creator"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:90
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:92
msgctxt "toast"
msgid "List deleted"
msgstr ""
@@ -5444,7 +5462,7 @@ msgstr ""
msgid "List must have a name."
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:31
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:32
msgctxt "toast"
msgid "List muted"
msgstr ""
@@ -5457,24 +5475,24 @@ msgstr ""
msgid "List name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:116
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:131
+#: src/screens/ProfileList/components/Header.tsx:114
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:129
msgctxt "toast"
msgid "List unblocked"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:98
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:113
+#: src/screens/ProfileList/components/Header.tsx:100
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:115
msgctxt "toast"
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:175
#: src/view/screens/Lists.tsx:67
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr ""
@@ -5491,20 +5509,30 @@ msgstr ""
msgid "LIVE"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:52
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:52
+#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:53
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:53
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:235
+#: src/components/live/LiveStatusDialog.tsx:228
msgid "Live feature is in beta"
msgstr ""
@@ -5515,31 +5543,31 @@ msgstr ""
msgid "Live link"
msgstr ""
-#: src/screens/Search/Explore.tsx:84
+#: src/screens/Search/Explore.tsx:83
msgid "Load more"
msgstr ""
-#: src/screens/Search/Explore.tsx:506
-#: src/screens/Search/Explore.tsx:583
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr ""
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
-#: src/view/com/feeds/FeedPage.tsx:169
+#: src/view/com/feeds/FeedPage.tsx:170
msgid "Load new posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:569
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:572
msgid "Loading lists..."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:273
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:276
msgid "Loading post interaction settings..."
msgstr ""
@@ -5547,7 +5575,7 @@ msgstr ""
msgid "Loading..."
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:324
msgid "Log"
msgstr ""
@@ -5564,7 +5592,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr ""
@@ -5638,22 +5666,31 @@ msgstr ""
msgid "Media"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
-#: src/Navigation.tsx:446
+#: src/Navigation.tsx:447
msgid "Mention notifications"
msgstr ""
-#: src/components/WhoCanReply.tsx:318
+#: src/components/WhoCanReply.tsx:319
msgid "mentioned users"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:147
+#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr ""
@@ -5661,20 +5698,20 @@ msgstr ""
msgid "Menu"
msgstr ""
-#: src/components/dms/MessageProfileButton.tsx:97
+#: src/components/dms/MessageProfileButton.tsx:98
msgid "Message {0}"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/MessageContextMenu.tsx:76
msgctxt "toast"
msgid "Message deleted"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:199
+#: src/screens/Messages/components/ChatListItem.tsx:200
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:127
+#: src/components/dms/MessageContextMenu.tsx:124
msgid "Message from @{0}: {1}"
msgstr ""
@@ -5691,11 +5728,11 @@ msgstr ""
msgid "Message is too long"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:125
+#: src/components/dms/MessageContextMenu.tsx:122
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:798
+#: src/Navigation.tsx:799
msgid "Messages"
msgstr ""
@@ -5708,7 +5745,7 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:510
+#: src/Navigation.tsx:511
msgid "Miscellaneous notifications"
msgstr ""
@@ -5716,7 +5753,11 @@ msgstr ""
msgid "Misleading"
msgstr ""
-#: src/Navigation.tsx:179
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
+#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
#: src/screens/Settings/Settings.tsx:195
@@ -5755,7 +5796,7 @@ msgstr ""
msgid "Moderation lists"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:185
#: src/view/screens/ModerationModlists.tsx:67
msgid "Moderation Lists"
msgstr ""
@@ -5764,7 +5805,7 @@ msgstr ""
msgid "moderation settings"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:314
msgid "Moderation states"
msgstr ""
@@ -5777,8 +5818,8 @@ msgstr ""
msgid "Moderator has chosen to set a general warning on the content."
msgstr ""
-#: src/view/shell/desktop/Feeds.tsx:109
-#: src/view/shell/desktop/Feeds.tsx:156
+#: src/view/shell/desktop/Feeds.tsx:106
+#: src/view/shell/desktop/Feeds.tsx:153
msgid "More feeds"
msgstr ""
@@ -5787,9 +5828,10 @@ msgstr ""
msgid "More languages..."
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:149
-#: src/view/com/profile/ProfileMenu.tsx:241
-#: src/view/com/profile/ProfileMenu.tsx:248
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
+#: src/view/com/profile/ProfileMenu.tsx:242
+#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
msgstr ""
@@ -5820,15 +5862,15 @@ msgstr ""
msgid "Mute {tag}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
-#: src/view/com/profile/ProfileMenu.tsx:435
-#: src/view/com/profile/ProfileMenu.tsx:442
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:689
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:695
+#: src/view/com/profile/ProfileMenu.tsx:436
+#: src/view/com/profile/ProfileMenu.tsx:443
msgid "Mute account"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:89
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:92
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:82
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:85
msgid "Mute accounts"
msgstr ""
@@ -5841,11 +5883,11 @@ msgstr ""
msgid "Mute in:"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:115
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:108
msgid "Mute list"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:110
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:103
msgid "Mute these accounts?"
msgstr ""
@@ -5873,13 +5915,13 @@ msgstr ""
msgid "Mute this word until you unmute it"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:574
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:577
msgid "Mute thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:584
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:586
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:589
msgid "Mute words & tags"
msgstr ""
@@ -5887,7 +5929,7 @@ msgstr ""
msgid "Muted accounts"
msgstr ""
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:190
#: src/view/screens/ModerationMutedAccounts.tsx:116
msgid "Muted Accounts"
msgstr ""
@@ -5904,7 +5946,7 @@ msgstr ""
msgid "Muted words & tags"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:112
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:105
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr ""
@@ -5939,12 +5981,12 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr ""
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:333
-#: src/components/moderation/ReportDialog/index.tsx:350
+#: src/components/moderation/ReportDialog/index.tsx:327
+#: src/components/moderation/ReportDialog/index.tsx:344
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -5952,8 +5994,8 @@ msgstr ""
msgid "Nevermind, create a handle for me"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196
-#: src/view/com/profile/ProfileMenu.tsx:390
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:193
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "New"
msgstr ""
@@ -5971,7 +6013,7 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/components/dms/dialogs/NewChatDialog.tsx:68
#: src/screens/Messages/ChatList.tsx:403
#: src/screens/Messages/ChatList.tsx:410
msgid "New chat"
@@ -5983,15 +6025,15 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:478
+#: src/Navigation.tsx:479
msgid "New follower notifications"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:161
+#: src/lib/hooks/useNotificationHandler.ts:164
#: src/screens/Settings/NotificationSettings/index.tsx:137
#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
msgid "New followers"
@@ -6018,16 +6060,16 @@ msgstr ""
msgid "New password"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr ""
-#: src/view/com/feeds/FeedPage.tsx:180
+#: src/view/com/feeds/FeedPage.tsx:181
msgctxt "action"
msgid "New post"
msgstr ""
@@ -6053,39 +6095,39 @@ msgstr ""
msgid "New user info dialog"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:93
-#: src/screens/PostThread/components/HeaderDropdown.tsx:98
+#: src/screens/PostThread/components/HeaderDropdown.tsx:94
+#: src/screens/PostThread/components/HeaderDropdown.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:72
#: src/screens/Settings/ThreadPreferences.tsx:75
msgid "Newest replies first"
msgstr ""
#: src/lib/interests.ts:67
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:238
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "News"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:392
-#: src/components/contacts/screens/ViewMatches.tsx:407
+#: src/components/contacts/screens/ViewMatches.tsx:394
+#: src/components/contacts/screens/ViewMatches.tsx:409
#: src/screens/Login/ForgotPasswordForm.tsx:137
#: src/screens/Login/ForgotPasswordForm.tsx:143
#: src/screens/Login/LoginForm.tsx:346
#: src/screens/Login/LoginForm.tsx:353
#: src/screens/Login/SetNewPasswordForm.tsx:182
#: src/screens/Login/SetNewPasswordForm.tsx:188
-#: src/screens/Onboarding/StepFinished/index.tsx:323
-#: src/screens/Onboarding/StepFinished/index.tsx:332
+#: src/screens/Onboarding/StepFinished/index.tsx:326
+#: src/screens/Onboarding/StepFinished/index.tsx:335
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165
#: src/screens/Signup/BackNextButtons.tsx:67
-#: src/screens/StarterPack/Wizard/index.tsx:210
-#: src/screens/StarterPack/Wizard/index.tsx:214
-#: src/screens/StarterPack/Wizard/index.tsx:392
-#: src/screens/StarterPack/Wizard/index.tsx:399
+#: src/screens/StarterPack/Wizard/index.tsx:211
+#: src/screens/StarterPack/Wizard/index.tsx:215
+#: src/screens/StarterPack/Wizard/index.tsx:393
+#: src/screens/StarterPack/Wizard/index.tsx:400
msgid "Next"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr ""
@@ -6097,11 +6139,11 @@ msgstr ""
msgid "No app passwords yet"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:677
+#: src/components/contacts/screens/ViewMatches.tsx:680
msgid "No contacts found"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:655
+#: src/components/contacts/screens/ViewMatches.tsx:658
msgid "No contacts with the name “{query}” found"
msgstr ""
@@ -6114,6 +6156,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr ""
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6126,7 +6172,7 @@ msgstr ""
msgid "No feeds found. Try searching for something else."
msgstr ""
-#: src/view/com/profile/ProfileFollowers.tsx:171
+#: src/view/com/profile/ProfileFollowers.tsx:169
msgid "No followers yet"
msgstr ""
@@ -6136,7 +6182,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr ""
@@ -6150,11 +6196,11 @@ msgstr ""
msgid "No longer following {0}"
msgstr ""
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:141
+#: src/screens/Messages/components/ChatListItem.tsx:142
msgid "No messages yet"
msgstr ""
@@ -6162,7 +6208,7 @@ msgstr ""
msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you."
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:559
+#: src/components/contacts/screens/ViewMatches.tsx:562
msgid "No name"
msgstr ""
@@ -6178,7 +6224,7 @@ msgstr ""
msgid "No one"
msgstr ""
-#: src/components/WhoCanReply.tsx:301
+#: src/components/WhoCanReply.tsx:302
msgid "No one but the author can quote this post."
msgstr ""
@@ -6195,7 +6241,7 @@ msgstr ""
msgid "No quotes yet"
msgstr ""
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,11 +6255,11 @@ msgid "No result"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:229
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr ""
-#: src/screens/Search/Explore.tsx:800
+#: src/screens/Search/Explore.tsx:789
msgid "No results for \"{0}\"."
msgstr ""
@@ -6230,7 +6276,7 @@ msgstr ""
msgid "No results found for \"<0>{query}0>\"."
msgstr ""
-#: src/screens/Search/Explore.tsx:804
+#: src/screens/Search/Explore.tsx:793
msgid "No results."
msgstr ""
@@ -6238,7 +6284,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr ""
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,11 +6293,11 @@ msgstr ""
msgid "No thanks"
msgstr ""
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:465
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:468
msgid "Nobody"
msgstr ""
@@ -6285,7 +6331,7 @@ msgid "None"
msgstr ""
#: src/screens/FindContactsFlowScreen.tsx:70
-#: src/screens/Settings/FindContactsSettings.tsx:101
+#: src/screens/Settings/FindContactsSettings.tsx:103
msgid "Not available on this platform."
msgstr ""
@@ -6293,12 +6339,12 @@ msgstr ""
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:169
+#: src/Navigation.tsx:170
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:557
+#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr ""
@@ -6306,7 +6352,7 @@ msgstr ""
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134
msgid "Note: This post is only visible to logged-in users."
msgstr ""
@@ -6315,13 +6361,13 @@ msgid "Nothing here"
msgstr ""
#: src/screens/Bookmarks/components/EmptyState.tsx:35
-#: src/screens/Bookmarks/index.tsx:281
+#: src/screens/Bookmarks/index.tsx:301
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:432
-#: src/Navigation.tsx:579
-#: src/view/screens/Notifications.tsx:136
+#: src/Navigation.tsx:433
+#: src/Navigation.tsx:580
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr ""
@@ -6333,8 +6379,8 @@ msgstr ""
msgid "Notification Sounds"
msgstr ""
-#: src/Navigation.tsx:574
-#: src/Navigation.tsx:793
+#: src/Navigation.tsx:575
+#: src/Navigation.tsx:794
#: src/screens/Notifications/ActivityList.tsx:30
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90
#: src/screens/Settings/NotificationSettings/index.tsx:92
@@ -6349,10 +6395,10 @@ msgstr ""
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr ""
@@ -6368,8 +6414,8 @@ msgstr ""
msgid "Now"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr ""
@@ -6389,8 +6435,8 @@ msgid "Oh no!"
msgstr ""
#. Confirm button text.
-#: src/components/contacts/screens/GetContacts.tsx:314
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:222
+#: src/components/contacts/screens/GetContacts.tsx:316
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6402,8 +6448,8 @@ msgstr ""
msgid "Okay"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:83
-#: src/screens/PostThread/components/HeaderDropdown.tsx:88
+#: src/screens/PostThread/components/HeaderDropdown.tsx:84
+#: src/screens/PostThread/components/HeaderDropdown.tsx:89
#: src/screens/Settings/ThreadPreferences.tsx:64
#: src/screens/Settings/ThreadPreferences.tsx:67
msgid "Oldest replies first"
@@ -6417,11 +6463,11 @@ msgstr ""
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:398
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:395
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr ""
@@ -6433,7 +6479,7 @@ msgstr ""
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:405
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr ""
@@ -6441,7 +6487,7 @@ msgstr ""
msgid "Only .jpg and .png files are supported"
msgstr ""
-#: src/components/WhoCanReply.tsx:281
+#: src/components/WhoCanReply.tsx:282
msgid "Only {0} can reply."
msgstr ""
@@ -6464,8 +6510,8 @@ msgid "Oops, something went wrong!"
msgstr ""
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,30 +6522,34 @@ msgstr ""
msgid "Open avatar creator"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:198
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:373
-#: src/screens/Messages/components/ChatListItem.tsx:377
+#: src/screens/Messages/components/ChatListItem.tsx:374
+#: src/screens/Messages/components/ChatListItem.tsx:378
msgid "Open conversation options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1481
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:292
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:297
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
msgid "Open feed options menu"
msgstr ""
@@ -6531,16 +6581,16 @@ msgstr ""
msgid "Open post options menu"
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:205
-#: src/components/live/LiveStatusDialog.tsx:219
+#: src/components/live/LiveStatusDialog.tsx:202
+#: src/components/live/LiveStatusDialog.tsx:212
msgid "Open profile"
msgstr ""
-#: src/components/PostControls/ShareMenu/index.tsx:100
+#: src/components/PostControls/ShareMenu/index.tsx:98
msgid "Open share menu"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:568
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
msgid "Open starter pack menu"
msgstr ""
@@ -6553,15 +6603,15 @@ msgstr ""
msgid "Open system log"
msgstr ""
-#: src/view/shell/desktop/Feeds.tsx:188
+#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:153
msgid "Opens a dialog to choose who can interact with this post"
msgstr ""
@@ -6589,7 +6639,7 @@ msgstr ""
msgid "Opens composer"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:199
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
@@ -6598,21 +6648,21 @@ msgstr ""
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1482
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/view/com/composer/photos/SelectGifBtn.tsx:36
+#: src/view/com/composer/photos/SelectGifBtn.tsx:37
msgid "Opens GIF select dialog"
msgstr ""
@@ -6620,7 +6670,7 @@ msgstr ""
msgid "Opens helpdesk in browser"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:221
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6628,7 +6678,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:581
+#: src/view/com/util/UserAvatar.tsx:579
msgid "Opens live status dialog"
msgstr ""
@@ -6640,12 +6690,16 @@ msgstr ""
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:144
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
msgstr ""
@@ -6679,7 +6733,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr ""
@@ -6741,7 +6795,7 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:229
#: src/screens/Settings/AccountSettings.tsx:121
#: src/screens/Settings/AccountSettings.tsx:125
-#: src/screens/Signup/StepInfo/index.tsx:260
+#: src/screens/Signup/StepInfo/index.tsx:258
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -6755,7 +6809,7 @@ msgstr ""
msgid "Password must be at least 8 characters long."
msgstr ""
-#: src/screens/Login/index.tsx:195
+#: src/screens/Login/index.tsx:196
msgid "Password updated"
msgstr ""
@@ -6775,28 +6829,28 @@ msgstr ""
#: src/screens/ProfileList/index.tsx:166
#: src/screens/Search/SearchResults.tsx:72
-#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/screens/StarterPack/StarterPackScreen.tsx:192
msgid "People"
msgstr ""
-#: src/Navigation.tsx:240
+#: src/Navigation.tsx:241
msgid "People followed by @{0}"
msgstr ""
-#: src/Navigation.tsx:233
+#: src/Navigation.tsx:234
msgid "People following @{0}"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:181
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:191
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:192
msgid "People I follow"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:504
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:507
msgid "People you follow"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:518
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:521
msgid "People you mention"
msgstr ""
@@ -6816,12 +6870,12 @@ msgstr ""
msgid "Pets"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:189
-#: src/components/contacts/screens/PhoneInput.tsx:201
+#: src/components/contacts/screens/PhoneInput.tsx:191
+#: src/components/contacts/screens/PhoneInput.tsx:203
msgid "Phone number"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:301
+#: src/components/contacts/screens/VerifyNumber.tsx:303
msgid "Phone number verified"
msgstr ""
@@ -6829,12 +6883,12 @@ msgstr ""
msgid "Photography"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:527
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:529
#: src/screens/SavedFeeds.tsx:351
msgid "Pin feed"
msgstr ""
@@ -6843,17 +6897,17 @@ msgstr ""
msgid "Pin Feed"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:156
-#: src/screens/ProfileList/components/Header.tsx:163
+#: src/screens/ProfileList/components/Header.tsx:150
+#: src/screens/ProfileList/components/Header.tsx:157
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:338
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:339
msgid "Pin to Home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:478
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
msgid "Pin to your profile"
msgstr ""
@@ -6861,8 +6915,8 @@ msgstr ""
msgid "Pinned"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:161
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:175
msgid "Pinned {0} to Home"
msgstr ""
@@ -6870,7 +6924,7 @@ msgstr ""
msgid "Pinned Feeds"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:74
+#: src/screens/ProfileList/components/Header.tsx:76
msgid "Pinned to your feeds"
msgstr ""
@@ -6909,7 +6963,7 @@ msgstr ""
msgid "Plays the video"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -6917,12 +6971,12 @@ msgstr ""
msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive."
msgstr ""
-#: src/screens/Signup/state.ts:289
+#: src/screens/Signup/state.ts:293
msgid "Please choose your handle."
msgstr ""
-#: src/screens/Signup/state.ts:281
-#: src/screens/Signup/StepInfo/index.tsx:151
+#: src/screens/Signup/state.ts:285
+#: src/screens/Signup/StepInfo/index.tsx:153
msgid "Please choose your password."
msgstr ""
@@ -6930,12 +6984,12 @@ msgstr ""
msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
msgstr ""
-#: src/screens/Signup/state.ts:304
+#: src/screens/Signup/state.ts:308
msgid "Please complete the verification captcha."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101
-#: src/screens/Signup/StepInfo/index.tsx:140
+#: src/screens/Signup/StepInfo/index.tsx:142
msgid "Please double-check that you have entered your email address correctly."
msgstr ""
@@ -6982,12 +7036,12 @@ msgstr ""
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
-#: src/screens/Signup/state.ts:265
-#: src/screens/Signup/StepInfo/index.tsx:122
+#: src/screens/Signup/state.ts:269
+#: src/screens/Signup/StepInfo/index.tsx:124
msgid "Please enter your email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:115
+#: src/screens/Signup/StepInfo/index.tsx:117
msgid "Please enter your invite code."
msgstr ""
@@ -7024,7 +7078,7 @@ msgstr ""
msgid "Please go back, or activate this element to return to the start of the active content."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:97
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:99
msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status."
msgstr ""
@@ -7040,12 +7094,12 @@ msgstr ""
msgid "Please select a reason for this report"
msgstr ""
-#: src/lib/hooks/useAccountSwitcher.ts:45
-#: src/lib/hooks/useAccountSwitcher.ts:55
+#: src/lib/hooks/useAccountSwitcher.ts:46
+#: src/lib/hooks/useAccountSwitcher.ts:56
msgid "Please sign in as @{0}"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:102
+#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Please use the native app to import your contacts."
msgstr ""
@@ -7062,35 +7116,35 @@ msgid "Please write your message below:"
msgstr ""
#: src/lib/interests.ts:70
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:232
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229
msgid "Politics"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr ""
-#: src/screens/PostThread/index.tsx:531
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr ""
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr ""
@@ -7099,14 +7153,14 @@ msgstr ""
msgid "Post blocked"
msgstr ""
-#: src/Navigation.tsx:266
-#: src/Navigation.tsx:273
-#: src/Navigation.tsx:280
-#: src/Navigation.tsx:287
+#: src/Navigation.tsx:267
+#: src/Navigation.tsx:274
+#: src/Navigation.tsx:281
+#: src/Navigation.tsx:288
msgid "Post by @{0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:194
msgctxt "toast"
msgid "Post deleted"
msgstr ""
@@ -7118,7 +7172,7 @@ msgstr ""
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:134
#: src/screens/PostThread/components/ThreadItemPost.tsx:112
#: src/screens/PostThread/components/ThreadItemTreePost.tsx:108
-#: src/screens/VideoFeed/index.tsx:557
+#: src/screens/VideoFeed/index.tsx:551
msgid "Post has been deleted"
msgstr ""
@@ -7132,11 +7186,11 @@ msgstr ""
msgid "Post Hidden by You"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:679
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:682
msgid "Post interaction settings"
msgstr ""
-#: src/Navigation.tsx:200
+#: src/Navigation.tsx:201
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr ""
@@ -7156,7 +7210,7 @@ msgctxt "toast"
msgid "Post pinned"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:66
+#: src/components/PostControls/BookmarkButton.tsx:67
msgid "Post saved"
msgstr ""
@@ -7169,7 +7223,7 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262
#: src/screens/ProfileList/index.tsx:166
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216
-#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/screens/StarterPack/StarterPackScreen.tsx:194
#: src/view/screens/Profile.tsx:234
msgid "Posts"
msgstr ""
@@ -7213,11 +7267,11 @@ msgstr ""
msgid "Press to view followers of this account that you also follow"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:118
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:119
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr ""
@@ -7239,8 +7293,8 @@ msgstr ""
msgid "Privacy and security"
msgstr ""
-#: src/Navigation.tsx:409
-#: src/Navigation.tsx:417
+#: src/Navigation.tsx:410
+#: src/Navigation.tsx:418
#: src/screens/Settings/ActivityPrivacySettings.tsx:40
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:44
msgid "Privacy and Security"
@@ -7253,12 +7307,12 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102
-#: src/Navigation.tsx:333
-#: src/screens/Settings/AboutSettings.tsx:92
-#: src/screens/Settings/AboutSettings.tsx:95
+#: src/Navigation.tsx:334
+#: src/screens/Settings/AboutSettings.tsx:90
+#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr ""
@@ -7266,7 +7320,7 @@ msgstr ""
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1897
+#: src/view/com/composer/Composer.tsx:2301
msgid "Processing video..."
msgstr ""
@@ -7280,10 +7334,10 @@ msgstr ""
msgid "profile"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr ""
@@ -7296,7 +7350,7 @@ msgstr ""
msgid "Promoting or selling prohibited items or services"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:160
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:162
msgid "Psst! You can edit who can interact with this post."
msgstr ""
@@ -7305,22 +7359,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr ""
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1101
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1094
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1079
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1086
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7328,7 +7382,7 @@ msgstr ""
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:129
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:130
msgid "Push notifications"
msgstr ""
@@ -7340,19 +7394,19 @@ msgstr ""
msgid "Push, People you follow"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:137
+#: src/components/StarterPack/QrCodeDialog.tsx:139
msgid "QR code copied to your clipboard!"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:115
+#: src/components/StarterPack/QrCodeDialog.tsx:117
msgid "QR code has been downloaded!"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:116
+#: src/components/StarterPack/QrCodeDialog.tsx:118
msgid "QR code saved to your camera roll!"
msgstr ""
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:455
msgid "Quote notifications"
msgstr ""
@@ -7360,14 +7414,15 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:340
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
msgid "Quote post was re-attached"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:343
msgid "Quote post was successfully detached"
msgstr ""
@@ -7378,14 +7433,14 @@ msgstr ""
msgid "Quote posts disabled"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:154
+#: src/lib/hooks/useNotificationHandler.ts:157
#: src/screens/Post/PostQuotes.tsx:41
#: src/screens/Settings/NotificationSettings/index.tsx:170
#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
msgid "Quotes"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr ""
@@ -7393,12 +7448,12 @@ msgstr ""
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:106
+#: src/components/contacts/screens/PhoneInput.tsx:108
msgid "Rate limit exceeded. Please try again later."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:646
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:656
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659
msgid "Re-attach quote"
msgstr ""
@@ -7419,16 +7474,16 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:159
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:170
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:996
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:996
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr ""
@@ -7454,11 +7509,11 @@ msgstr ""
msgid "Read the Bluesky Terms of Service"
msgstr ""
-#: src/components/WelcomeModal.tsx:146
+#: src/components/WelcomeModal.tsx:148
msgid "Real conversations."
msgstr ""
-#: src/components/WelcomeModal.tsx:144
+#: src/components/WelcomeModal.tsx:146
msgid "Real people."
msgstr ""
@@ -7467,11 +7522,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:135
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:136
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:119
msgid "Receive push notifications"
msgstr ""
@@ -7483,7 +7538,7 @@ msgstr ""
msgid "Recently used"
msgstr ""
-#: src/screens/Search/modules/ExploreRecommendations.tsx:54
+#: src/screens/Search/modules/ExploreRecommendations.tsx:55
msgid "Recommended"
msgstr ""
@@ -7507,12 +7562,12 @@ msgstr ""
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:443
-#: src/components/dialogs/StarterPackDialog.tsx:374
-#: src/components/dialogs/StarterPackDialog.tsx:380
+#: src/components/dialogs/StarterPackDialog.tsx:375
+#: src/components/dialogs/StarterPackDialog.tsx:381
#: src/components/FeedCard.tsx:375
#: src/components/StarterPack/Wizard/WizardListCard.tsx:105
#: src/components/StarterPack/Wizard/WizardListCard.tsx:112
-#: src/screens/Bookmarks/index.tsx:266
+#: src/screens/Bookmarks/index.tsx:267
#: src/screens/Settings/Settings.tsx:682
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:220
@@ -7532,8 +7587,8 @@ msgstr ""
msgid "Remove account"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:548
-#: src/screens/Settings/FindContactsSettings.tsx:556
+#: src/screens/Settings/FindContactsSettings.tsx:554
+#: src/screens/Settings/FindContactsSettings.tsx:562
msgid "Remove all contacts"
msgstr ""
@@ -7541,8 +7596,8 @@ msgstr ""
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:498
-#: src/view/com/util/UserAvatar.tsx:501
+#: src/view/com/util/UserAvatar.tsx:499
+#: src/view/com/util/UserAvatar.tsx:502
msgid "Remove Avatar"
msgstr ""
@@ -7565,10 +7620,10 @@ msgstr ""
msgid "Remove feed?"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:181
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:184
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:175
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:178
#: src/screens/SavedFeeds.tsx:340
msgid "Remove from my feeds"
msgstr ""
@@ -7582,8 +7637,8 @@ msgstr ""
msgid "Remove from saved feeds"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:140
-#: src/screens/Bookmarks/index.tsx:260
+#: src/components/PostControls/BookmarkButton.tsx:141
+#: src/screens/Bookmarks/index.tsx:261
msgid "Remove from saved posts"
msgstr ""
@@ -7617,8 +7672,8 @@ msgstr ""
msgid "Remove subtitle file"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:497
-#: src/screens/Settings/FindContactsSettings.tsx:323
+#: src/components/contacts/screens/ViewMatches.tsx:499
+#: src/screens/Settings/FindContactsSettings.tsx:327
msgid "Remove suggestion"
msgstr ""
@@ -7631,9 +7686,9 @@ msgid "Remove user from list"
msgstr ""
#: src/components/verification/VerificationRemovePrompt.tsx:46
-#: src/components/verification/VerificationsDialog.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:408
-#: src/view/com/profile/ProfileMenu.tsx:411
+#: src/components/verification/VerificationsDialog.tsx:249
+#: src/view/com/profile/ProfileMenu.tsx:409
+#: src/view/com/profile/ProfileMenu.tsx:412
msgid "Remove verification"
msgstr ""
@@ -7658,17 +7713,17 @@ msgstr ""
msgid "Removed from saved feeds"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:106
-#: src/screens/Bookmarks/index.tsx:218
+#: src/components/PostControls/BookmarkButton.tsx:107
+#: src/screens/Bookmarks/index.tsx:219
msgid "Removed from saved posts"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:277
+#: src/components/dialogs/StarterPackDialog.tsx:278
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:74
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:123
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:76
#: src/view/com/posts/FeedShutdownMsg.tsx:44
msgid "Removed from your feeds"
msgstr ""
@@ -7704,7 +7759,7 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279
-#: src/lib/hooks/useNotificationHandler.ts:140
+#: src/lib/hooks/useNotificationHandler.ts:143
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218
#: src/screens/Settings/NotificationSettings/index.tsx:148
#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
@@ -7712,21 +7767,21 @@ msgstr ""
msgid "Replies"
msgstr ""
-#: src/components/WhoCanReply.tsx:85
+#: src/components/WhoCanReply.tsx:86
msgid "Replies disabled"
msgstr ""
-#: src/components/WhoCanReply.tsx:279
+#: src/components/WhoCanReply.tsx:280
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1117
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:240
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -7740,36 +7795,36 @@ msgstr ""
msgid "Reply Hidden by You"
msgstr ""
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:439
msgid "Reply notifications"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:412
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:415
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:69
+#: src/screens/PostThread/components/HeaderDropdown.tsx:70
msgid "Reply sorting"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:381
msgctxt "toast"
msgid "Reply visibility updated"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:376
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380
msgid "Reply was successfully hidden"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:168
+#: src/components/dms/MessageContextMenu.tsx:165
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
-#: src/components/live/LiveStatusDialog.tsx:257
+#: src/components/live/LiveStatusDialog.tsx:250
msgid "Report"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:475
-#: src/view/com/profile/ProfileMenu.tsx:478
+#: src/view/com/profile/ProfileMenu.tsx:476
+#: src/view/com/profile/ProfileMenu.tsx:479
msgid "Report account"
msgstr ""
@@ -7782,31 +7837,31 @@ msgid "Report conversation"
msgstr ""
#: src/components/moderation/ReportDialog/index.tsx:90
-#: src/components/moderation/ReportDialog/index.tsx:253
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:543
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:549
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:545
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:551
msgid "Report feed"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:215
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:218
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:209
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:212
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:166
+#: src/components/dms/MessageContextMenu.tsx:163
msgid "Report message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:712
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:714
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:715
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Report post"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:632
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
+#: src/screens/StarterPack/StarterPackScreen.tsx:640
msgid "Report starter pack"
msgstr ""
@@ -7827,7 +7882,7 @@ msgstr ""
msgid "Report this list"
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:240
+#: src/components/live/LiveStatusDialog.tsx:233
#: src/components/moderation/ReportDialog/copy.ts:19
msgid "Report this livestream"
msgstr ""
@@ -7861,14 +7916,14 @@ msgstr ""
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:470
+#: src/Navigation.tsx:471
msgid "Repost notifications"
msgstr ""
#: src/components/PostControls/RepostButton.tsx:145
#: src/components/PostControls/RepostButton.web.tsx:44
#: src/components/PostControls/RepostButton.web.tsx:104
-#: src/screens/StarterPack/StarterPackScreen.tsx:563
+#: src/screens/StarterPack/StarterPackScreen.tsx:568
msgid "Repost or quote post"
msgstr ""
@@ -7886,23 +7941,23 @@ msgstr ""
msgid "Reposted by you"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:133
+#: src/lib/hooks/useNotificationHandler.ts:136
#: src/screens/Settings/NotificationSettings/index.tsx:181
#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:175
+#: src/lib/hooks/useNotificationHandler.ts:178
#: src/screens/Settings/NotificationSettings/index.tsx:222
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:494
+#: src/Navigation.tsx:495
msgid "Reposts of your reposts notifications"
msgstr ""
@@ -7920,7 +7975,7 @@ msgstr ""
msgid "Require an email code to sign in to your account."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:209
+#: src/screens/Signup/StepInfo/index.tsx:207
msgid "Required for this provider"
msgstr ""
@@ -7932,12 +7987,12 @@ msgstr ""
msgid "Resend"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:362
-#: src/components/contacts/screens/VerifyNumber.tsx:379
+#: src/components/contacts/screens/VerifyNumber.tsx:364
+#: src/components/contacts/screens/VerifyNumber.tsx:381
msgid "Resend code"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:369
+#: src/components/contacts/screens/VerifyNumber.tsx:371
msgid "Resend code in <0>00:{0}0>"
msgstr ""
@@ -7972,8 +8027,8 @@ msgstr ""
msgid "Reset password"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:516
-#: src/screens/Settings/FindContactsSettings.tsx:532
+#: src/screens/Settings/FindContactsSettings.tsx:522
+#: src/screens/Settings/FindContactsSettings.tsx:538
msgid "Resync contacts"
msgstr ""
@@ -7988,22 +8043,22 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceErrors.tsx:27
#: src/components/ageAssurance/AgeAssuranceErrors.tsx:30
-#: src/components/contacts/screens/VerifyNumber.tsx:347
-#: src/components/contacts/screens/VerifyNumber.tsx:352
+#: src/components/contacts/screens/VerifyNumber.tsx:349
+#: src/components/contacts/screens/VerifyNumber.tsx:354
#: src/components/dms/MessageItem.tsx:322
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:114
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8015,14 +8070,14 @@ msgstr ""
msgid "Retry"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:284
+#: src/components/moderation/ReportDialog/index.tsx:278
#: src/view/screens/Storybook/Admonitions.tsx:60
msgid "Retry loading report options"
msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:769
+#: src/screens/StarterPack/StarterPackScreen.tsx:774
msgid "Return to previous page"
msgstr ""
@@ -8030,26 +8085,26 @@ msgstr ""
msgid "Returns to home page"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1185
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/screens/StarterPack/Wizard/index.tsx:325
msgid "Returns to the previous step"
msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:203
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:292
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:307
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:662
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:667
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:665
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:670
#: src/components/live/EditLiveDialog.tsx:202
#: src/components/live/EditLiveDialog.tsx:209
-#: src/components/StarterPack/QrCodeDialog.tsx:204
+#: src/components/StarterPack/QrCodeDialog.tsx:206
#: src/screens/Profile/Header/EditProfileDialog.tsx:236
#: src/screens/Profile/Header/EditProfileDialog.tsx:250
#: src/screens/SavedFeeds.tsx:120
@@ -8063,7 +8118,7 @@ msgstr ""
msgid "Save"
msgstr ""
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr ""
@@ -8076,11 +8131,28 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:142
-#: src/components/StarterPack/ShareDialog.tsx:148
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:143
+#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
msgstr ""
@@ -8088,22 +8160,22 @@ msgstr ""
msgid "Save new handle"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:196
+#: src/components/StarterPack/QrCodeDialog.tsx:198
msgid "Save QR code"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:643
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:649
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:646
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:652
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:322
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:328
msgid "Save to my feeds"
msgstr ""
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8113,13 +8185,13 @@ msgid "Saved Feeds"
msgstr ""
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:143
-#: src/Navigation.tsx:618
-#: src/screens/Bookmarks/index.tsx:60
+#: src/Navigation.tsx:619
+#: src/screens/Bookmarks/index.tsx:61
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
-#: src/screens/ProfileList/components/Header.tsx:85
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:133
+#: src/screens/ProfileList/components/Header.tsx:87
msgid "Saved to your feeds"
msgstr ""
@@ -8155,20 +8227,20 @@ msgstr ""
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr ""
-#: src/Navigation.tsx:259
+#: src/Navigation.tsx:260
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:662
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:353
+#: src/components/contacts/screens/ViewMatches.tsx:355
msgid "Search contacts"
msgstr ""
@@ -8177,12 +8249,12 @@ msgid "Search feeds"
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:491
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:484
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8194,15 +8266,15 @@ msgstr ""
msgid "Search for \"{searchText}\""
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:549
+#: src/screens/StarterPack/Wizard/index.tsx:550
msgid "Search for feeds that you want to suggest to others."
msgstr ""
-#: src/screens/Search/Explore.tsx:362
+#: src/screens/Search/Explore.tsx:364
msgid "Search for more accounts"
msgstr ""
-#: src/screens/Search/Explore.tsx:439
+#: src/screens/Search/Explore.tsx:441
msgid "Search for more feeds"
msgstr ""
@@ -8228,13 +8300,13 @@ msgstr ""
msgid "Search my posts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:291
-#: src/view/com/profile/ProfileMenu.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:292
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:681
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr ""
@@ -8247,7 +8319,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:682
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,17 +8355,17 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr ""
-#: src/components/FeedInterstitials.tsx:730
-#: src/components/FeedInterstitials.tsx:791
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:712
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
-#: src/view/com/profile/ProfileFollows.tsx:192
-#: src/view/com/profile/ProfileFollows.tsx:193
+#: src/view/com/profile/ProfileFollows.tsx:190
+#: src/view/com/profile/ProfileFollows.tsx:191
msgid "See suggested accounts"
msgstr ""
@@ -8323,11 +8395,11 @@ msgstr ""
msgid "Select a color"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:372
+#: src/components/moderation/ReportDialog/index.tsx:366
msgid "Select a reason"
msgstr ""
-#: src/screens/Login/ChooseAccountForm.tsx:77
+#: src/screens/Login/ChooseAccountForm.tsx:78
msgid "Select account"
msgstr ""
@@ -8359,23 +8431,23 @@ msgstr ""
msgid "Select duration"
msgstr ""
-#: src/screens/Login/index.tsx:158
+#: src/screens/Login/index.tsx:159
msgid "Select from an existing account"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:547
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:550
msgid "Select from your lists"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:549
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:552
msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}0>"
msgstr ""
-#: src/view/com/composer/photos/SelectGifBtn.tsx:35
+#: src/view/com/composer/photos/SelectGifBtn.tsx:36
msgid "Select GIF"
msgstr ""
-#: src/components/dialogs/GifSelect.tsx:294
+#: src/components/dialogs/GifSelect.tsx:295
msgid "Select GIF \"{0}\""
msgstr ""
@@ -8398,7 +8470,7 @@ msgstr ""
msgid "Select languages"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:422
+#: src/components/moderation/ReportDialog/index.tsx:416
msgid "Select moderation service"
msgstr ""
@@ -8439,11 +8511,11 @@ msgstr ""
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:302
+#: src/screens/Signup/StepInfo/index.tsx:300
msgid "Select your date of birth"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:67
+#: src/screens/Onboarding/StepInterests/index.tsx:68
#: src/screens/Settings/InterestsSettings.tsx:165
msgid "Select your interests from the options below"
msgstr ""
@@ -8452,7 +8524,7 @@ msgstr ""
msgid "Select your preferred language for translations in your feed."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:113
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:114
msgid "Select your preferred notification channels"
msgstr ""
@@ -8468,8 +8540,8 @@ msgstr ""
msgid "Send a neat website!"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:252
-#: src/components/contacts/screens/PhoneInput.tsx:257
+#: src/components/contacts/screens/PhoneInput.tsx:254
+#: src/components/contacts/screens/PhoneInput.tsx:259
msgid "Send code"
msgstr ""
@@ -8485,7 +8557,7 @@ msgctxt "action"
msgid "Send Email"
msgstr ""
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr ""
@@ -8494,15 +8566,15 @@ msgstr ""
msgid "Send message"
msgstr ""
-#: src/components/PostControls/ShareMenu/RecentChats.tsx:121
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:122
msgid "Send post to {name}"
msgstr ""
-#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
+#: src/components/dms/dialogs/ShareViaChatDialog.tsx:63
msgid "Send post to..."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:813
+#: src/components/moderation/ReportDialog/index.tsx:807
msgid "Send report to {title}"
msgstr ""
@@ -8516,10 +8588,10 @@ msgstr ""
msgid "Send verification email"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:102
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:108
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
msgid "Send via direct message"
msgstr ""
@@ -8527,7 +8599,7 @@ msgstr ""
msgid "Sends email with confirmation code for account deletion"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:280
+#: src/components/contacts/screens/PhoneInput.tsx:282
msgid "Sent to our phone number verification provider Plivo"
msgstr ""
@@ -8543,7 +8615,7 @@ msgstr ""
msgid "Set new password"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:475
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:478
msgid "Set precisely which groups of people can reply to your post"
msgstr ""
@@ -8551,11 +8623,11 @@ msgstr ""
msgid "Set up your account"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:425
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:428
msgid "Set who can reply to your post"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:220
+#: src/ageAssurance/components/NoAccessScreen.tsx:217
msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!"
msgstr ""
@@ -8563,10 +8635,10 @@ msgstr ""
msgid "Sets email for password reset"
msgstr ""
-#: src/Navigation.tsx:215
+#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr ""
@@ -8619,7 +8691,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr ""
@@ -8627,14 +8699,14 @@ msgstr ""
msgid "Sexually Suggestive"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/components/StarterPack/QrCodeDialog.tsx:194
#: src/screens/Hashtag.tsx:142
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
+#: src/screens/StarterPack/StarterPackScreen.tsx:437
#: src/screens/Topic.tsx:103
msgid "Share"
msgstr ""
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr ""
@@ -8647,60 +8719,60 @@ msgstr ""
msgid "Share a fun fact!"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:562
+#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Share anyway"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:164
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165
msgid "Share author DID"
msgstr ""
#: src/components/dialogs/LinkWarning.tsx:96
#: src/components/dialogs/LinkWarning.tsx:104
-#: src/components/StarterPack/ShareDialog.tsx:113
-#: src/components/StarterPack/ShareDialog.tsx:122
+#: src/components/StarterPack/ShareDialog.tsx:114
+#: src/components/StarterPack/ShareDialog.tsx:123
msgid "Share link"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:72
+#: src/components/StarterPack/ShareDialog.tsx:73
msgid "Share link dialog"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:156
msgid "Share post at:// URI"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:127
-#: src/components/StarterPack/ShareDialog.tsx:137
+#: src/components/StarterPack/ShareDialog.tsx:128
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Share QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:471
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:473
msgid "Share this feed"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:426
+#: src/screens/StarterPack/StarterPackScreen.tsx:430
msgid "Share this starter pack"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:84
+#: src/components/StarterPack/ShareDialog.tsx:85
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:118
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:121
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:159
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:165
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:171
-#: src/screens/StarterPack/StarterPackScreen.tsx:613
-#: src/screens/StarterPack/StarterPackScreen.tsx:621
-#: src/view/com/profile/ProfileMenu.tsx:269
-#: src/view/com/profile/ProfileMenu.tsx:282
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
+#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/view/com/profile/ProfileMenu.tsx:270
+#: src/view/com/profile/ProfileMenu.tsx:283
msgid "Share via..."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:229
+#: src/components/contacts/screens/GetContacts.tsx:231
msgid "Share your contacts to find friends"
msgstr ""
@@ -8708,25 +8780,25 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:319
msgid "Shared Preferences Tester"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:183
msgid "Show alt text"
msgstr ""
#: src/components/moderation/ScreenHider.tsx:178
#: src/components/moderation/ScreenHider.tsx:181
#: src/screens/List/ListHiddenScreen.tsx:190
+#: src/screens/VideoFeed/index.tsx:650
#: src/screens/VideoFeed/index.tsx:656
-#: src/screens/VideoFeed/index.tsx:662
msgid "Show anyway"
msgstr ""
@@ -8743,8 +8815,8 @@ msgstr ""
msgid "Show customization options"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:541
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546
msgid "Show less like this"
msgstr ""
@@ -8752,7 +8824,7 @@ msgstr ""
msgid "Show list anyway"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:528
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:531
msgid "Show lists of users to select from"
msgstr ""
@@ -8765,12 +8837,12 @@ msgstr ""
msgid "Show More"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:535
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:536
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538
msgid "Show more like this"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14
+#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:15
msgid "Show more replies"
msgstr ""
@@ -8788,12 +8860,12 @@ msgstr ""
msgid "Show replies"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:43
+#: src/screens/PostThread/components/HeaderDropdown.tsx:44
msgid "Show replies as"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
msgid "Show reply for everyone"
msgstr ""
@@ -8820,7 +8892,7 @@ msgstr ""
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr ""
@@ -8828,28 +8900,28 @@ msgstr ""
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
#: src/components/dialogs/Signin.tsx:97
#: src/components/dialogs/Signin.tsx:99
-#: src/components/WelcomeModal.tsx:194
-#: src/components/WelcomeModal.tsx:206
+#: src/components/WelcomeModal.tsx:196
+#: src/components/WelcomeModal.tsx:208
#: src/screens/Hashtag.tsx:240
-#: src/screens/Login/index.tsx:136
-#: src/screens/Login/index.tsx:157
+#: src/screens/Login/index.tsx:137
+#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8859,7 +8931,7 @@ msgstr ""
msgid "Sign in as {0}"
msgstr ""
-#: src/screens/Login/ChooseAccountForm.tsx:81
+#: src/screens/Login/ChooseAccountForm.tsx:82
msgid "Sign in as..."
msgstr ""
@@ -8880,8 +8952,8 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Sign in to view post"
msgstr ""
@@ -8911,38 +8983,34 @@ msgstr ""
msgid "Sign-in Required"
msgstr ""
-#: src/lib/hooks/useAccountSwitcher.ts:41
-#: src/screens/Login/ChooseAccountForm.tsx:53
+#: src/lib/hooks/useAccountSwitcher.ts:42
+#: src/screens/Login/ChooseAccountForm.tsx:54
msgid "Signed in as @{0}"
msgstr ""
-#: src/components/FeedInterstitials.tsx:707
-msgid "Similar accounts"
-msgstr ""
-
-#: src/components/contacts/screens/PhoneInput.tsx:160
-#: src/components/contacts/screens/VerifyNumber.tsx:202
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:78
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:82
-#: src/screens/Onboarding/StepFinished/index.tsx:288
-#: src/screens/Onboarding/StepFinished/index.tsx:310
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:252
+#: src/components/contacts/screens/PhoneInput.tsx:162
+#: src/components/contacts/screens/VerifyNumber.tsx:204
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
+#: src/screens/Onboarding/StepFinished/index.tsx:291
+#: src/screens/Onboarding/StepFinished/index.tsx:313
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
-#: src/screens/StarterPack/Wizard/index.tsx:218
+#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:157
-#: src/components/contacts/screens/VerifyNumber.tsx:199
+#: src/components/contacts/screens/PhoneInput.tsx:159
+#: src/components/contacts/screens/VerifyNumber.tsx:201
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:281
-#: src/screens/Onboarding/StepFinished/index.tsx:307
+#: src/screens/Onboarding/StepFinished/index.tsx:284
+#: src/screens/Onboarding/StepFinished/index.tsx:310
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8955,7 +9023,7 @@ msgstr ""
msgid "Snoozes the reminder"
msgstr ""
-#: src/components/WelcomeModal.tsx:148
+#: src/components/WelcomeModal.tsx:150
msgid "Social media you control."
msgstr ""
@@ -8963,15 +9031,15 @@ msgstr ""
msgid "Software Dev"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:120
+#: src/components/verification/VerificationsDialog.tsx:121
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:869
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr ""
-#: src/components/WhoCanReply.tsx:86
+#: src/components/WhoCanReply.tsx:87
msgid "Some people can reply"
msgstr ""
@@ -8979,7 +9047,7 @@ msgstr ""
msgid "Someone reacted {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:243
+#: src/screens/Messages/components/ChatListItem.tsx:244
msgid "Someone reacted {0} to {1}"
msgstr ""
@@ -8992,9 +9060,9 @@ msgid "Something went wrong"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
-#: src/components/moderation/ReportDialog/index.tsx:279
+#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr ""
@@ -9012,20 +9080,20 @@ msgstr ""
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:233
+#: src/components/moderation/ReportDialog/index.tsx:231
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:539
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:541
msgid "Something wrong? Let us know."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
-#: src/App.native.tsx:132
-#: src/App.web.tsx:104
+#: src/App.native.tsx:137
+#: src/App.web.tsx:113
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -9055,15 +9123,15 @@ msgid "Spam or other inauthentic behavior or deception"
msgstr ""
#: src/lib/interests.ts:72
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:230
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227
msgid "Sports"
msgstr ""
-#: src/components/PostControls/ShareMenu/RecentChats.tsx:206
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:207
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:74
+#: src/components/dms/dialogs/NewChatDialog.tsx:75
msgid "Start a new chat"
msgstr ""
@@ -9081,9 +9149,9 @@ msgstr ""
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:589
-#: src/Navigation.tsx:594
-#: src/screens/StarterPack/Wizard/index.tsx:209
+#: src/Navigation.tsx:590
+#: src/Navigation.tsx:595
+#: src/screens/StarterPack/Wizard/index.tsx:210
msgid "Starter Pack"
msgstr ""
@@ -9100,11 +9168,11 @@ msgstr ""
msgid "Starter pack by you"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:733
+#: src/screens/StarterPack/StarterPackScreen.tsx:738
msgid "Starter pack is invalid"
msgstr ""
-#: src/screens/Search/Explore.tsx:630
+#: src/screens/Search/Explore.tsx:629
#: src/view/screens/Profile.tsx:240
msgid "Starter Packs"
msgstr ""
@@ -9113,17 +9181,21 @@ msgstr ""
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr ""
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:100
-#: src/screens/Settings/AboutSettings.tsx:103
+#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:101
msgid "Status Page"
msgstr ""
#: src/screens/Onboarding/Layout.tsx:226
-#: src/screens/Signup/index.tsx:169
+#: src/screens/Signup/index.tsx:180
msgid "Step {0} of {1}"
msgstr ""
@@ -9131,11 +9203,11 @@ msgstr ""
msgid "Storage cleared, you need to restart the app now."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:291
+#: src/components/contacts/screens/PhoneInput.tsx:293
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:309
#: src/screens/Settings/Settings.tsx:464
msgid "Storybook"
msgstr ""
@@ -9144,8 +9216,8 @@ msgstr ""
msgid "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:117
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:123
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:119
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:125
#: src/components/live/GoLiveDisabledDialog.tsx:138
#: src/components/live/GoLiveDisabledDialog.tsx:139
#: src/components/moderation/LabelsOnMeDialog.tsx:342
@@ -9163,13 +9235,13 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:500
-#: src/components/moderation/ReportDialog/index.tsx:561
-#: src/components/moderation/ReportDialog/index.tsx:568
+#: src/components/moderation/ReportDialog/index.tsx:494
+#: src/components/moderation/ReportDialog/index.tsx:555
+#: src/components/moderation/ReportDialog/index.tsx:562
msgid "Submit report"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:81
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:74
msgid "Subscribe"
msgstr ""
@@ -9181,20 +9253,20 @@ msgstr ""
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:69
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:62
msgid "Subscribe to this list"
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:251
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:158
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:159
msgid "Success"
msgstr ""
@@ -9207,18 +9279,18 @@ msgstr ""
msgid "Successfully verified"
msgstr ""
-#: src/screens/Search/Explore.tsx:359
+#: src/screens/Search/Explore.tsx:361
msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:705
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:155
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr ""
@@ -9232,13 +9304,13 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:329
#: src/view/screens/Support.tsx:34
#: src/view/screens/Support.tsx:37
msgid "Support"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:233
+#: src/components/contacts/screens/PhoneInput.tsx:235
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
@@ -9270,8 +9342,8 @@ msgid "System"
msgstr ""
#: src/screens/Log.tsx:58
-#: src/screens/Settings/AboutSettings.tsx:107
-#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/AboutSettings.tsx:105
+#: src/screens/Settings/AboutSettings.tsx:108
#: src/screens/Settings/Settings.tsx:457
msgid "System log"
msgstr ""
@@ -9292,7 +9364,7 @@ msgstr ""
msgid "Tap for more information"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:336
+#: src/screens/Signup/StepInfo/index.tsx:334
msgid "Tap here to confirm your location with GPS."
msgstr ""
@@ -9314,11 +9386,11 @@ msgstr ""
msgid "Targeted harassment"
msgstr ""
-#: src/state/shell/progress-guide.tsx:235
+#: src/state/shell/progress-guide.tsx:236
msgid "Task complete - 10 follows!"
msgstr ""
-#: src/state/shell/progress-guide.tsx:225
+#: src/state/shell/progress-guide.tsx:226
msgid "Task complete - 10 likes!"
msgstr ""
@@ -9350,12 +9422,12 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:182
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97
-#: src/Navigation.tsx:338
-#: src/screens/Settings/AboutSettings.tsx:84
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/Navigation.tsx:339
+#: src/screens/Settings/AboutSettings.tsx:82
+#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr ""
@@ -9377,8 +9449,8 @@ msgstr ""
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:394
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:121
+#: src/ageAssurance/components/NoAccessScreen.tsx:392
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:123
msgid "Thanks! You're all set."
msgstr ""
@@ -9386,16 +9458,16 @@ msgstr ""
msgid "That contains the following:"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:110
-#: src/screens/StarterPack/StarterPackScreen.tsx:111
-#: src/screens/StarterPack/StarterPackScreen.tsx:155
-#: src/screens/StarterPack/StarterPackScreen.tsx:156
+#: src/screens/StarterPack/StarterPackScreen.tsx:112
+#: src/screens/StarterPack/StarterPackScreen.tsx:113
+#: src/screens/StarterPack/StarterPackScreen.tsx:157
+#: src/screens/StarterPack/StarterPackScreen.tsx:158
#: src/screens/StarterPack/Wizard/index.tsx:117
#: src/screens/StarterPack/Wizard/index.tsx:127
msgid "That starter pack could not be found."
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:77
+#: src/screens/Signup/StepHandle/index.tsx:80
msgid "That username is already taken"
msgstr ""
@@ -9403,13 +9475,13 @@ msgstr ""
msgid "That's all, folks!"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1157
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
-#: src/view/com/profile/ProfileMenu.tsx:538
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr ""
@@ -9443,11 +9515,11 @@ msgstr ""
msgid "The Discover feed"
msgstr ""
-#: src/state/shell/progress-guide.tsx:226
+#: src/state/shell/progress-guide.tsx:227
msgid "The Discover feed now knows what you like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:332
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -9493,7 +9565,7 @@ msgstr ""
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:743
+#: src/screens/StarterPack/StarterPackScreen.tsx:748
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
@@ -9513,9 +9585,9 @@ msgstr ""
msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:112
-#: src/components/contacts/screens/VerifyNumber.tsx:110
-#: src/components/contacts/screens/VerifyNumber.tsx:162
+#: src/components/contacts/screens/PhoneInput.tsx:114
+#: src/components/contacts/screens/VerifyNumber.tsx:112
+#: src/components/contacts/screens/VerifyNumber.tsx:164
msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again."
msgstr ""
@@ -9527,11 +9599,11 @@ msgstr ""
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:144
+#: src/components/contacts/screens/GetContacts.tsx:146
msgid "There was a problem with your internet connection, please try again"
msgstr ""
@@ -9539,15 +9611,15 @@ msgstr ""
msgid "There was an issue connecting to Tenor."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
-#: src/screens/ProfileList/components/Header.tsx:88
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:76
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:179
+#: src/screens/ProfileList/components/Header.tsx:90
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:78
#: src/screens/SavedFeeds.tsx:97
msgid "There was an issue contacting the server"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:419
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:98
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:421
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:99
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr ""
@@ -9555,8 +9627,8 @@ msgstr ""
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
-#: src/screens/Search/Explore.tsx:999
-#: src/view/com/posts/PostFeed.tsx:755
+#: src/screens/Search/Explore.tsx:988
+#: src/view/com/posts/PostFeed.tsx:757
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -9581,40 +9653,40 @@ msgstr ""
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:139
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:446
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:104
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:115
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:116
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:127
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:253
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
-#: src/view/com/profile/ProfileMenu.tsx:151
-#: src/view/com/profile/ProfileMenu.tsx:161
-#: src/view/com/profile/ProfileMenu.tsx:175
-#: src/view/com/profile/ProfileMenu.tsx:185
-#: src/view/com/profile/ProfileMenu.tsx:198
-#: src/view/com/profile/ProfileMenu.tsx:210
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:176
+#: src/view/com/profile/ProfileMenu.tsx:186
+#: src/view/com/profile/ProfileMenu.tsx:199
+#: src/view/com/profile/ProfileMenu.tsx:211
msgid "There was an issue! {0}"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:238
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:240
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/screens/ProfileList/components/Header.tsx:107
-#: src/screens/ProfileList/components/Header.tsx:125
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:122
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:140
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:40
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:59
+#: src/screens/ProfileList/components/Header.tsx:105
+#: src/screens/ProfileList/components/Header.tsx:119
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:120
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:134
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:37
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:52
msgid "There was an issue. Please check your internet connection and try again."
msgstr ""
@@ -9628,7 +9700,7 @@ msgstr ""
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:654
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:657
msgid "These are your default settings"
msgstr ""
@@ -9640,11 +9712,11 @@ msgstr ""
msgid "This {screenDescription} has been flagged:"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:87
+#: src/components/verification/VerificationsDialog.tsx:88
msgid "This account has a checkmark because it's been verified by trusted sources."
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:92
+#: src/components/verification/VerificationsDialog.tsx:93
msgid "This account has one or more attempted verifications, but it is not currently verified."
msgstr ""
@@ -9678,7 +9750,7 @@ msgstr ""
msgid "This chat was disconnected"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:103
+#: src/components/contacts/screens/VerifyNumber.tsx:105
msgid "This code is invalid. Resend to get a new code."
msgstr ""
@@ -9707,10 +9779,14 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:365
+#: src/screens/Messages/components/ChatListItem.tsx:366
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9735,12 +9811,12 @@ msgstr ""
msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later."
msgstr ""
-#: src/view/com/posts/CustomFeedEmptyState.tsx:61
+#: src/view/com/posts/CustomFeedEmptyState.tsx:62
msgid "This feed is empty! You may need to follow more users or tune your language settings."
msgstr ""
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr ""
@@ -9798,35 +9874,35 @@ msgstr ""
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
-#: src/components/WhoCanReply.tsx:272
+#: src/components/WhoCanReply.tsx:273
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143
msgid "This post is only visible to logged-in users."
msgstr ""
-#: src/screens/Bookmarks/index.tsx:256
+#: src/screens/Bookmarks/index.tsx:257
msgid "This post was deleted by its author"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:773
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:514
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:559
+#: src/view/com/profile/ProfileMenu.tsx:560
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:805
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr ""
@@ -9834,7 +9910,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9850,7 +9926,7 @@ msgstr ""
msgid "This user does not have a display name, and therefore cannot be verified."
msgstr ""
-#: src/view/com/profile/ProfileFollowers.tsx:172
+#: src/view/com/profile/ProfileFollowers.tsx:170
msgid "This user doesn't have any followers."
msgstr ""
@@ -9879,7 +9955,7 @@ msgstr ""
msgid "This user is new here. Press for more info about when they joined."
msgstr ""
-#: src/view/com/profile/ProfileFollows.tsx:184
+#: src/view/com/profile/ProfileFollows.tsx:182
msgid "This user isn't following anyone."
msgstr ""
@@ -9891,12 +9967,12 @@ msgstr ""
msgid "This will remove @{0} from the quick access list."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:795
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:23
-#: src/screens/PostThread/components/HeaderDropdown.tsx:26
+#: src/screens/PostThread/components/HeaderDropdown.tsx:24
+#: src/screens/PostThread/components/HeaderDropdown.tsx:27
msgid "Thread options"
msgstr ""
@@ -9909,12 +9985,12 @@ msgstr ""
msgid "Thread Preferences"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:57
-#: src/screens/PostThread/components/HeaderDropdown.tsx:62
+#: src/screens/PostThread/components/HeaderDropdown.tsx:58
+#: src/screens/PostThread/components/HeaderDropdown.tsx:63
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:371
+#: src/Navigation.tsx:372
msgid "Threads Preferences"
msgstr ""
@@ -9935,7 +10011,7 @@ msgstr ""
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:242
+#: src/ageAssurance/components/NoAccessScreen.tsx:239
msgid "To log out, <0>click here0>."
msgstr ""
@@ -9955,15 +10031,15 @@ msgstr ""
msgid "Toggles the sound"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:120
+#: src/components/contacts/screens/VerifyNumber.tsx:122
msgid "Too many attempts. Please wait a few minutes and try again."
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:173
+#: src/components/contacts/screens/VerifyNumber.tsx:175
msgid "Too many codes sent. Please wait a few minutes and try again."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:153
+#: src/components/contacts/screens/GetContacts.tsx:155
msgid "Too many contacts - you've exceeded the number of contacts you can import to find your friends"
msgstr ""
@@ -9973,23 +10049,23 @@ msgstr ""
msgid "Top"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:73
-#: src/screens/PostThread/components/HeaderDropdown.tsx:78
+#: src/screens/PostThread/components/HeaderDropdown.tsx:74
+#: src/screens/PostThread/components/HeaderDropdown.tsx:79
#: src/screens/Settings/ThreadPreferences.tsx:56
#: src/screens/Settings/ThreadPreferences.tsx:59
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:554
+#: src/Navigation.tsx:555
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:139
-#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:502
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:504
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
+#: src/components/dms/MessageContextMenu.tsx:136
+#: src/components/dms/MessageContextMenu.tsx:138
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr ""
@@ -9998,11 +10074,11 @@ msgstr ""
msgid "Tree view"
msgstr ""
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:49
msgid "Trending"
msgstr ""
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:56
msgid "Trending options"
msgstr ""
@@ -10014,7 +10090,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:139
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -10059,14 +10135,14 @@ msgid "Unable to contact your service. Please check your internet connection and
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:68
-#: src/screens/Login/index.tsx:93
+#: src/screens/Login/index.tsx:94
#: src/screens/Login/LoginForm.tsx:169
#: src/screens/Login/SetNewPasswordForm.tsx:81
-#: src/screens/Signup/index.tsx:77
+#: src/screens/Signup/index.tsx:88
msgid "Unable to contact your service. Please check your Internet connection."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:680
msgid "Unable to delete"
msgstr ""
@@ -10078,7 +10154,7 @@ msgstr ""
msgid "Unapply Pull Request {currentChannel}"
msgstr ""
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:41
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:42
msgid "Unavailable"
msgstr ""
@@ -10091,44 +10167,48 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
-#: src/screens/ProfileList/components/Header.tsx:171
-#: src/screens/ProfileList/components/Header.tsx:178
-#: src/view/com/profile/ProfileMenu.tsx:550
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
+#: src/screens/ProfileList/components/Header.tsx:165
+#: src/screens/ProfileList/components/Header.tsx:172
+#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:261
#: src/components/dms/ConvoMenu.tsx:264
-#: src/view/com/profile/ProfileMenu.tsx:455
-#: src/view/com/profile/ProfileMenu.tsx:461
+#: src/view/com/profile/ProfileMenu.tsx:456
+#: src/view/com/profile/ProfileMenu.tsx:462
msgid "Unblock account"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
-#: src/view/com/profile/ProfileMenu.tsx:532
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
+#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:247
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:250
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:241
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:244
msgid "Unblock list"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:42
+#: src/components/PostControls/BookmarkButton.tsx:43
msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,32 +10222,32 @@ msgstr ""
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:311
-#: src/view/com/profile/ProfileMenu.tsx:321
+#: src/view/com/profile/ProfileMenu.tsx:312
+#: src/view/com/profile/ProfileMenu.tsx:322
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:860
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:484
+#: src/components/moderation/ReportDialog/index.tsx:478
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:197
+#: src/ageAssurance/components/NoAccessScreen.tsx:194
msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:182
+#: src/ageAssurance/components/NoAccessScreen.tsx:179
msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region."
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:211
+#: src/components/verification/VerificationsDialog.tsx:208
msgid "Unknown verifier"
msgstr ""
@@ -10179,12 +10259,12 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:517
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:276
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -10194,8 +10274,8 @@ msgctxt "video"
msgid "Unmute"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:185
-#: src/screens/ProfileList/components/Header.tsx:192
+#: src/screens/ProfileList/components/Header.tsx:179
+#: src/screens/ProfileList/components/Header.tsx:186
msgid "Unmute"
msgstr ""
@@ -10204,10 +10284,10 @@ msgstr ""
msgid "Unmute {tag}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:685
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691
-#: src/view/com/profile/ProfileMenu.tsx:434
-#: src/view/com/profile/ProfileMenu.tsx:440
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:688
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
+#: src/view/com/profile/ProfileMenu.tsx:435
+#: src/view/com/profile/ProfileMenu.tsx:441
msgid "Unmute account"
msgstr ""
@@ -10215,13 +10295,13 @@ msgstr ""
msgid "Unmute conversation"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:257
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:260
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:251
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:254
msgid "Unmute list"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:574
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:577
msgid "Unmute thread"
msgstr ""
@@ -10229,13 +10309,13 @@ msgstr ""
msgid "Unmute video"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:156
-#: src/screens/ProfileList/components/Header.tsx:163
+#: src/screens/ProfileList/components/Header.tsx:150
+#: src/screens/ProfileList/components/Header.tsx:157
msgid "Unpin"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:527
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:529
#: src/screens/SavedFeeds.tsx:351
msgid "Unpin feed"
msgstr ""
@@ -10244,30 +10324,30 @@ msgstr ""
msgid "Unpin Feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:311
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:313
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:477
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:484
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:487
msgid "Unpin from profile"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:230
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:233
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:224
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:227
msgid "Unpin moderation list"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
msgid "Unpinned {0} from Home"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:75
+#: src/screens/ProfileList/components/Header.tsx:77
msgid "Unpinned from your feeds"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:102
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:104
msgid "Unpinned list"
msgstr ""
@@ -10276,7 +10356,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:341
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr ""
@@ -10285,7 +10365,7 @@ msgstr ""
msgid "Unsubscribe from list"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:308
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr ""
@@ -10293,7 +10373,7 @@ msgstr ""
msgid "Unsubscribed from list"
msgstr ""
-#: src/view/com/composer/Composer.tsx:897
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10322,12 +10402,12 @@ msgstr ""
msgid "Update your email"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:348
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:396
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
@@ -10344,20 +10424,20 @@ msgstr ""
msgid "Upload a text file to:"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:469
-#: src/view/com/util/UserAvatar.tsx:472
+#: src/view/com/util/UserAvatar.tsx:470
+#: src/view/com/util/UserAvatar.tsx:473
#: src/view/com/util/UserBanner.tsx:159
#: src/view/com/util/UserBanner.tsx:162
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:486
+#: src/view/com/util/UserAvatar.tsx:487
#: src/view/com/util/UserBanner.tsx:176
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:480
-#: src/view/com/util/UserAvatar.tsx:484
+#: src/view/com/util/UserAvatar.tsx:481
+#: src/view/com/util/UserAvatar.tsx:485
#: src/view/com/util/UserBanner.tsx:170
#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Library"
@@ -10372,7 +10452,7 @@ msgstr ""
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1894
+#: src/view/com/composer/Composer.tsx:2298
msgid "Uploading video..."
msgstr ""
@@ -10445,6 +10525,10 @@ msgstr ""
msgid "User list by {0}"
msgstr ""
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr ""
@@ -10459,15 +10543,15 @@ msgctxt "toast"
msgid "User list updated"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:233
+#: src/screens/Signup/StepHandle/index.tsx:230
msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:217
+#: src/screens/Signup/StepHandle/index.tsx:214
msgid "Username cannot begin or end with a hyphen"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:221
+#: src/screens/Signup/StepHandle/index.tsx:218
msgid "Username must only contain letters (a-z), numbers, and hyphens"
msgstr ""
@@ -10475,11 +10559,11 @@ msgstr ""
msgid "Username or email address"
msgstr ""
-#: src/components/WhoCanReply.tsx:335
+#: src/components/WhoCanReply.tsx:336
msgid "users followed by <0>@{0}0>"
msgstr ""
-#: src/components/WhoCanReply.tsx:322
+#: src/components/WhoCanReply.tsx:323
msgid "users following <0>@{0}0>"
msgstr ""
@@ -10500,28 +10584,28 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:208
-#: src/screens/Moderation/VerificationSettings.tsx:32
+#: src/Navigation.tsx:209
+#: src/screens/Moderation/VerificationSettings.tsx:33
msgid "Verification Settings"
msgstr ""
-#: src/screens/Moderation/VerificationSettings.tsx:41
+#: src/screens/Moderation/VerificationSettings.tsx:42
msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:103
+#: src/components/verification/VerificationsDialog.tsx:104
msgid "Verified by:"
msgstr ""
#: src/components/verification/VerificationCreatePrompt.tsx:84
#: src/components/verification/VerificationCreatePrompt.tsx:86
-#: src/view/com/profile/ProfileMenu.tsx:418
-#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:419
+#: src/view/com/profile/ProfileMenu.tsx:422
msgid "Verify account"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:331
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:176
+#: src/ageAssurance/components/NoAccessScreen.tsx:329
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:178
msgid "Verify again"
msgstr ""
@@ -10547,15 +10631,15 @@ msgstr ""
msgid "Verify email dialog"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:319
-#: src/ageAssurance/components/NoAccessScreen.tsx:333
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:164
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:178
+#: src/ageAssurance/components/NoAccessScreen.tsx:317
+#: src/ageAssurance/components/NoAccessScreen.tsx:331
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:166
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:180
msgid "Verify now"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:172
-#: src/components/contacts/screens/VerifyNumber.tsx:214
+#: src/components/contacts/screens/PhoneInput.tsx:174
+#: src/components/contacts/screens/VerifyNumber.tsx:216
msgid "Verify phone number"
msgstr ""
@@ -10579,21 +10663,21 @@ msgid "Verify your email"
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:296
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:207
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:208
msgid "Verifying"
msgstr ""
-#: src/ageAssurance/components/RedirectOverlay.tsx:165
+#: src/ageAssurance/components/RedirectOverlay.tsx:164
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74
msgid "Verifying your age assurance status"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:304
+#: src/components/contacts/screens/VerifyNumber.tsx:306
msgid "Verifying..."
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:126
-#: src/screens/Settings/AboutSettings.tsx:155
+#: src/screens/Settings/AboutSettings.tsx:124
+#: src/screens/Settings/AboutSettings.tsx:153
msgid "Version {0}"
msgstr ""
@@ -10606,7 +10690,7 @@ msgstr ""
msgid "Video failed to process"
msgstr ""
-#: src/Navigation.tsx:610
+#: src/Navigation.tsx:611
msgid "Video Feed"
msgstr ""
@@ -10614,16 +10698,20 @@ msgstr ""
msgid "Video from {0}: {text}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:234
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1115
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1115
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr ""
@@ -10635,7 +10723,7 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1904
+#: src/view/com/composer/Composer.tsx:2308
msgid "Video uploaded"
msgstr ""
@@ -10651,19 +10739,19 @@ msgstr ""
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:586
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:267
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr ""
#: src/components/ProfileCard.tsx:142
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:456
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:819
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr ""
@@ -10684,8 +10772,8 @@ msgstr ""
msgid "View debug entry"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:684
-#: src/screens/VideoFeed/index.tsx:702
+#: src/screens/VideoFeed/index.tsx:678
+#: src/screens/VideoFeed/index.tsx:696
msgid "View details"
msgstr ""
@@ -10697,18 +10785,18 @@ msgstr ""
msgid "View information about these labels"
msgstr ""
-#: src/components/interstitials/TrendingVideos.tsx:198
-#: src/components/interstitials/TrendingVideos.tsx:220
-#: src/screens/Search/modules/ExploreTrendingVideos.tsx:193
-#: src/screens/Search/modules/ExploreTrendingVideos.tsx:212
+#: src/components/interstitials/TrendingVideos.tsx:199
+#: src/components/interstitials/TrendingVideos.tsx:221
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:190
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:209
msgid "View more"
msgstr ""
-#: src/components/interstitials/TrendingVideos.tsx:226
+#: src/components/interstitials/TrendingVideos.tsx:227
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:581
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10729,11 +10817,11 @@ msgstr ""
msgid "View the labeling service provided by @{0}"
msgstr ""
-#: src/components/verification/VerificationCheckButton.tsx:99
+#: src/components/verification/VerificationCheckButton.tsx:100
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:488
msgid "View users who like this feed"
msgstr ""
@@ -10762,7 +10850,7 @@ msgstr ""
msgid "View your muted accounts"
msgstr ""
-#: src/components/verification/VerificationCheckButton.tsx:98
+#: src/components/verification/VerificationCheckButton.tsx:99
msgid "View your verifications"
msgstr ""
@@ -10788,7 +10876,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10810,12 +10898,12 @@ msgstr ""
msgid "Warn content and filter from feeds"
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:172
-#: src/components/live/LiveStatusDialog.tsx:185
+#: src/components/live/LiveStatusDialog.tsx:173
+#: src/components/live/LiveStatusDialog.tsx:182
msgid "Watch now"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:250
+#: src/components/contacts/screens/GetContacts.tsx:252
msgid "We apply the highest privacy standards, and never share or sell your contact information."
msgstr ""
@@ -10839,7 +10927,7 @@ msgstr ""
msgid "We couldn't load this conversation"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:241
+#: src/components/contacts/screens/GetContacts.tsx:243
msgid "We delete hashes after matches are made"
msgstr ""
@@ -10859,15 +10947,15 @@ msgstr ""
msgid "We have sent another verification email to <0>{0}0>."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:181
+#: src/components/contacts/screens/PhoneInput.tsx:183
msgid "We need to verify your number before we can look for your friends. A verification code will be sent to this number."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:238
+#: src/components/contacts/screens/GetContacts.tsx:240
msgid "We never keep plain phone numbers"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:244
+#: src/components/contacts/screens/GetContacts.tsx:246
msgid "We only suggest follows if both people consent"
msgstr ""
@@ -10900,7 +10988,7 @@ msgid "We were unable to load your configured labelers at this time."
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:304
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:215
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:216
msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically."
msgstr ""
@@ -10908,7 +10996,7 @@ msgstr ""
msgid "We will let you know when your account is ready."
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:503
+#: src/screens/Settings/FindContactsSettings.tsx:509
msgid "We will notify you when we find your friends."
msgstr ""
@@ -10916,7 +11004,7 @@ msgstr ""
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:60
+#: src/screens/Onboarding/StepInterests/index.tsx:61
msgid "We'll use this to help customize your experience."
msgstr ""
@@ -10929,7 +11017,7 @@ msgid "We're also updating our Community Guidelines, and we want your input! The
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:310
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:222
msgid "We're confirming your age assurance status with our servers. This should only take a few seconds."
msgstr ""
@@ -10938,20 +11026,20 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:189
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:95
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "We're so excited to have you join us!"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:387
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:114
+#: src/ageAssurance/components/NoAccessScreen.tsx:385
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:116
msgid "We're sorry, but based on your device's location, you are currently located in a region that requires age assurance."
msgstr ""
@@ -10968,7 +11056,7 @@ msgstr ""
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr ""
-#: src/view/com/composer/Composer.tsx:511
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
@@ -10977,7 +11065,7 @@ msgstr ""
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:216
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr ""
@@ -10998,7 +11086,7 @@ msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Poli
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:256
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:163
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164
msgid "We've confirmed your age assurance status. You can now close this dialog."
msgstr ""
@@ -11010,7 +11098,7 @@ msgstr ""
msgid "Welcome, friend!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:57
+#: src/screens/Onboarding/StepInterests/index.tsx:58
msgid "What are your interests?"
msgstr ""
@@ -11018,14 +11106,13 @@ msgstr ""
msgid "What do you want to call your starter pack?"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:857
-#: src/view/com/feeds/ComposerPrompt.tsx:189
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:147
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -11033,16 +11120,16 @@ msgstr ""
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr ""
-#: src/components/WhoCanReply.tsx:224
+#: src/components/WhoCanReply.tsx:225
msgid "Who can interact with this post?"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:421
-#: src/components/WhoCanReply.tsx:114
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:424
+#: src/components/WhoCanReply.tsx:115
msgid "Who can reply"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:128
msgid "Who can verify?"
msgstr ""
@@ -11097,6 +11184,14 @@ msgstr ""
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11202,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:855
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr ""
@@ -11133,20 +11228,20 @@ msgstr ""
msgid "Yes"
msgstr ""
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:687
+#: src/screens/StarterPack/StarterPackScreen.tsx:692
msgid "Yes, delete this starter pack"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
msgid "Yes, detach"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
msgid "Yes, hide"
msgstr ""
@@ -11158,11 +11253,11 @@ msgstr ""
msgid "Yesterday"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:59
+#: src/components/verification/VerifierDialog.tsx:60
msgid "You are a trusted verifier"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:173
+#: src/ageAssurance/components/NoAccessScreen.tsx:170
msgid "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app."
msgstr ""
@@ -11174,8 +11269,8 @@ msgstr ""
msgid "You are currently blocked from using the Go Live feature. To appeal this moderation decision, please submit the form below."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:301
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:134
+#: src/ageAssurance/components/NoAccessScreen.tsx:299
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:136
msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team0> if you believe this is an error."
msgstr ""
@@ -11188,7 +11283,7 @@ msgstr ""
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:212
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11196,15 +11291,15 @@ msgstr ""
msgid "You are not allowed to upload videos."
msgstr ""
-#: src/view/com/profile/ProfileFollows.tsx:183
+#: src/view/com/profile/ProfileFollows.tsx:181
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:157
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:64
+#: src/components/verification/VerificationsDialog.tsx:65
msgid "You are verified"
msgstr ""
@@ -11229,11 +11324,11 @@ msgstr ""
msgid "You can also temporarily deactivate your account instead, and reactivate it at any time."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:247
+#: src/components/contacts/screens/GetContacts.tsx:249
msgid "You can always opt out and delete your data"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:101
+#: src/lib/hooks/useNotificationHandler.ts:104
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
@@ -11241,7 +11336,7 @@ msgstr ""
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
msgctxt "toast"
msgid "You can hide a maximum of {MAX_HIDDEN_REPLIES} replies."
msgstr ""
@@ -11250,7 +11345,7 @@ msgstr ""
msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button."
msgstr ""
-#: src/screens/Login/index.tsx:196
+#: src/screens/Login/index.tsx:197
#: src/screens/Login/PasswordUpdatedForm.tsx:26
msgid "You can now sign in with your new password."
msgstr ""
@@ -11272,9 +11367,9 @@ msgstr ""
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
-#: src/components/interstitials/Trending.tsx:129
+#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:137
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:129
msgid "You can update this later from your settings."
msgstr ""
@@ -11291,7 +11386,7 @@ msgstr ""
msgid "You don't have any chat requests at the moment."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:583
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:586
msgid "You don't have any lists yet."
msgstr ""
@@ -11303,7 +11398,7 @@ msgstr ""
msgid "You don't have any saved feeds."
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:309
+#: src/components/contacts/screens/ViewMatches.tsx:311
msgid "You got here first"
msgstr ""
@@ -11317,7 +11412,7 @@ msgstr ""
msgid "You have blocked this user. You cannot view their content."
msgstr ""
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11471,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr ""
@@ -11425,11 +11528,11 @@ msgstr ""
msgid "You may only add up to 3 feeds"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:322
+#: src/screens/Signup/StepInfo/index.tsx:320
msgid "You must be {0} years of age or older to create an account in your region."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:317
+#: src/screens/Signup/StepInfo/index.tsx:315
msgid "You must be {MIN_ACCESS_AGE} years of age or older to create an account."
msgstr ""
@@ -11437,15 +11540,15 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr ""
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:60
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:61
msgid "You must complete age assurance in order to access this screen."
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:65
+#: src/components/StarterPack/QrCodeDialog.tsx:67
msgid "You must grant access to your photo library to save a QR code"
msgstr ""
@@ -11469,7 +11572,7 @@ msgstr ""
msgid "You reacted {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:220
+#: src/screens/Messages/components/ChatListItem.tsx:221
msgid "You reacted {0} to {1}"
msgstr ""
@@ -11487,11 +11590,11 @@ msgstr ""
msgid "You will no longer receive notifications for {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:231
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:239
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:221
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:229
msgid "You will now receive notifications for this thread"
msgstr ""
@@ -11499,35 +11602,35 @@ msgstr ""
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:156
+#: src/screens/Messages/components/ChatListItem.tsx:157
msgid "You: {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:185
+#: src/screens/Messages/components/ChatListItem.tsx:186
msgid "You: {defaultEmbeddedContentMessage}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:179
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:141
+#: src/screens/Signup/index.tsx:152
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:157
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:244
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:245
msgid "You'll follow these people and {0} others"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:242
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:243
msgid "You'll follow these people right away"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:311
+#: src/components/contacts/screens/GetContacts.tsx:313
msgid "You'll need to go to the System Settings for Bluesky and give permission if you want to use this feature."
msgstr ""
@@ -11535,7 +11638,7 @@ msgstr ""
msgid "You'll start receiving notifications for {0}!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:282
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:283
msgid "You'll stay updated with these feeds"
msgstr ""
@@ -11544,7 +11647,7 @@ msgid "You're in line"
msgstr ""
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -11557,11 +11660,11 @@ msgstr ""
msgid "You've chosen to hide a word or tag within this post."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:310
+#: src/components/contacts/screens/GetContacts.tsx:312
msgid "You've denied access to your contacts"
msgstr ""
-#: src/state/shell/progress-guide.tsx:236
+#: src/state/shell/progress-guide.tsx:237
msgid "You've found some people to follow"
msgstr ""
@@ -11589,11 +11692,11 @@ msgstr ""
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1166
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
-#: src/screens/Signup/index.tsx:179
+#: src/screens/Signup/index.tsx:190
msgid "Your account"
msgstr ""
@@ -11621,7 +11724,7 @@ msgstr ""
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:289
+#: src/screens/Signup/StepInfo/index.tsx:287
msgid "Your birth date"
msgstr ""
@@ -11645,7 +11748,7 @@ msgstr ""
msgid "Your contact {firstAuthorName} is on Bluesky"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:451
+#: src/components/contacts/screens/ViewMatches.tsx:453
msgid "Your contact {name}"
msgstr ""
@@ -11665,8 +11768,8 @@ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:51
#: src/screens/Settings/components/ChangePasswordDialog.tsx:81
-#: src/screens/Signup/state.ts:273
-#: src/screens/Signup/StepInfo/index.tsx:129
+#: src/screens/Signup/state.ts:277
+#: src/screens/Signup/StepInfo/index.tsx:131
msgid "Your email appears to be invalid."
msgstr ""
@@ -11674,11 +11777,11 @@ msgstr ""
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
-#: src/state/shell/progress-guide.tsx:215
+#: src/state/shell/progress-guide.tsx:216
msgid "Your first like!"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:490
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:493
msgid "Your followers"
msgstr ""
@@ -11690,7 +11793,7 @@ msgstr ""
msgid "Your full handle will be <0>@{0}0>"
msgstr ""
-#: src/Navigation.tsx:526
+#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
#: src/screens/Settings/ContentAndMediaSettings.tsx:93
#: src/screens/Settings/ContentAndMediaSettings.tsx:96
@@ -11715,7 +11818,7 @@ msgstr ""
msgid "Your location data is not tracked and does not leave your device."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:367
+#: src/screens/Signup/StepInfo/index.tsx:365
msgid "Your location has been updated."
msgstr ""
@@ -11727,15 +11830,15 @@ msgstr ""
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:158
+#: src/screens/Signup/StepInfo/index.tsx:160
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:574
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,15 +11855,15 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr ""
-#: src/view/com/composer/Composer.tsx:576
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:511
+#: src/components/moderation/ReportDialog/index.tsx:505
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -11768,7 +11871,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:65
+#: src/components/verification/VerificationsDialog.tsx:66
msgid "Your verifications"
msgstr ""
diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po
index 6427c47953..ca0b659576 100644
--- a/src/locale/locales/ca/messages.po
+++ b/src/locale/locales/ca/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ca\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Catalan\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# republicació} other {# republicacions}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# segon} other {# segons}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# element sense llegir} other {# elements sense llegir}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# element sense llegir} other {# elements sense llegir}
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# mes} other {# mesos}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, one {# publicació més} other {# publicacions més}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {seguidor} other {seguidors}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {seguint} other {seguint}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {m'agrada} other {m'agrades}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {m'agrada} other {m'agrades}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {publicació} other {publicacions}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citació} other {citacions}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {republicació} other {republicacions}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {desada} other {desades}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (Compte)"
@@ -189,11 +193,11 @@ msgstr "{0} ha reaccionat amb {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} ha reaccionat amb {1} a {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, un canal de {1}, li ha agradat a {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, una llista de {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, one {}other {# usuaris s'han}} unit!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# minut} other {# minuts}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# element sense llegir} other {# elements sense llegir}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>i {2, plural, one {# altre} other {# altres}} estan inclosos al teu starter pack"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {seguidor} other {seguidors}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {seguint} other {seguint}}"
@@ -580,6 +584,11 @@ msgstr "Captura de pantalla d’una publicació amb un nou botó al costat del b
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Una captura de pantalla d'una pàgina de perfil amb una icona de campana al costat del botó de seguir, que indica la funció de notificacions de nova activitat."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Afegeix-ne {0} més per a continuar"
msgid "Add {displayName} to starter pack"
msgstr "Afegeix {displayName} al teu starter pack"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Afegeix una advertència de contingut"
@@ -754,11 +763,11 @@ msgstr "Afegeix text alternatiu (opcional)"
msgid "Add another account"
msgstr "Afegeix un altre compte"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Afegeix una altra publicació"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Afegeix una altra publicació al fil"
@@ -776,12 +785,12 @@ msgstr "Afegeix una contrasenya d'aplicació"
msgid "Add emoji reaction"
msgstr "Afegeix una reacció d'emoji"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Afegeix imatge"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Afegeix imatges a la publicació"
@@ -871,7 +880,7 @@ msgstr "Detalls addicionals (límit de 1000 caràcters)"
msgid "Additional details (limit 300 characters)"
msgstr "Detalls addicionals (límit de 300 caràcters)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Adults"
@@ -879,10 +888,10 @@ msgstr "Adults"
msgid "Adult content"
msgstr "Contingut per a adults"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Contingut per a adults"
@@ -894,8 +903,8 @@ msgstr "El contingut per a adults només es pot activar a través del web a <0>b
msgid "Adult content is disabled."
msgstr "El contingut per a adults està deshabilitat."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Etiquetes de contingut per a adults"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "josepmaria@exemple.cat"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Totes"
@@ -1017,7 +1026,7 @@ msgstr "Ja tens un compte?"
msgid "Already signed in as @{0}"
msgstr "Ja estàs registrat com a @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Text alternatiu"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Text alternatiu"
@@ -1059,7 +1068,7 @@ msgstr "S'ha enviat un correu a {0}. Inclou un codi de confirmació que has d'en
msgid "An error has occurred"
msgstr "Hi ha hagut un error"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Hi ha hagut un error"
@@ -1067,7 +1076,7 @@ msgstr "Hi ha hagut un error"
msgid "An error occurred while compressing the video."
msgstr "Hi ha hagut un error mentre es comprimia el vídeo."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "S'ha produït un error en obtenir els comptes suggerits."
@@ -1076,7 +1085,7 @@ msgstr "S'ha produït un error en obtenir els comptes suggerits."
msgid "An error occurred while fetching the feed."
msgstr "S'ha produït un error en anar a buscar el canal."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "S'ha produït un error en generar el teu starter pack. Vols tornar-ho a provar?"
@@ -1088,7 +1097,7 @@ msgstr "S'ha produït un error en ocultar el suggeriment. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "Hi ha hagut un error mentre es carregava el vídeo. Prova-ho més tard."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Hi ha hagut un error mentre es carregava el vídeo. Prova-ho més tard."
@@ -1181,7 +1190,7 @@ msgstr "Benestar animal"
msgid "Animals"
msgstr "Animals"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF animat"
@@ -1306,12 +1315,12 @@ msgstr "Aplica els canals recomanats per defecte"
msgid "Apply Pull Request"
msgstr "Aplica la petició d'integració Pull Request"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Arxivat del dia {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Publicació arxivada"
@@ -1332,11 +1341,11 @@ msgstr "Estàs segur que vols eliminar aquest starter pack?"
msgid "Are you sure you want to discard your changes?"
msgstr "Estàs segur que vols descartar els canvis?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Segur que vols abandonar la conversa?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Estàs segur que vols abandonar aquesta conversa? Els missatges s'esborraran per a tu, però no per a l'altre participant."
@@ -1344,11 +1353,7 @@ msgstr "Estàs segur que vols abandonar aquesta conversa? Els missatges s'esborr
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Segur que vols eliminar-ho dels teus canals?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Confirmes que vols descartar aquest esborrany?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Estàs segur que vols descartar aquesta publicació?"
@@ -1364,7 +1369,7 @@ msgstr "Estàs escrivint en <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Art"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Nuesa artística o no eròtica."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Reprodueix automàticament vídeos i GIFs"
@@ -1404,11 +1409,13 @@ msgstr "Disponible"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Endarrere"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky no pot confirmar l'autenticitat de la data declarada."
@@ -1623,7 +1630,7 @@ msgstr "Condicions del servei de Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Bluesky emmagatzema els contactes com a dades codificades. Si els elimines, aquestes dades s'eliminaran immediatament."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky triarà un conjunt de comptes recomanats de les persones de la teva xarxa."
@@ -1664,20 +1671,20 @@ msgstr "Incompliment de les normes del lloc"
msgid "Browse custom feeds"
msgstr "Navega pels canals personalitzats"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "Navega per més comptes"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Explora més canals a la pàgina Explora"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Explora més recomanacions"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Explora més recomanacions a la pàgina Explora"
@@ -1770,8 +1777,8 @@ msgstr "Càmera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Càmera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Cancel·la la cerca"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "No pots interactuar amb un usuari bloquejat"
@@ -1901,9 +1908,9 @@ msgstr "Canvis desats"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Xat"
@@ -1989,7 +1996,7 @@ msgstr "Tria el mètode de verificació del domini"
msgid "Choose Feeds"
msgstr "Tria els canals"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Tria per mi"
@@ -2096,6 +2103,7 @@ msgstr "Clop 🐴 clop 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Clop 🐴 clop 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,7 +2176,8 @@ msgstr "Tanca el diàleg de GIF"
msgid "Close image"
msgstr "Tanca la imatge"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr "Tanca el visor d'imatges"
@@ -2190,7 +2199,7 @@ msgstr "Tanca la finestra emergent de benvinguda"
msgid "Closes password update alert"
msgstr "Tanca l'alerta d'actualització de contrasenya"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Tanca l'editor de la publicació i descarta l'esborrany"
@@ -2242,12 +2251,12 @@ msgstr "Finalitza el registre i comença a utilitzar el teu compte"
msgid "Complete the challenge"
msgstr "Completa la prova"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Crea una nova publicació"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Crear publicacions de fins a {0, plural, one {}other {# caràcters}} de longitud"
@@ -2255,7 +2264,11 @@ msgstr "Crear publicacions de fins a {0, plural, one {}other {# caràcters}} de
msgid "Compose reply"
msgstr "Redacta una resposta"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Comprimint el vídeo..."
@@ -2263,7 +2276,6 @@ msgstr "Comprimint el vídeo..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Configura els filtres de continguts per la categoria: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "Configura el bàner d'esdeveniment en directe"
@@ -2272,8 +2284,8 @@ msgstr "Configura el bàner d'esdeveniment en directe"
msgid "Configured in <0>moderation settings0>."
msgstr "Configurat a <0>configuració de moderació0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "Contactes importats"
msgid "Contacts removed"
msgstr "Contactes eliminats"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Contingut i multimèdia"
@@ -2389,7 +2401,7 @@ msgstr "Contingut que promou o representa l'autolesió"
msgid "Content Warning"
msgstr "Advertència del contingut"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Advertències del contingut"
@@ -2401,7 +2413,7 @@ msgstr "Teló de fons del menú contextual, fes clic per a tancar-lo."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Continua"
@@ -2420,7 +2432,7 @@ msgstr "Continua el fil..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "No s'han pogut seguir totes les coincidències. {0}"
msgid "Could not leave chat"
msgstr "No s'ha pogut abandonar el xat"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "No s'ha pogut carregar el canal"
@@ -2643,8 +2655,8 @@ msgstr "Crea un codi QR per a un starter pack"
msgid "Create a starter pack"
msgstr "Crea un starter pack"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Crea un Starter Pack"
@@ -2654,12 +2666,12 @@ msgstr "Crea un starter pack per a mi"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Crea'n un altre"
msgid "Create moderation list"
msgstr "Crea una llista de moderació"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Crea un nou compte"
@@ -2772,7 +2784,7 @@ msgstr "Data de naixement"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Desactiva el compte"
@@ -2871,7 +2883,7 @@ msgstr "Elimina el meu compte"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Elimina la publicació"
@@ -2981,7 +2993,7 @@ msgstr "Desactiva les publicacions que citen aquesta publicació"
msgid "Disable replies entirely"
msgstr "Desactiva del tot les respostes"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Deshabilita els subtítols"
@@ -2996,8 +3008,11 @@ msgstr "Desactivat"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Descarta"
@@ -3006,11 +3021,12 @@ msgstr "Descarta"
msgid "Discard changes?"
msgstr "Vols descartar els canvis?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Vols descartar l'esborrany?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Vols descartar la publicació?"
@@ -3037,7 +3053,7 @@ msgstr "Descarta"
msgid "Dismiss banner"
msgstr "Ignora el bàner"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Descarta l'error"
@@ -3049,11 +3065,16 @@ msgstr "Ignora la guia d'inici"
msgid "Dismiss interests"
msgstr "Descarta interessos"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "Ignora el bàner d'esdeveniment en directe"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Amaga aquesta secció"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Descarta aquest suggeriment"
@@ -3121,8 +3142,8 @@ msgstr "No pateixis! Tots els missatges i la configuració existents es desen i
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Fes un toc doble o premeu llargament el missatge per a afegir una reacci
msgid "Double tap to close the dialog"
msgstr "Fes doble toc per tancar el diàleg"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Fes dos tocs per a fer m'agrada"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Descarrega Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Descarrega el fitxer CAR"
msgid "Doxxing"
msgstr "Comportament depredador o de manipulació grooming"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "Esborrany"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Deixa anar a afegir imatges"
@@ -3285,13 +3313,13 @@ msgstr "Edita les preferències de les interaccions a la publicació"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Edita el perfil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Edita el perfil"
@@ -3413,7 +3441,7 @@ msgstr "Activa les notificacions push"
msgid "Enable quote posts of this post"
msgstr "Activa les publicacions que citen aquesta publicació"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Habilita els subtítols"
@@ -3421,13 +3449,13 @@ msgstr "Habilita els subtítols"
msgid "Enable this source only"
msgstr "Habilita només per aquesta font"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Activa els temes del moment "
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Activa els vídeos populars al canal Discover"
@@ -3464,7 +3492,7 @@ msgstr "Introdueix una lletra o etiqueta"
msgid "Enter code"
msgstr "Entra el codi"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Entra a pantalla completa"
@@ -3501,7 +3529,7 @@ msgstr "Introdueix la teva contrasenya"
msgid "Enter your username and password"
msgstr "Introdueix el teu usuari i contrasenya"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Canvia a pantalla completa"
@@ -3509,7 +3537,7 @@ msgstr "Canvia a pantalla completa"
msgid "Entertainment"
msgstr "Entreteniment"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Error"
@@ -3570,7 +3598,7 @@ msgstr "Exclou els usuaris que segueixes"
msgid "Excludes users you follow"
msgstr "Exclou els usuaris que segueixes"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Surt de la pantalla completa"
@@ -3578,11 +3606,7 @@ msgstr "Surt de la pantalla completa"
msgid "Exits account deletion process"
msgstr "Surt del procés d'eliminació del compte"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Surt de la visualització de la imatge"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Expandeix el text alternatiu"
@@ -3598,11 +3622,11 @@ msgstr "Expandeix o replega la publicació completa a la qual estàs responent"
msgid "Expand post text"
msgstr "Expandeix el text de la publicació"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Amplia o redueix el text de la publicació"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "S'esperava que l'uri es resolgués en un registre"
@@ -3639,7 +3663,7 @@ msgstr "Imatges sexuals explícites."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Explora"
@@ -3657,8 +3681,8 @@ msgstr "Exporta les meves dades"
msgid "Export My Data"
msgstr "Exporta les meves dades"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Contingut extern"
@@ -3730,7 +3754,7 @@ msgstr "No s'ha pogut esborrar la publicació, torna-ho a provar"
msgid "Failed to delete starter pack"
msgstr "No s'ha pogut eliminar l'starter pack"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "No s'han pogut seguir tots els comptes suggerits. Torna-ho a provar"
@@ -3829,6 +3853,10 @@ msgstr "No s'ha pogut eliminar la verificació"
msgid "Failed to resolve location. Please try again."
msgstr "La ubicació ha fallat. Torna-ho a provar."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "Error en desar l'esborrany"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Canal"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Canal per {0}"
@@ -3941,7 +3970,7 @@ msgstr "Canal no disponible"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Comentaris"
@@ -3958,7 +3987,7 @@ msgstr "Comentaris enviats a l'operador del canal"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Canals"
@@ -4008,6 +4037,10 @@ msgstr "Filtra de qui reps notificacions"
msgid "Finalizing"
msgstr "Finalitzant"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Per fi! Tingues a mà les publicacions que t'interessen. Desa-les per a tornar-les a consultar en qualsevol moment."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Troba els meus amics"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Troba gent per seguir"
@@ -4098,19 +4131,19 @@ msgstr "Entrada de codi"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Segueix"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Segueix {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Segueix {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Segueix el compte"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Segueix el compte"
msgid "Follow all"
msgstr "Segueix-los a tots"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Segueix tots els comptes"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Segueix"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Has seguit tots els comptes!"
@@ -4195,8 +4228,8 @@ msgstr "Seguidors que coneixes"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Seguint"
msgid "Following {0}"
msgstr "Seguint {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Seguint {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Preferències del canal Seguint"
@@ -4264,7 +4297,7 @@ msgstr "Per motius de seguretat, no podràs tornar a veure això. Si perds aques
msgid "For the best experience, we recommend using the theme font."
msgstr "Per obtenir la millor experiència, et recomanem utilitzar el tipus de lletra del tema."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Per a tu"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "De <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Genera un starter pack"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Aconsegueix ajuda"
@@ -4376,10 +4409,15 @@ msgstr "Rep notificacions quan algú publiqui"
msgid "Get started"
msgstr "Comença"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Posa una cara al teu perfil"
@@ -4394,12 +4432,12 @@ msgstr "Glorificació de la violència"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Ves enrere"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "L'emissió en directe està deshabilitada pel teu compte"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Mitjans gràfics"
@@ -4592,7 +4630,7 @@ msgstr "Retingut per Bluesky durant 7 dies per evitar abusos, i després elimina
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Ajuda"
@@ -4632,9 +4670,9 @@ msgstr "Llista amagada"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Amaga la llista d'usuaris"
msgid "Hide verification badges"
msgstr "Amaga les insígnies de verificació"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Amaga el contingut"
@@ -4760,9 +4798,9 @@ msgstr "Espera! A poc a poc estem donant accés al vídeo i encara estàs a la c
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Inici"
@@ -4819,7 +4857,7 @@ msgstr "Ho entenc"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "Estic a Bluesky com a {0}. Vine a trobar-me! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Si el text alternatiu és llarg, canvia l'estat expandit del text alternatiu"
@@ -4872,7 +4910,7 @@ msgstr "Si vols restringir qui pot rebre notificacions de l'activitat del teu co
msgid "If you're a developer, you can host your own server."
msgstr "Si ets desenvolupador, pots allotjar el teu propi servidor."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Si vols canviar el teu identificador o el correu fes-ho abans de desactivar el compte."
@@ -4996,6 +5034,10 @@ msgstr "Configuració de les interaccions"
msgid "Introducing activity notifications"
msgstr "Introducció a les notificacions d'activitat"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "Com pots trobar amics a través dels contactes"
@@ -5089,7 +5131,7 @@ msgstr "Només hi ha <0>{0} 0> ara mateix! Afegeix més persones al teu starte
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Ara només ets tu! Afegeix més persones al teu starter pack cercant a dalt."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "Identificador de la tasca: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Mantingueu-me informat/da"
msgid "KWS website"
msgstr "Lloc web de KWS"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Etiquetat per {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Etiquetat per l'autor."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Etiquetes"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Etiquetes afegides"
@@ -5218,8 +5260,8 @@ msgstr "Més informació sobre la importació de contactes"
msgid "Learn more about self hosting your PDS."
msgstr "Més informació sobre com allotjament el teu PDS."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Més informació sobre la moderació que s'ha aplicat a aquesta publicació"
@@ -5231,7 +5273,7 @@ msgstr "Aprèn més sobre aquests canvis i com compartir les teves opinions amb
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Aprèn més sobre aquests canvis i com compartir les teves opinions amb nosaltres llegint la nostra entrada de blog."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Més informació d'aquesta advertència"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "Més informació a la <0>configuració del compte.0>"
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Més informació."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Surt"
@@ -5286,7 +5328,7 @@ msgstr "Sortint de Bluesky"
msgid "left to go."
msgstr "queda."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Deixa'm triar"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "M'agrada"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "M'agrada ({0, plural, one {# m'agrada} other {# m'agrades}})"
@@ -5380,7 +5422,7 @@ msgstr "M'agrades de les teves republicacions"
msgid "Likes of your reposts notifications"
msgstr "Notificacions de m'agrades de les teves republicacions"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "M'agrades a aquesta publicació"
@@ -5474,7 +5516,7 @@ msgstr "Llista no silenciada"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Llistes"
@@ -5496,10 +5538,20 @@ msgstr "EN DIRECTE"
msgid "Live event happening now: {0}"
msgstr "Esdeveniment en directe que té lloc ara: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "Esdeveniment en directe amagat"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "Opcions d'esdeveniment en directe"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "Esdeveniment en directe mostrat"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "Els esdeveniments en directe apareixen ocasionalment quan passa alguna cosa interessant. Si voleu, podeu amagar aquest esdeveniment en particular o tots els esdeveniments d'aquesta ubicació a la interfície de l'aplicació."
@@ -5524,11 +5576,11 @@ msgstr "Carrega'n més"
msgid "Load more suggested feeds"
msgstr "Carrega més canals suggerits"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Carrega noves notificacions"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo per @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo per <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Fes-ne un per mi"
msgid "Make sure this is where you intend to go!"
msgstr "Assegura't que és aquí on vols anar!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Gestiona els canals desats"
@@ -5638,7 +5690,16 @@ msgstr "Potser més tard"
msgid "Media"
msgstr "Imatges"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "Imatge desada a {0}"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "Imatge desada en un altre dispositiu"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Continguts que poden ser inquietants o inadequats per a alguns públics."
@@ -5653,7 +5714,7 @@ msgstr "usuaris mencionats"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Mencions"
@@ -5716,6 +5777,10 @@ msgstr "Notificacions diverses"
msgid "Misleading"
msgstr "Enganyós"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "No es troba la imatge"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "Més idiomes..."
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Pel·lícules"
msgid "Music"
msgstr "Música"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Ves a l'starter pack"
msgid "Navigates to the next screen"
msgstr "Navega a la pantalla següent"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Navega al teu perfil"
@@ -5983,6 +6049,7 @@ msgstr "Adreça de correu nova"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Funció nova"
@@ -6018,12 +6085,12 @@ msgstr "Nous missatges"
msgid "New password"
msgstr "Nova contrasenya"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Nova publicació"
@@ -6085,7 +6152,7 @@ msgstr "Notícies"
msgid "Next"
msgstr "Següent"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Següent imatge"
@@ -6114,6 +6181,10 @@ msgstr "Encara no hi ha canals personalitzats"
msgid "No DNS Panel"
msgstr "No hi ha panell de DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "Encara no hi ha esborranys"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Sense caducitat definida"
@@ -6136,7 +6207,7 @@ msgstr "Sense imatge"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Encara no té cap m'agrada"
@@ -6150,7 +6221,7 @@ msgstr "No hi ha llistes"
msgid "No longer following {0}"
msgstr "Ja no segueixes a {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "Encara no hi ha imatges"
@@ -6195,7 +6266,7 @@ msgstr "Encara no hi ha publicacions"
msgid "No quotes yet"
msgstr "Encara no té cap citació"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "Encara no hi ha respostes"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Cap resultat"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Cap resultat"
@@ -6238,7 +6309,7 @@ msgstr "Cap resultat."
msgid "No search results found for \"{search}\"."
msgstr "No s'han trobat resultats de cerca per a \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "No hi ha Starter Packs encara"
@@ -6247,7 +6318,7 @@ msgstr "No hi ha Starter Packs encara"
msgid "No thanks"
msgstr "No, gràcies"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "Encara no hi ha publicacions de vídeo"
@@ -6298,6 +6369,10 @@ msgstr "No el segueix ningú a qui segueixes"
msgid "Not Found"
msgstr "No s'ha trobat"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Nota sobre compartir"
@@ -6321,7 +6396,7 @@ msgstr "Encara no hi ha res desat"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Configuració de les notificacions"
@@ -6349,10 +6424,10 @@ msgstr "Sons de les notificacions"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Notificacions"
@@ -6368,8 +6443,8 @@ msgstr "ara"
msgid "Now"
msgstr "Ara"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Nuesa"
@@ -6390,7 +6465,7 @@ msgstr "Ostres!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "D'acord"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "D'acord"
@@ -6417,23 +6492,23 @@ msgstr "en<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Restableix la incorporació"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Falta el text alternatiu a un o més GIFs."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Falta el text alternatiu a una o més imatges."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "Un o més dels fitxers seleccionats no són compatibles."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "Un o més dels fitxers seleccionats són massa grans. La mida màxima és de 100 MB."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Falta el text alternatiu a un o més videos."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ostres, alguna cosa ha anat malament!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ostres!"
msgid "Open avatar creator"
msgstr "Obre el creador d'avatars"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "Obre la càmera"
@@ -6485,12 +6560,16 @@ msgstr "Obre la càmera"
msgid "Open conversation options"
msgstr "Obre les opcions de les converses"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "Obre l'esborrany"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Obre el menú del calaix"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Obre el selector d'emojis"
@@ -6557,7 +6636,7 @@ msgstr "Obre el registre del sistema"
msgid "Opens {0} feed"
msgstr "Obre el canal {0}"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Obre un diàleg per afegir un avís de contingut a la teva publicació"
@@ -6589,25 +6668,25 @@ msgstr "Obre el diàleg de canvi d'identificador"
msgid "Opens composer"
msgstr "Obre el compositor"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "Obre la càmera del dispositiu"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "Obre la galeria del dispositiu per seleccionar fins a {MAX_IMAGES, plural, other{# imatges}} o un sol vídeo o GIF."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Obre el selector d'emojis"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Obre el procés per a crear un nou compte de Bluesky"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Obre el procés per a iniciar sessió a un compte existent de Bluesky"
@@ -6620,7 +6699,7 @@ msgstr "Obre el diàleg per a triar GIF"
msgid "Opens helpdesk in browser"
msgstr "Obre el centre d'ajuda al navegador"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "Obre el selector d'imatges"
@@ -6640,10 +6719,14 @@ msgstr "Obre el formulari de restabliment de la contrasenya"
msgid "Opens post language settings"
msgstr "Obre la configuració d'idioma de la publicació"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "Obre el compositor de publicacions"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "Obre aquest esborrany a l'editor"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "Estat de l'OTA: Cap disponible"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Un altre"
@@ -6763,13 +6846,13 @@ msgstr "Contrasenya actualitzada"
msgid "Password updated!"
msgstr "Contrasenya actualitzada!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Posa en pausa"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Posa en pausa el vídeo"
@@ -6829,7 +6912,7 @@ msgstr "Número de telèfon verificat"
msgid "Photography"
msgstr "Fotografia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Imatges destinades a adults."
@@ -6874,9 +6957,9 @@ msgstr "Canals de notícies fixats"
msgid "Pinned to your feeds"
msgstr "Fixat als teus canals"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Reprodueix"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Reprodueix {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Reprodueix el vídeo"
@@ -6893,11 +6976,11 @@ msgstr "Reprodueix el vídeo"
msgid "Play Video"
msgstr "Reprodueix el vídeo"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Reprodueix o posa en pausa el GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Reprodueix o posa en pausa el GIF"
@@ -6909,7 +6992,7 @@ msgstr "Reprodueix el GIF"
msgid "Plays the video"
msgstr "Reprodueix el vídeo"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Afegeix les etiquetes d'advertència de contingut aplicables als continguts multimèdia que publiques."
@@ -7066,31 +7149,31 @@ msgstr "Escriu el teu missatge a continuació:"
msgid "Politics"
msgstr "Política"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornografia"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Publica"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Publica"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Publica una foto"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Publica un vídeo"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Publica-ho tot"
@@ -7217,7 +7300,7 @@ msgstr "Prem per veure els seguidors d'aquest compte que també segueixes"
msgid "Preview"
msgstr "Previsualitza"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Imatge anterior"
@@ -7257,8 +7340,8 @@ msgstr "Configuració de privadesa i seguretat"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Política de privacitat"
@@ -7266,7 +7349,11 @@ msgstr "Política de privacitat"
msgid "Privacy violation of a minor"
msgstr "Violació de la privadesa d'un menor"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Processant el vídeo..."
@@ -7280,10 +7367,10 @@ msgstr "Processant…"
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Perfil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Llistes públiques i compartibles d'usuaris per silenciar o bloquejar de manera massiva."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Publica la publicació"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Publica les publicacions"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Publica les respostes"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Publica la resposta"
@@ -7360,6 +7447,7 @@ msgstr "Notificacions de citacions"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Cita la publicació"
@@ -7385,7 +7473,7 @@ msgstr "S'han deshabilitat les citacions"
msgid "Quotes"
msgstr "Citacions"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Citacions d'aquesta publicació"
@@ -7424,11 +7512,11 @@ msgstr "consulta com utilitzar els filtres de cerca"
msgid "Read blog post"
msgstr "Llegeix la publicació del blog"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Mostra'n menys"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Mostra'n més"
@@ -7720,13 +7808,13 @@ msgstr "Respostes deshabilitades"
msgid "Replies to this post are disabled."
msgstr "Les respostes a aquesta publicació estan deshabilitades."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Respon"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Respostes ({0, plural, one {# resposta} other {# respostes}})"
@@ -7892,7 +7980,7 @@ msgstr "Republicat per tu"
msgid "Reposts"
msgstr "Republicacions"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Republicacions d'aquesta publicació"
@@ -7996,14 +8084,14 @@ msgstr "Torna a intentar l'última acció, que ha donat error"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Torna a la pàgina anterior"
msgid "Returns to home page"
msgstr "Torna a la pàgina d'inici"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Torna a la pàgina anterior"
@@ -8063,7 +8151,7 @@ msgstr "Ves al pas anterior"
msgid "Save"
msgstr "Desa"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Desa"
@@ -8076,9 +8164,26 @@ msgstr "Desa la data de naixement"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Desa els canvis"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "Vols desar els canvis?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "Desa l'esborrany"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "Vols desar l'esborrany?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Desa-ho als meus canals"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Desats"
@@ -8155,7 +8260,7 @@ msgstr "Desplaça't cap a dalt"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Cerca"
@@ -8164,7 +8269,7 @@ msgstr "Cerca"
msgid "Search @{0}'s posts"
msgstr "Cerca a les publicacions de @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Cerca per nom o interès"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Cerca canals"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "Cerca per \"{interestsDisplayName}\""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "Cerca per \"{interestsDisplayName}\"(activa)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Cerca publicacions"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Cerca perfils"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Cerca..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Cerca perfils"
@@ -8283,12 +8388,12 @@ msgstr "Mostra les publicacions amb #{tag} de l'usuari"
msgid "See jobs at Bluesky"
msgstr "Veure les feines a Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Veure més"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "Veure més perfils suggerits"
@@ -8456,7 +8561,7 @@ msgstr "Selecciona el teu idioma preferit per a les traduccions al teu canal."
msgid "Select your preferred notification channels"
msgstr "Selecciona els teus canals de notificació preferits"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "No es permet seleccionar diversos tipus de suports."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Envia correu"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Envia comentari"
@@ -8566,7 +8671,7 @@ msgstr "Estableix un correu per a restablir la contrasenya"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Configuració"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Configuració desada"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Activitat sexual o nu eròtic."
@@ -8634,7 +8739,7 @@ msgstr "Suggerent sexualment"
msgid "Share"
msgstr "Comparteix"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Comparteix"
@@ -8712,13 +8817,13 @@ msgstr "Comparteix el teu canal preferit!"
msgid "Shared Preferences Tester"
msgstr "Comprovador de preferències compartides"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Mostra"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Mostra el text alternatiu"
@@ -8820,7 +8925,7 @@ msgstr "Mostra l'advertiment i filtra-ho dels canals"
msgid "Show when you’re live"
msgstr "Mostra quan estàs en directe"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Mostra informació sobre quan es va crear aquesta publicació"
@@ -8828,8 +8933,8 @@ msgstr "Mostra informació sobre quan es va crear aquesta publicació"
msgid "Shows other accounts you can switch to"
msgstr "Mostra altres comptes als quals pots canviar"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Mostra el contingut"
@@ -8842,14 +8947,14 @@ msgstr "Mostra el contingut"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Es requereix iniciar sessió"
msgid "Signed in as @{0}"
msgstr "S'ha iniciat sessió com a @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Comptes semblants"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "Omet la compartició de contactes i continua a l'aplicació"
msgid "Skip introduction and start using your account"
msgstr "Omet la introducció i comença a utilitzar el teu compte"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Salta al pas següent"
@@ -8967,7 +9068,7 @@ msgstr "Desenvolupament de programari"
msgid "Some of your verifications are invalid."
msgstr "Algunes de les teves verificacions no són vàlides."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Alguns altres canals que potser t'agradaran"
@@ -8994,7 +9095,7 @@ msgstr "Alguna cosa ha fallat"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Alguna cosa ha fallat, torna-ho a provar"
@@ -9020,7 +9121,7 @@ msgstr "Alguna cosa ha fallat, torna-ho a provar."
msgid "Something wrong? Let us know."
msgstr "Alguna cosa no va a l'hora? Fes-nos-ho saber."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Ho sentim, ara mateix no podem carregar els suggeriments de comptes."
@@ -9113,7 +9214,11 @@ msgstr "Starter packs"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Els starter packs et permeten compartir els teus canals i persones preferides amb els teus amics."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "Els starter packs et permeten compartir els teus canals i persones preferides amb els teus amics."
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "Els Starter Packs et permeten compartir els teus canals i persones preferides amb els teus amics."
@@ -9181,11 +9286,11 @@ msgstr "Subscriu-te a @{0} per a utilitzar aquestes etiquetes:"
msgid "Subscribe to account activity"
msgstr "Subscriu-te a l'activitat del compte"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Subscriu-te a l'etiquetador"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Subscriu-te a aquest etiquetador"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Comptes suggerits"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Suggeriments per tu"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Suggerent"
@@ -9354,8 +9459,8 @@ msgstr "Condicions"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Condicions del servei"
@@ -9403,12 +9508,12 @@ msgstr "Aquest nom d'usuari ja està agafat"
msgid "That's all, folks!"
msgstr "Això és tot, amics!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Això és tot!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "El compte podrà interactuar amb tu després del desbloqueig."
@@ -9447,7 +9552,7 @@ msgstr "El canal Discover"
msgid "The Discover feed now knows what you like"
msgstr "El canal Discover ara sap el que t'agrada"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "L'experiència és millor a l'aplicació. Baixa Bluesky ara i tornarem a començar on ho vas deixar."
@@ -9527,7 +9632,7 @@ msgstr "Tema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "Hi ha un límit de freqüència amb què pots canviar la teva data de naixement. Potser hauràs d'esperar un dia o dos abans d'actualitzar-la de nou."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "No hi ha límit de temps per a la desactivació del compte, torna quan vulguis."
@@ -9711,6 +9816,10 @@ msgstr "Aquest contingut no es pot veure sense un compte de Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Aquesta conversa és amb un compte suprimit o desactivat. Prem per obtenir opcions"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "Aquest esborrany s'eliminarà permanentment."
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Aquest correu ja està associat amb el teu compte."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Aquest canal està buit! Necessites seguir més usuaris o modificar la teva configuració d'idiomes."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Aquest canal és buit."
@@ -9798,7 +9907,7 @@ msgstr "Aquesta llista està buida."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Aquest servei de moderació no està disponible. Mira a continuació per a obtenir més detalls. Si aquest problema persisteix, posa't en contacte amb nosaltres."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Aquesta publicació afirma haver estat creada el <0>{0}0>, però va ser vista per primera vegada per Bluesky el <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr "L'autor ha eliminat la publicació"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Aquesta publicació s'amagarà dels canals i fils. Això no es pot desfer."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "L'autor d'aquesta publicació ha deshabilitat les citacions."
@@ -9834,7 +9943,7 @@ msgstr "Aquesta resposta s'ordenarà en una secció oculta a la part inferior de
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Aquest servei no ha proporcionat termes de servei ni una política de privadesa."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "Aquest servei no és compatible mentre la funció Live està en versió beta. Serveis permesos: {formatted}."
@@ -9900,8 +10009,8 @@ msgstr "Això eliminarà la teva publicació d'aquesta citació per a tots els u
msgid "Thread options"
msgstr "Opcions dels fils de debat"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Preferències dels fils de debat"
@@ -9951,7 +10060,7 @@ msgstr "Avui"
msgid "Toggle to enable or disable adult content"
msgstr "Commuta per a habilitar o deshabilitar el contingut per a adults"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Commuta el so"
@@ -9988,8 +10097,8 @@ msgstr "Tema"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Tradueix"
@@ -10091,15 +10200,15 @@ msgstr "Informació del canal no disponible"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Desbloqueja"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Desbloqueja"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Desbloqueja el compte"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Vols desbloquejar el compte?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Desfés"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Desfés"
@@ -10142,7 +10255,7 @@ msgstr "Desfés la republicació"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Desfés republicacions ({0, plural, one {# republicació} other {# republicacions}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Deixa de seguir a {0}"
@@ -10151,7 +10264,7 @@ msgstr "Deixa de seguir a {0}"
msgid "Unfollow account"
msgstr "Deixa de seguir el compte"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Deixa de seguir l'usuari"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Desfés el m'agrada"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Desfés els m'agrades ({0, plural, one {# m'agrada} other {# m'agrades}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Deixa de silenciar la llista"
msgid "Unmute thread"
msgstr "Deixa de silenciar el fil de debat"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Deixa de silenciar el vídeo"
@@ -10276,7 +10389,7 @@ msgstr "Llista no fixada"
msgid "Unsnooze email reminder"
msgstr "Deixa de posposar el recordatori de correu"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Dona't de baixa"
@@ -10285,7 +10398,7 @@ msgstr "Dona't de baixa"
msgid "Unsubscribe from list"
msgstr "Dona't de baixa d'aquesta llista"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Dona't de baixa d'aquest etiquetador"
@@ -10293,7 +10406,7 @@ msgstr "Dona't de baixa d'aquest etiquetador"
msgid "Unsubscribed from list"
msgstr "T'has dona't de baixa de la llista"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Tipus de vídeo no compatible: {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "Puja dels Fitxers"
msgid "Upload from Library"
msgstr "Puja de la biblioteca"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "S'estan penjant imatges..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "S'està penjant la miniatura de l'enllaç..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "S'està penjant el vídeo..."
@@ -10389,8 +10506,8 @@ msgstr "Utilitza el proveïdor predeterminat"
msgid "Use in-app browser"
msgstr "Utilitza el navegador de l'aplicació"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Utilitza el navegador de l'aplicació per obrir enllaços"
@@ -10445,6 +10562,10 @@ msgstr "L'usuari t'ha bloquejat"
msgid "User list by {0}"
msgstr "Llista d'usuaris per {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr "Llista d'usuaris per {0}"
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Llista d'usuaris feta per tu"
@@ -10597,8 +10718,8 @@ msgstr "Verificant..."
msgid "Version {0}"
msgstr "Versió {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Vídeo"
@@ -10614,20 +10735,24 @@ msgstr "Canal de vídeos"
msgid "Video from {0}: {text}"
msgstr "Vídeo de: {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "Vídeo de {0}. Toca per reproduir o pausar el vídeo"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Videojocs"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Vídeo en pausa"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Vídeo en reproducció"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "No s'ha trobat el vídeo."
@@ -10635,11 +10760,11 @@ msgstr "No s'ha trobat el vídeo."
msgid "Video settings"
msgstr "Configuració de vídeo"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Vídeo penjat"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Vídeo: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Vídeo: {0}"
msgid "Videos"
msgstr "Vídeos"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "Els vídeos han de tenir una durada inferior a 3 minuts."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Veure"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Veure l'avatar de {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Veure el perfil de {0}"
@@ -10708,7 +10833,7 @@ msgstr "Mostra'n més"
msgid "View more trending videos"
msgstr "Veure més vídeos del moment"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "Veure la publicació"
@@ -10788,7 +10913,7 @@ msgstr "Contingut violent o amenaçador"
msgid "Visit site"
msgstr "Visita el lloc"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Ves a la configuració de les notificacions"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Estem tenint problemes per inicialitzar el procés de garantia d'edat per al vostre compte. <0>Contacta amb l'assistència0> per obtenir ajuda."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Tenim problemes de xarxa, torna-ho a provar"
@@ -10968,7 +11093,7 @@ msgstr "Ho sentim, però no hem pogut carregar les teves paraules silenciades en
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Ens sap greu, però la teva cerca no s'ha pogut fer. Prova-ho d'aquí una estona."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Ho sentim! La publicació a la qual estàs responent s'ha suprimit."
@@ -10977,7 +11102,7 @@ msgstr "Ho sentim! La publicació a la qual estàs responent s'ha suprimit."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Ens sap greu! No podem trobar la pàgina que estàs cercant."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Ho sentim! Només pots subscriure't a vint etiquetadors i has arribat al teu límit de vint."
@@ -11018,10 +11143,9 @@ msgstr "Quins són els teus interessos?"
msgid "What do you want to call your starter pack?"
msgstr "Com vols anomenar al teu starter pack?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Què hi ha de nou"
@@ -11097,6 +11221,14 @@ msgstr "Per què s'hauria de revisar aquest usuari?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Vols bloquejar aquest usuari i/o eliminar aquesta conversa?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "Vols desar-ho com a esborrany abans de veure els teus esborranys?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "Vols desar-ho com a esborrany per editar-ho més tard?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Escriu un missatge"
msgid "Write a post"
msgstr "Escriu una publicació"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Escriu una publicació"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Escriu la teva resposta"
@@ -11133,8 +11265,8 @@ msgstr "www.mylivestream.tv"
msgid "Yes"
msgstr "Sí"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Sí, desactiva'l"
@@ -11188,7 +11320,7 @@ msgstr "Estàs a la cua."
msgid "You are Live"
msgstr "Estàs emetent en directe"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Ja no estàs emetent en directe"
@@ -11200,7 +11332,7 @@ msgstr "No t'és permès pujar vídeos."
msgid "You are not following anyone yet"
msgstr "Encara no segueixes a ningú"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Estàs emetent en directe!"
@@ -11255,11 +11387,11 @@ msgstr "Ara pots triar rebre notificacions quan publiquin persones específiques
msgid "You can now sign in with your new password."
msgstr "Ara pots iniciar sessió amb la nova contrasenya."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "Només pots seleccionar un GIF alhora."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "Només pots seleccionar un vídeo alhora."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Pots reactivar el teu compte per continuar iniciant la sessió. El teu perfil i les publicacions seran visibles per a altres usuaris."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "Pots seleccionar fins a {MAX_IMAGES, plural, other {# imatges}} en total."
@@ -11317,7 +11449,7 @@ msgstr "Has bloquejat aquest usuari"
msgid "You have blocked this user. You cannot view their content."
msgstr "Has bloquejat aquest usuari. No pots veure el seu contingut."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Has desactivat completament les notificacions de resposta, cita i menció, de manera que aquesta pestanya ja no s'actualitzarà. Per ajustar-ho, visita la <0>configuració de notificacions0>."
@@ -11376,6 +11508,14 @@ msgstr "Has verificat correctament el teu correu. Pots tancar aquest diàleg."
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Has arribat temporalment al límit de pujades de vídeos. Torna-ho a provar més tard."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "Tens canvis sense desar en aquest esborrany. Vols desar-los?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "Tens canvis sense desar. Vols desar-los abans de veure els teus esborranys?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Encara no has creat cap starter pack!"
@@ -11437,7 +11577,7 @@ msgstr "Has de tenir {MIN_ACCESS_AGE} anys o més per a crear un compte."
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Has de tenir com a mínim 13 anys per utilitzar Bluesky. Llegeix les nostres <0>Condicions del servei0> per obtenir més informació."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Has de seguir almenys set persones més per generar un starter pack."
@@ -11449,7 +11589,7 @@ msgstr "Has de completar la garantia d'edat per accedir a aquesta pantalla."
msgid "You must grant access to your photo library to save a QR code"
msgstr "Has de concedir accés a la teva galeria per desar un codi QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "Has de permetre l'accés a la teva biblioteca multimèdia."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Estàs a la cua"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Has iniciat sessió amb una contrasenya d'aplicació. Inicia sessió amb la teva contrasenya principal per continuar la desactivació del teu compte."
@@ -11589,7 +11729,7 @@ msgstr "Has assolit el teu límit diari de pujades de vídeos (massa bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Has assolit el teu límit diari de pujades de vídeos (massa vídeos)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "T'has acabat els vídeos. Potser és un bon moment per a fer un descans."
@@ -11625,7 +11765,7 @@ msgstr "S'ha enviat l'apel·lació. Si s'accepta l'apel·lació, rebràs un corr
msgid "Your birth date"
msgstr "La teva data de naixement"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "El teu navegador no admet el format de vídeo. Prova amb un altre navegador."
@@ -11692,8 +11832,8 @@ msgstr "El teu identificador complet serà <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Els teus interessos"
@@ -11731,11 +11871,11 @@ msgstr "La teva contrasenya s'ha canviat correctament! Fes servir la nova contra
msgid "Your password must be at least 8 characters long."
msgstr "La contrasenya ha de tenir almenys 8 caràcters."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "La teva publicació s'ha enviat"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "Les teves publicacions s'han enviat"
@@ -11752,11 +11892,11 @@ msgstr "La teva foto de perfil"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "La teva foto de perfil envoltada de cercles concèntrics de les fotos de perfil d'altres usuaris"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "El teu perfil, publicacions, canals i llistes ja no seran visibles per a altres usuaris de Bluesky. Pots reactivar el teu compte en qualsevol moment iniciant sessió."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "La teva resposta s'ha enviat"
diff --git a/src/locale/locales/cy/messages.po b/src/locale/locales/cy/messages.po
index cf8a4d2648..ef259fa3cd 100644
--- a/src/locale/locales/cy/messages.po
+++ b/src/locale/locales/cy/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: cy\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Welsh\n"
"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))));\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# ailbostiad} other {# ailbostiad}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# eiliad} other {# eiliad}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# eitem heb ei ddarllen} other {# eitem heb ei ddarllen}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# eitem heb ei ddarllen} other {# eitem heb ei ddarllen
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {#mis} other {#mis}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, zero {}one {1 postiad ychwanegol} two {# bostiad ychwanegol} few {# postiad ychwanegol} many {# postiad ychwanegol} other {# postiad ychwanegol}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {dilynwr} other {dilynwr}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {yn dilyn} other {yn dilyn}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {hoffi} other {hoffi}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {hoffi} other {hoffi}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {postiad} other {postiad}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {dyfyniad} other {dyfyniad}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {ail bostiad} other {ail bostiad}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, zero {}one {cadw} two {cadw} few {cadw} many {cadw} other {cadw}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (Cyfrif)"
@@ -166,7 +170,7 @@ msgstr "Mae {0} yn fyw"
#: src/screens/Signup/StepHandle/index.tsx:185
msgid "{0} is not available"
-msgstr "Nid yw {0} ar gael"
+msgstr "Dyw {0} ddim ar gael"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
msgid "{0} joined this week"
@@ -189,11 +193,11 @@ msgstr "Ymatebodd {0} i {1}"
msgid "{0} reacted {1} to {2}"
msgstr "Ymatebodd {0} {1} i {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, ffrwd gan {1}, hoffwyd gan {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, rhestr gan {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {Mae # eraill}} wedi ymuno!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, zero {}one {# munud} two {# funud} few {# munud} many {# munud} other {# munud}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# eitem heb ei darllen} other {# eitem heb eu darllen}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "Mae <0>{0}, 0><1>{1}, 1>a {2, plural, one {# arall} other {# arall}} wedi'u cynnwys yn eich pecyn cychwyn"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {dilynwr} other {dilynwyr}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {yn dilyn} other {yn dilyn}}Crybwyll"
@@ -580,6 +584,11 @@ msgstr "Llun sgrin o bostiad gyda botwm newydd nesaf at y botwm rhannu sy'n cani
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Llun sgrin o dudalen proffil gydag eicon cloch wrth ymyl y botwm dilyn, yn dangos y nodwedd hysbysiadau gweithgaredd newydd."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -637,7 +646,7 @@ msgstr "Cyfrif wedi'i rwystro"
#: src/view/com/profile/ProfileMenu.tsx:195
msgctxt "toast"
msgid "Account followed"
-msgstr "Cyfrif yn ei ddilyn"
+msgstr "Cyfrif yn cael ei ddilyn"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:446
#: src/view/com/profile/ProfileMenu.tsx:158
@@ -714,8 +723,8 @@ msgstr "Ychwanegu {0} arall i barhau"
msgid "Add {displayName} to starter pack"
msgstr "Ychwanegu {displayName} at y pecyn cychwyn"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Ychwanegu rhybudd cynnwys"
@@ -754,11 +763,11 @@ msgstr "Ychwanegu testun amgen (dewisol)"
msgid "Add another account"
msgstr "Ychwanegu cyfrif arall"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Ychwanegu postiad arall"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Ychwanegu postiad arall i edefyn"
@@ -776,12 +785,12 @@ msgstr "Ychwanegu Cyfrinair Apiau"
msgid "Add emoji reaction"
msgstr "Ychwanegu adwaith emoji"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Ychwanegwch lun"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Ychwanegu cyfrwng i bostiad"
@@ -871,7 +880,7 @@ msgstr "Manylion ychwanegol (terfyn o 1000 nod)"
msgid "Additional details (limit 300 characters)"
msgstr "Manylion ychwanegol (terfyn o 300 nod)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Oedolyn"
@@ -879,10 +888,10 @@ msgstr "Oedolyn"
msgid "Adult content"
msgstr "Cynnwys oedolion"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Cynnwys Oedolion"
@@ -894,8 +903,8 @@ msgstr "Dim ond trwy'r We yn <0>bsky.app0> y mae modd galluogi cynnwys oedolio
msgid "Adult content is disabled."
msgstr "Mae cynnwys oedolion wedi'i analluogi."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Labeli Cynnwys Oedolion"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Y Cyfan"
@@ -1017,7 +1026,7 @@ msgstr "Oes gennych chi gyfrif yn barod?"
msgid "Already signed in as @{0}"
msgstr "Eisoes wedi mewngofnodi fel @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "AMGEN"
msgid "Alt text"
msgstr "Testun amgen"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Testun Amgen"
@@ -1059,7 +1068,7 @@ msgstr "Mae e-bost wedi'i anfon at {0}. Mae'n cynnwys cod cadarnhau y gallwch ei
msgid "An error has occurred"
msgstr "Digwyddodd gwall"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Digwyddodd gwall"
@@ -1067,7 +1076,7 @@ msgstr "Digwyddodd gwall"
msgid "An error occurred while compressing the video."
msgstr "Digwyddodd gwall wrth gywasgu'r fideo."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "Digwyddodd gwall wrth estyn y cyfrifon hyn."
@@ -1076,7 +1085,7 @@ msgstr "Digwyddodd gwall wrth estyn y cyfrifon hyn."
msgid "An error occurred while fetching the feed."
msgstr "Digwyddodd gwall wrth nôl y ffrwd."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Digwyddodd gwall wrth gynhyrchu'ch pecyn cychwyn. Eisiau ceisio eto?"
@@ -1088,7 +1097,7 @@ msgstr "Digwyddodd gwall wrth guddio awgrym. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "Digwyddodd gwall wrth lwytho'r fideo. Ceisiwch eto yn nes ymlaen."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Digwyddodd gwall wrth lwytho'r fideo. Ceisiwch eto."
@@ -1181,7 +1190,7 @@ msgstr "Lles anifeiliaid"
msgid "Animals"
msgstr "Anifeiliaid"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF wedi'i hanimeiddio"
@@ -1306,12 +1315,12 @@ msgstr "Gosod y ffrydiau rhagosodedig sy'n cael eu hargymell"
msgid "Apply Pull Request"
msgstr "Gosod Cais Tynnu"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Wedi'i archifo o {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Post wedi'i archifo"
@@ -1332,11 +1341,11 @@ msgstr "Ydych chi'n siŵr eich bod am ddileu'r pecyn cychwyn hwn?"
msgid "Are you sure you want to discard your changes?"
msgstr "Ydych chi'n siŵr eich bod am ddileu eich newidiadau?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Ydych chi'n siŵr eich bod eisiau gadael y sgwrs hon?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Ydych chi'n siŵr eich bod am adael y sgwrs hon? Bydd eich negeseuon yn cael eu dileu i chi, ond nid ar gyfer y cyfranogwr arall."
@@ -1344,11 +1353,7 @@ msgstr "Ydych chi'n siŵr eich bod am adael y sgwrs hon? Bydd eich negeseuon yn
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Ydych chi'n siŵr eich bod am dynnu hwn o'ch ffrydiau?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "A ydych yn siŵr yr hoffech gael gwared ar y drafft hwn?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Ydych chi'n siŵr yr hoffech chi gael gwared ar y postiad hwn?"
@@ -1364,7 +1369,7 @@ msgstr "Ydych chi'n ysgrifennu yn <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Celf"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Noethni artistig neu anerotig."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Awtochwarae fideos a GIFs"
@@ -1404,11 +1409,13 @@ msgstr "Ar gael"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Nôl"
@@ -1559,7 +1566,7 @@ msgstr "Does dim modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau,
#: src/screens/Profile/Sections/Labels.tsx:202
msgid "Blocking does not prevent this labeler from placing labels on your account."
-msgstr "Nid yw rhwystro'n atal y labelwr hwn rhag gosod labeli ar eich cyfrif."
+msgstr "Dyw rhwystro ddim yn atal y labelwr hwn rhag gosod labeli ar eich cyfrif."
#: src/screens/ProfileList/components/SubscribeMenu.tsx:115
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Dyw Bluesky ddim yn gallu cadarnhau dilysrwydd y dyddiad honedig."
@@ -1623,13 +1630,13 @@ msgstr "Telerau Gwasanaeth Cymdeithasol Bluesky"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Mae Bluesky yn cadw'ch cysylltiadau fel data wedi'i amgodio. Bydd tynnu'ch cysylltiadau yn dileu'r data hwn yn syth."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bydd Bluesky yn dewis set o gyfrifon wedi'u hargymhell gan bobl yn eich rhwydwaith."
#: src/screens/Settings/components/PwiOptOut.tsx:99
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
-msgstr "Ni fydd Bluesky yn dangos eich proffil na'ch postiadau i ddefnyddwyr sydd wedi allgofnodi. Mae'n bosibl na fydd apiau eraill yn parchu'r gofyniad hwn. Nid yw hyn yn gwneud eich cyfrif yn breifat."
+msgstr "Fydd Bluesky ddim yn dangos eich proffil na'ch postiadau i ddefnyddwyr sydd wedi allgofnodi. Mae'n bosibl na fydd apiau eraill yn parchu'r gofyniad hwn. Dyw hyn ddim yn gwneud eich cyfrif yn breifat."
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:133
msgid "Bluesky will proactively verify notable and authentic accounts."
@@ -1664,20 +1671,20 @@ msgstr "Torri rheolau gwefan"
msgid "Browse custom feeds"
msgstr "Pori'r ffrydiau cyfaddas"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "Porwch ragor o gyfrifon"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Porwch ragor o ffrydiau ar y dudalen Archwilio"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Pori ragor o awgrymiadau"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Porwch ragor o awgrymiadau ar y dudalen Archwilio"
@@ -1770,8 +1777,8 @@ msgstr "Camera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Camera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Diddymu'r chwilio"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Methu rhyngweithio â defnyddiwr sydd wedi'i rwystro"
@@ -1901,9 +1908,9 @@ msgstr "Newidiadau wedi'u cadw"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Sgyrsiau"
@@ -1989,7 +1996,7 @@ msgstr "Dewiswch ddull dilysu parth"
msgid "Choose Feeds"
msgstr "Dewiswch Ffrydiau"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Dewiswch i mi"
@@ -2096,6 +2103,7 @@ msgstr "Clip 🐴 clop 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Clip 🐴 clop 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Cau'r ddeialog GIFau"
msgid "Close image"
msgstr "Cau'r ddelwedd"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Cau'r golwg delwedd"
+msgstr "Cau'r darllenydd delweddau"
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr "Cau'r modal croeso"
msgid "Closes password update alert"
msgstr "Yn cau'r rhybudd diweddaru cyfrinair"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Yn cau cyfansoddwr postiad ac yn dileu postiad drafft"
@@ -2242,12 +2251,12 @@ msgstr "Cwblhewch y cyflwyniad a dechreuwch ddefnyddio'ch cyfrif"
msgid "Complete the challenge"
msgstr "Cwblhewch yr her"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Cyfansoddi postiad newydd"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Cyfansoddwch bostiadau hyd at {0, plural, zero {} one {# nod} two {# nod} few {# characters} many {# nod}other {# nod}}"
@@ -2255,7 +2264,11 @@ msgstr "Cyfansoddwch bostiadau hyd at {0, plural, zero {} one {# nod} two {# nod
msgid "Compose reply"
msgstr "Ysgrifennu ateb"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Yn cywasgu fideo..."
@@ -2263,7 +2276,6 @@ msgstr "Yn cywasgu fideo..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Ffurfweddw gosodiad hidlo cynnwys ar gyfer categori: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "Ffurfweddu baner digwyddiad byw"
@@ -2272,8 +2284,8 @@ msgstr "Ffurfweddu baner digwyddiad byw"
msgid "Configured in <0>moderation settings0>."
msgstr "Wedi'i ffurfweddu yn y <0>gosodiadau cymedroli0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2329,7 +2341,7 @@ msgstr "Cysylltu â'n chefnogaeth"
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:64
#: src/screens/Settings/FindContactsSettings.tsx:156
msgid "Contact sync is not available on this device, as the app is unable to access your contacts."
-msgstr "Nid yw cydweddu cysylltiadau ar gael ar y ddyfais hon, gan nad yw'r ap yn gallu cael mynediad i'ch cysylltiadau."
+msgstr "Dyw cydweddu cysylltiadau ddim ar gael ar y ddyfais hon, gan nad yw'r ap yn gallu cael mynediad i'ch cysylltiadau."
#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:95
msgid "Contact us"
@@ -2343,7 +2355,7 @@ msgstr "Cysylltiadau wedi'u Mewnforio"
msgid "Contacts removed"
msgstr "Tynnwyd y cysylltiadau"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Cynnwys a Chyfryngau"
@@ -2389,7 +2401,7 @@ msgstr "Cynnwys sy'n hyrwyddo neu'n dangos hunan niweidio"
msgid "Content Warning"
msgstr "Rhybudd Cynnwys"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Rhybuddion cynnwys"
@@ -2401,7 +2413,7 @@ msgstr "Cefndir ddewislen cyd-destun, cliciwch i gau'r ddewislen."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Parhau"
@@ -2420,7 +2432,7 @@ msgstr "Parhau â'r trywydd..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "Methu dilyn pob cyfatebiaeth. {0}"
msgid "Could not leave chat"
msgstr "Methu gadael y sgwrs"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Methu llwytho ffrwd"
@@ -2643,8 +2655,8 @@ msgstr "Creu cod QR ar gyfer pecyn cychwyn"
msgid "Create a starter pack"
msgstr "Creu pecyn cychwyn"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Crëwch Becyn Cychwyn"
@@ -2654,12 +2666,12 @@ msgstr "Creu pecyn cychwyn i mi"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Creu un arall"
msgid "Create moderation list"
msgstr "Creu rhestr cymedroli"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Creu cyfrif newydd"
@@ -2772,7 +2784,7 @@ msgstr "Dyddiad geni"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Cau cyfrif"
@@ -2871,7 +2883,7 @@ msgstr "Dileu fy ngyfrif"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Dileu postiad"
@@ -2981,7 +2993,7 @@ msgstr "Analluogi postiadau dyfynu'r postiad hwn"
msgid "Disable replies entirely"
msgstr "Analluogi atebion yn llwyr"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Analluogi isdeitlau"
@@ -2996,8 +3008,11 @@ msgstr "Analluogwyd"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Dileu"
@@ -3006,11 +3021,12 @@ msgstr "Dileu"
msgid "Discard changes?"
msgstr "Dileu'r newidiadau?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Dileu'r drafft?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Dileu'r postiad?"
@@ -3037,7 +3053,7 @@ msgstr "Cau"
msgid "Dismiss banner"
msgstr "Cau'r faner"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Cau'r gwall"
@@ -3049,11 +3065,16 @@ msgstr "Cau'r canllaw cychwyn arni"
msgid "Dismiss interests"
msgstr "Diystyru diddordebau"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "Cau baner digwyddiad byw"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Cau'r adran hon"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Cau'r awgrym hwn"
@@ -3121,8 +3142,8 @@ msgstr "Peidiwch â phoeni! Mae'r holl negeseuon a gosodiadau wedi'u cadw a bydd
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Tapio dwywaith neu bwyso'n hir i ychwanegu ymateb"
msgid "Double tap to close the dialog"
msgstr "Tapiwch ddwywaith i gau'r ddeialog"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Tapio dwywaith i'w hoffi"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Llwythwch Bluesky i Lawr"
@@ -3164,6 +3185,13 @@ msgstr "Llwythwch ffeil CAR i lawr"
msgid "Doxxing"
msgstr "Docsio"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "Drafftiau"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Gollwng i ychwanegu delweddau"
@@ -3285,13 +3313,13 @@ msgstr "Golygu gosodiadau rhyngweithio postiad"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Golygu proffil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Golygu Proffil"
@@ -3413,7 +3441,7 @@ msgstr "Galluogi gwthio hysbysiadau"
msgid "Enable quote posts of this post"
msgstr "Galluogi postiadau dyfynu'r postiad hwn"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Galluogi isdeitlau"
@@ -3421,13 +3449,13 @@ msgstr "Galluogi isdeitlau"
msgid "Enable this source only"
msgstr "Galluogi dim ond y ffynhonnell hon"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Galluogi pynciau tueddol"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Galluogi fideos tueddol yn eich ffrwd Darganfod"
@@ -3464,7 +3492,7 @@ msgstr "Rhowch air neu dag"
msgid "Enter code"
msgstr "Rhowch y cod"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Mynd i'r sgrin lawn"
@@ -3501,7 +3529,7 @@ msgstr "Rhowch eich cyfrinair"
msgid "Enter your username and password"
msgstr "Rhowch eich enw defnyddiwr a chyfrinair"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Yn mynd i'r sgrin lawn"
@@ -3509,7 +3537,7 @@ msgstr "Yn mynd i'r sgrin lawn"
msgid "Entertainment"
msgstr "Adloniant"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Gwall"
@@ -3570,7 +3598,7 @@ msgstr "Eithrio defnyddwyr rydych yn eu dilyn"
msgid "Excludes users you follow"
msgstr "Yn eithrio defnyddwyr rydych yn eu dilyn"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Gadael y sgrin lawn"
@@ -3578,11 +3606,7 @@ msgstr "Gadael y sgrin lawn"
msgid "Exits account deletion process"
msgstr "Yn gadael y broses dileu cyfrif"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Yn gadael golwg delwedd"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Ehangu testun amgen"
@@ -3598,11 +3622,11 @@ msgstr "Ehangu neu leihau'r postiad llawn rydych yn ateb iddo"
msgid "Expand post text"
msgstr "Estyn testun postiad"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Yn ehangu neu'n lleihau testun postiad"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Yr uri disgwyliedig i ddatrys i gofnod"
@@ -3639,7 +3663,7 @@ msgstr "Delweddau di-noethol amlwg."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Darganfod"
@@ -3657,8 +3681,8 @@ msgstr "Allforio fy nata"
msgid "Export My Data"
msgstr "Allforio Fy Nata"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Cyfryngau allanol"
@@ -3670,7 +3694,7 @@ msgstr "Cyfryngau Allanol"
#: src/components/dialogs/EmbedConsent.tsx:70
#: src/screens/Settings/ExternalMediaPreferences.tsx:43
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
-msgstr "Gall cyfryngau allanol ganiatáu i wefannau gasglu gwybodaeth amdanoch chi a'ch dyfais. Nid oes unrhyw wybodaeth yn cael ei anfon na gofyn amdano nes i chi bwyso'r botwm \"chwarae\"."
+msgstr "Gall cyfryngau allanol ganiatáu i wefannau gasglu gwybodaeth amdanoch chi a'ch dyfais. Does dim gwybodaeth yn cael ei anfon na gofyn amdano nes i chi bwyso'r botwm \"chwarae\"."
#: src/Navigation.tsx:378
#: src/screens/Settings/ExternalMediaPreferences.tsx:34
@@ -3730,7 +3754,7 @@ msgstr "Wedi methu dileu postiad, ceisiwch eto"
msgid "Failed to delete starter pack"
msgstr "Wedi methu dileu'r pecyn cychwyn"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "Wedi methu dilyn pob un o'r cyfrifon hyn, rhowch gynnig arall arni"
@@ -3829,6 +3853,10 @@ msgstr "Wedi methu dileu'r dilysiad"
msgid "Failed to resolve location. Please try again."
msgstr "Wedi methu canfod y lleoliad. Ceisiwch eto."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "Wedi methu cadw drafft"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Ffrwd"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Ffrwd gan {0}"
@@ -3941,7 +3970,7 @@ msgstr "Dyw'r ffrwd ddim ar gael"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Adborth"
@@ -3958,7 +3987,7 @@ msgstr "Adborth wedi'i anfon at weithredwr ffrwd"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Ffrydiau"
@@ -4008,6 +4037,10 @@ msgstr "Hidlo gan bwy rydych yn derbyn hysbysiadau"
msgid "Finalizing"
msgstr "Yn cwblhau"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "O'r diwedd! Cadwch drefn ar bostiadau sy'n bwysig i chi. Cadwch nhw i'w hail ddarllen unrhyw bryd."
@@ -4020,7 +4053,7 @@ msgstr "Cyllid"
#: src/view/com/posts/FollowingEmptyState.tsx:53
#: src/view/com/posts/FollowingEndOfFeed.tsx:54
msgid "Find accounts to follow"
-msgstr "Dewch o hyd i gyfrifon i'w dilyn"
+msgstr "Chwilio am gyfrifon i'w dilyn"
#: src/Navigation.tsx:426
#: src/Navigation.tsx:627
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Chwilio am fy ffrindiau"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Chwilio am bobl i'w dilyn"
@@ -4098,19 +4131,19 @@ msgstr "Mewnbwn cod ffocysu"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Dilyn"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Dilynwch {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Dilynwch {handle}"
@@ -4120,7 +4153,7 @@ msgstr "Dilynwch 10 cyfrif"
#: src/components/ProgressGuide/List.tsx:60
msgid "Follow 10 people to get started"
-msgstr "Dilyn 10 person i gychwyn arni"
+msgstr "Dilynwch 10 person i gychwyn arni"
#: src/components/ProgressGuide/List.tsx:102
msgid "Follow 7 accounts"
@@ -4133,7 +4166,7 @@ msgstr "Dilynwch y cyfrif"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Dilynwch y cyfrif"
msgid "Follow all"
msgstr "Dilynwch y cyfan"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Dilynwch bob cyfrif"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Dilynwch Nôl"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Yn dilyn pob cyfrif!"
@@ -4170,7 +4203,7 @@ msgstr "Yn cael ei ddilyn gan <0>{0}0>"
#: src/components/KnownFollowers.tsx:224
msgid "Followed by <0>{0}0> and {1, plural, one {# other} other {# others}}"
-msgstr "Yn cael eu dilyn gan <0>{0}0> a {1, plural, one {# arall} other {# arall}}"
+msgstr "Yn cael ei ddilyn gan <0>{0}0> a {1, plural, one {# arall} other {# arall}}"
#: src/components/KnownFollowers.tsx:211
msgid "Followed by <0>{0}0> and <1>{1}1>"
@@ -4195,18 +4228,18 @@ msgstr "Dilynwyr rydych chi'n eu hadnabod"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
-msgstr "Yn Dilyn"
+msgstr "Yn dilyn"
#: src/screens/SavedFeeds.tsx:410
#: src/view/screens/Feeds.tsx:603
msgctxt "feed-name"
msgid "Following"
-msgstr "Yn Dilyn"
+msgstr "Yn dilyn"
#: src/components/ProfileCard.tsx:509
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244
@@ -4214,14 +4247,14 @@ msgstr "Yn Dilyn"
msgid "Following {0}"
msgstr "Yn dilyn {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Yn dilyn {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
-msgstr "Dewisiadau ffrydio Yn Dilyn"
+msgstr "Dewisiadau ffrydio Yn dilyn"
#: src/Navigation.tsx:365
#: src/screens/Settings/FollowingFeedPreferences.tsx:56
@@ -4264,7 +4297,7 @@ msgstr "Am resymau diogelwch, fyddwch chi ddim yn gallu gweld hwn eto. Os byddwc
msgid "For the best experience, we recommend using the theme font."
msgstr "I gael y profiad gorau, rydym yn argymell defnyddio ffont y thema."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "I Chi"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Oddi wrth <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Creu pecyn cychwyn"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Cael cymorth"
@@ -4376,10 +4409,15 @@ msgstr "Cael gwybod pan fydd rhywun yn postio"
msgid "Get started"
msgstr "Cychwyn arni"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Rhowch wyneb i'ch proffil"
@@ -4394,12 +4432,12 @@ msgstr "Gogoneddu trais"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Mynd nôl"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "Mae mynd yn fyw wedi ei analluogi ar eich cyfrif ar hyn o bryd"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Cyfryngau Graffig"
@@ -4592,7 +4630,7 @@ msgstr "Wedi ei gadw gan Bluesky am 7 diwrnod i osgoi camddefnydd, yna ei ddileu
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Cymorth"
@@ -4632,9 +4670,9 @@ msgstr "Rhestr gudd"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Cuddio rhestr defnyddwyr"
msgid "Hide verification badges"
msgstr "Cuddio bathodynnau dilysu"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Yn cuddio'r cynnwys"
@@ -4760,9 +4798,9 @@ msgstr "Daliwch ati! Rydyn ni'n rhoi mynediad i fideo yn raddol, ac rydych chi'n
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Cartref"
@@ -4819,7 +4857,7 @@ msgstr "Rwy'n deall"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "Rwy ar Bluesky fel {0} - dewch i chwilio amdana i! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Os yw'r testun amgen yn hir, bydd y testun amgen yn toglo'r cyflwr estynedig"
@@ -4872,7 +4910,7 @@ msgstr "Os ydych chi eisiau cyfyngu ar bwy sy'n gallu derbyn hysbysiadau am weit
msgid "If you're a developer, you can host your own server."
msgstr "Os ydych chi'n ddatblygwr, gallwch chi gynnal eich gweinydd eich hun."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Os ydych chi'n ceisio newid eich enw dangos neu'ch e-bost, gwnewch hynny cyn i chi ei ei gau."
@@ -4996,6 +5034,10 @@ msgstr "Gosodiadau rhyngweithio"
msgid "Introducing activity notifications"
msgstr "Yn cyflwyno hysbysiadau gweithgaredd"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "Chwilio am ffrindiau drwy eich cysylltiadau"
@@ -5089,7 +5131,7 @@ msgstr "Dim ond <0>{0}0>ar hyn o bryd! Ychwanegwch fwy o bobl at eich pecyn cy
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Dim ond chi ar hyn o bryd! Ychwanegwch fwy o bobl at eich pecyn cychwyn trwy chwilio uchod."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID gwaith: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Cadw fi'n gyfredol"
msgid "KWS website"
msgstr "Gwefan KWS"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Wedi'i labelu gan {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Wedi'i labelu gan yr awdur."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Labeli"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Labeli wedi'u hychwanegu"
@@ -5218,8 +5260,8 @@ msgstr "Dysgu rhagor am fewnforio cysylltiadau"
msgid "Learn more about self hosting your PDS."
msgstr "Dysgu rhagor am hunan westeio eich PDS."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Dysgu rhagor am y cymedroli wedi'i osod i'r cynnwys hwn"
@@ -5231,7 +5273,7 @@ msgstr "Dysgwch ragor am y newidiadau yma a sut i rannu eich barn gyda ni drwy <
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Dysgwch ragor am y newidiadau yma a sut i rannu eich barn gyda ni drwy ddarllen ein cofnod blog."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Dysgwch ragor am y rhybudd hwn"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "Mae rhagor o wybodaeth yn eich <0>gosodiadau cyfrif0>"
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Dysgu rhagor."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Gadael"
@@ -5286,7 +5328,7 @@ msgstr "Gadael Bluesky"
msgid "left to go."
msgstr "chwith i fynd."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Gadewch i mi ddewis"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Hoffi"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Hoffi ({0, plural, one {# hoffi} other {# hoffi}})"
@@ -5380,7 +5422,7 @@ msgstr "Hoffi eich ail bostiadau"
msgid "Likes of your reposts notifications"
msgstr "Hoffi eich hysbysiadau ail bostio"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Hoffi ar y postiad hwn"
@@ -5474,7 +5516,7 @@ msgstr "Rhestr heb ei thewi"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Rhestrau"
@@ -5496,10 +5538,20 @@ msgstr "BYW"
msgid "Live event happening now: {0}"
msgstr "Digwyddiadau byw'n digwydd nawr: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "Digwyddiad byw cudd"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "Dewisiadau digwyddiadau byw"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "Amlygu digwyddiad cudd"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "Mae digwyddiadau byw'n ymddangos o bryd i'w gilydd pan fydd rhywbeth cyffroes yn digwydd. Os hoffech chi, gallwch guddio'r digwyddiad hwn neu bob digwyddiad ar gyfer y lleoliad yn rhyngwyneb eich ap."
@@ -5524,11 +5576,11 @@ msgstr "Llwytho rhagor"
msgid "Load more suggested feeds"
msgstr "Llwytho rhagor o ffrydiau wedi'u hawgrymu"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Llwytho hysbysiadau newydd"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo gan @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo gan <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Gwnewch un i mi"
msgid "Make sure this is where you intend to go!"
msgstr "Gwnewch yn siŵr mai dyma lle rydych chi'n bwriadu mynd!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Rheoli ffrydiau wedi'u cadw"
@@ -5638,7 +5690,16 @@ msgstr "Efallai yn nes ymlaen"
msgid "Media"
msgstr "Cyfryngau"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "Cyfryngau wedi'u cadw ar {0}"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "Cyfryngau wedi'u cadw ar ddyfais arall"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Cyfryngau a all fod yn annymunol neu'n amhriodol i rai cynulleidfaoedd."
@@ -5653,7 +5714,7 @@ msgstr "defnyddwyr wedi'u crybwyll"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Crybwylliadau"
@@ -5716,6 +5777,10 @@ msgstr "Hysbysiadau amrywiol"
msgid "Misleading"
msgstr "Camarweiniol"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "Cyfryngau coll"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "Rhagor o ieithoedd..."
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Ffilmiau"
msgid "Music"
msgstr "Cerddoriaeth"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Ewch i'r pecyn cychwyn"
msgid "Navigates to the next screen"
msgstr "Yn llywio i'r sgrin nesaf"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Yn llywio i'ch proffil"
@@ -5983,6 +6049,7 @@ msgstr "Cyfeiriad e-bost newydd"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Nodwedd Newydd"
@@ -6018,12 +6085,12 @@ msgstr "Negeseuon newydd"
msgid "New password"
msgstr "Cyfrinair newydd"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Postiad newydd"
@@ -6085,7 +6152,7 @@ msgstr "Newyddion"
msgid "Next"
msgstr "Nesaf"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Delwedd nesaf"
@@ -6114,6 +6181,10 @@ msgstr "Dim ffrydiau cyfaddas eto"
msgid "No DNS Panel"
msgstr "Dim Panel DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "Dim drafftiau eto"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Dim dyddiad dod i ben wedi'i osod"
@@ -6136,7 +6207,7 @@ msgstr "Dim delwedd"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Dim hoffi eto"
@@ -6148,9 +6219,9 @@ msgstr "Dim rhestrau"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269
#: src/view/com/notifications/NotificationFeedItem.tsx:792
msgid "No longer following {0}"
-msgstr "Ddim yn dilyn {0} bellach"
+msgstr "Dim yn dilyn {0} bellach"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "Dim cyfryngau eto"
@@ -6195,7 +6266,7 @@ msgstr "Dim postiadau eto"
msgid "No quotes yet"
msgstr "Dim dyfyniadau eto"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "Dim atebion eto"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Dim canlyniad"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Dim canlyniadau"
@@ -6238,7 +6309,7 @@ msgstr "Dim canlyniadau."
msgid "No search results found for \"{search}\"."
msgstr "Heb ganfod canlyniadau chwilio \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "Dim Pecynnau Cychwyn eto"
@@ -6247,7 +6318,7 @@ msgstr "Dim Pecynnau Cychwyn eto"
msgid "No thanks"
msgstr "Dim diolch"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "Dim postiadau fideo eto"
@@ -6298,6 +6369,10 @@ msgstr "Dim yn cael ei ddilyn gan neb rydych chi'n eu dilyn"
msgid "Not Found"
msgstr "Heb ei Ganfod"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Nodyn am rannu"
@@ -6321,7 +6396,7 @@ msgstr "Dim wedi'i gadw eto"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Gosodiadau hysbysu"
@@ -6349,10 +6424,10 @@ msgstr "Seiniau Hysbysu"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Hysbysiadau"
@@ -6368,8 +6443,8 @@ msgstr "nawr"
msgid "Now"
msgstr "Nawr"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Noethni"
@@ -6390,7 +6465,7 @@ msgstr "O na!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "Iawn"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Iawn"
@@ -6417,23 +6492,23 @@ msgstr "ar <0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Ailosod cyflwyno"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Does dim testun amgen ar un neu fwy o GIFau."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Does dim testun amgen ar un neu fwy o fideos."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "Dyw un neu fwy o'r ffeiliau hyn ddim yn cael eu cynnal."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "Mae un neu fwy o'r ffeiliau hyn yn rhy fawr. Uchafswm maint yw 100 MB."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Does dim testun amgen ar un neu fwy o fideos."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Wps, aeth rhywbeth o'i le!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Wps!"
msgid "Open avatar creator"
msgstr "Agor y crëwr avatar"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "Agor camera"
@@ -6485,12 +6560,16 @@ msgstr "Agor camera"
msgid "Open conversation options"
msgstr "Agor dewisiadau sgyrsiau"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "Agor drafft"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Agor dewislen drôr"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Agor y dewisydd emojis"
@@ -6557,7 +6636,7 @@ msgstr "Agor cofnod system"
msgid "Opens {0} feed"
msgstr "Yn agor {0} ffrwd"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Yn agor deialog i ychwanegu rhybudd cynnwys at eich postiad"
@@ -6589,25 +6668,25 @@ msgstr "Yn agor deialog newid enw dangos"
msgid "Opens composer"
msgstr "Yn agor y cyfansoddwr"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "Yn agor camera dyfais"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "Yn agor oriel dyfais i ddewis hyd at {MAX_IMAGES, plural, other {# delwedd}}, neu un fideo neu GIF."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Yn agor y dewisydd emojis"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Yn agor llif i greu cyfrif Bluesky newydd"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Yn agor llif i fewngofnodi i'ch cyfrif Bluesky presennol"
@@ -6620,7 +6699,7 @@ msgstr "Yn agor deialog dewis GIF"
msgid "Opens helpdesk in browser"
msgstr "Yn agor desg gymorth yn y porwr"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "Yn agor dewisydd lluniau"
@@ -6640,10 +6719,14 @@ msgstr "Yn agor ffurflen ailosod cyfrinair"
msgid "Opens post language settings"
msgstr "Yn agor gosodiadau ieithoedd postiadau"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "Yn agor maes ysgrifennu postiad"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "Yn agor y drafft hwn yn y cyfansoddwr"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "Statws OTA: Dim ar gael"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Arall"
@@ -6763,13 +6846,13 @@ msgstr "Cyfrinair wedi'i ddiweddaru"
msgid "Password updated!"
msgstr "Cyfrinair wedi'i ddiweddaru!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Oedi"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Oedi fideo"
@@ -6829,7 +6912,7 @@ msgstr "Gwiriwyd y rhif ffôn"
msgid "Photography"
msgstr "Ffotograffiaeth"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Lluniau ar gyfer oedolion."
@@ -6874,9 +6957,9 @@ msgstr "Ffrydiau wedi'u Pinio"
msgid "Pinned to your feeds"
msgstr "Wedi'i binio i'ch ffrydiau"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Chwarae"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Chwarae {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Chwarae fideo"
@@ -6893,11 +6976,11 @@ msgstr "Chwarae fideo"
msgid "Play Video"
msgstr "Chwarae Fideo"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Yn chwarae neu'n oedi'r GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Yn chwarae neu'n oedi'r fideo"
@@ -6909,7 +6992,7 @@ msgstr "Yn chwarae'r GIF"
msgid "Plays the video"
msgstr "Yn chwarae'r fideo"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Ychwanegwch unrhyw labeli rhybudd cynnwys sy'n berthnasol i'r cyfryngau rydych chi'n eu postio."
@@ -7066,31 +7149,31 @@ msgstr "Ysgrifennwch eich neges isod:"
msgid "Politics"
msgstr "Gwleidyddiaeth"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornograffi"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Postio"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Postio"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Postiwch lun"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Postiwch fideo"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Postio'r Cyfan"
@@ -7217,7 +7300,7 @@ msgstr "Pwyswch i weld dilynwyr y cyfrif hwn rydych chi'n ei ddilyn hefyd"
msgid "Preview"
msgstr "Rhagolwg"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Delwedd flaenorol"
@@ -7257,8 +7340,8 @@ msgstr "Gosodiadau Preifatrwydd a Diogelwch"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Polisi Preifatwydd"
@@ -7266,7 +7349,11 @@ msgstr "Polisi Preifatwydd"
msgid "Privacy violation of a minor"
msgstr "Torri ar breifatrwydd plentyn dan oed"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Yn prosesu fideo..."
@@ -7280,10 +7367,10 @@ msgstr "Wrthi’n prosesu..."
msgid "profile"
msgstr "proffil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Proffil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Rhestrau cyhoeddus, y mae modd eu rhannu o ddefnyddwyr i'w tewi neu eu rhwystro'n lluosog."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Cyhoeddi postiad"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Cyhoeddi postiadau"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Cyhoeddi atebion"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Cyhoeddi ateb"
@@ -7360,6 +7447,7 @@ msgstr "Hysbysiadau dyfynnu"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Dyfyniad postiad"
@@ -7385,7 +7473,7 @@ msgstr "Analluogwyd postiadau dyfyniad"
msgid "Quotes"
msgstr "Dyfyniadau"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Dyfyniadau'r postiad hwn"
@@ -7424,11 +7512,11 @@ msgstr "darllenwch am sut i ddefnyddio'r hidlyddion chwilio"
msgid "Read blog post"
msgstr "Darllen postiad blog"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Darllen llai"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Darllen mwy"
@@ -7720,13 +7808,13 @@ msgstr "Analluogwyd atebion"
msgid "Replies to this post are disabled."
msgstr "Mae atebion i'r postiad hwn wedi'u hanalluogi."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Ateb"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Ateb ({0, plural, one {# ateb} other {# ateb}})"
@@ -7892,7 +7980,7 @@ msgstr "Wedi'i ail-bostio gennych chi"
msgid "Reposts"
msgstr "Ail bostiadau"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Ail-bostiadau'r postiad hwn"
@@ -7996,14 +8084,14 @@ msgstr "Yn ceisio'r weithred olaf eto, oedd yn wallus"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Nôl i'r dudalen flaenorol"
msgid "Returns to home page"
msgstr "Yn mynd nôl i'r dudalen gartref"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Yn mynd nôl i'r dudalen flaenorol"
@@ -8063,7 +8151,7 @@ msgstr "Yn mynd nôl i'r cam blaenorol"
msgid "Save"
msgstr "Cadw"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Cadw"
@@ -8076,9 +8164,26 @@ msgstr "Cadw dyddiad geni"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Cadw'r newidiadau"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "Cadw newidiadau?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "Cadw drafft"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "Cadw drafft?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Cadw i fy ffrydiau"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Wedi cadw"
@@ -8155,7 +8260,7 @@ msgstr "Sgrolio i'r brig"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Chwilio"
@@ -8164,7 +8269,7 @@ msgstr "Chwilio"
msgid "Search @{0}'s posts"
msgstr "Chwilio postiadau @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Chwiliwch yn ôl enw neu ddiddordeb"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Chwilo'r ffrydiau"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "Chwiliwch am \"{interestsDisplayName}\""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "Chwiliwch am \"{interestsDisplayName}\" (gweithredol)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Chwiliwch am bostiadau"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Chwilio proffiliau"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Chwilio..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Chwilio am broffiliau"
@@ -8283,12 +8388,12 @@ msgstr "Gweld #{tag} postiad yn ôl defnyddiwr"
msgid "See jobs at Bluesky"
msgstr "Gweld swyddi yn Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Gweld rhagor"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "Gweld rhagor o broffiliau diddorol"
@@ -8456,7 +8561,7 @@ msgstr "Dewiswch eich dewis iaith cyfieithu'ch ffrydiau."
msgid "Select your preferred notification channels"
msgstr "Dewiswch eich hoff sianeli hysbysu"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "Dyw dewis mathau lluosog o gyfryngau ddim yn cael ei gynnal."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Anfon E-bost"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Anfonwch adborth"
@@ -8566,7 +8671,7 @@ msgstr "Yn gosod e-bost ar gyfer ailosod cyfrinair"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Gosodiadau"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Gosodiadau wedi'u cadw"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Gweithgaredd rhywiol neu noethni erotig."
@@ -8634,7 +8739,7 @@ msgstr "Rhywiol Awgrymiadol"
msgid "Share"
msgstr "Rhannu"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Rhannu"
@@ -8712,13 +8817,13 @@ msgstr "Rhannwch eich hoff ffrwd!"
msgid "Shared Preferences Tester"
msgstr "Profwr Dewisiadau Rhannu"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Dangos"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Dangos testun amgen"
@@ -8820,7 +8925,7 @@ msgstr "Dangos rhybudd a hidlo o ffrydiau"
msgid "Show when you’re live"
msgstr "Dangos pan fyddwch yn fyw"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Yn dangos manylion pryd cafodd y postiad hwn ei chreu"
@@ -8828,8 +8933,8 @@ msgstr "Yn dangos manylion pryd cafodd y postiad hwn ei chreu"
msgid "Shows other accounts you can switch to"
msgstr "Yn dangos cyfrifon eraill y gallwch newid iddyn nhw"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Yn dangos y cynnwys"
@@ -8842,14 +8947,14 @@ msgstr "Yn dangos y cynnwys"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Mae Angen Mewngofnodi"
msgid "Signed in as @{0}"
msgstr "Wedi mewngofnodi fel @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Cyfrifon tebyg"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "Hepgor rhannu cysylltiadau ac ymlaen i'r ap"
msgid "Skip introduction and start using your account"
msgstr "Hepgor y cyflwyniad a chychwyn defnyddio'ch cyfrif"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Mynd i'r cam nesaf"
@@ -8967,7 +9068,7 @@ msgstr "Datblygwr Meddalwedd"
msgid "Some of your verifications are invalid."
msgstr "Mae rhai o'ch dilysiadau'n annilys."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Rhai ffrydiau eraill efallai y byddwch yn eu hoffi"
@@ -8994,7 +9095,7 @@ msgstr "Aeth rhywbeth o'i le"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Aeth rhywbeth o'i le, ceisiwch eto"
@@ -9020,7 +9121,7 @@ msgstr "Aeth rhywbeth o'i le. Ceisiwch eto."
msgid "Something wrong? Let us know."
msgstr "Rhywbeth o'i le? Rhowch wybod i ni."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Ymddiheuriadau, does dim modd i ni lwytho awgrymiadau cyfrifon ar hyn o bryd."
@@ -9113,7 +9214,11 @@ msgstr "Pecynnau Cychwyn"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Mae pecynnau cychwyn yn caniatáu i chi rannu gyda'ch ffrindiau eich hoff ffrydiau a phobl."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "Mae pecynnau cychwyn yn gadael i chi rannu eich hoff ffrydiau a phobl gyda'ch ffrindiau."
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "Mae Pecynnau Cychwyn yn gadael i chi rannu'ch hoff ffrydiau a phobl gyda'ch ffrindiau."
@@ -9181,11 +9286,11 @@ msgstr "Tanysgrifiwch i @{0} i ddefnyddio'r labeli hyn:"
msgid "Subscribe to account activity"
msgstr "Tanysgrifio i weithgaredd cyfrif"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Tanysgrifiwch i Labelwr"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Tanysgrifiwch i'r labelwr hwn"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Cyfrifon wedi'u Hawgrymu"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Awgrymiadau i chi"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Awgrymiadol"
@@ -9354,8 +9459,8 @@ msgstr "Telerau"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Telerau Gwasanaeth"
@@ -9403,12 +9508,12 @@ msgstr "Mae'r enw defnyddiwr hwnnw eisoes wedi'i gymryd"
msgid "That's all, folks!"
msgstr "Dyna i gyd, bobl!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Dyna bopeth!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Bydd y cyfrif yn gallu rhyngweithio â chi ar ôl ei ddadrwystro."
@@ -9447,7 +9552,7 @@ msgstr "Ffrwd Darganfod"
msgid "The Discover feed now knows what you like"
msgstr "Mae ffrwd Darganfod nawr yn gwybod beth rydych chi'n ei hoffi"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Mae'r profiad yn well yn yr ap. Llwythwch Bluesky i lawr nawr a byddwn yn dod nôl lle roeddech chi."
@@ -9527,7 +9632,7 @@ msgstr "Thema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "Mae yna derfyn ar ba mor aml fedrwch chi newid eich dyddiad geni. Bosib y bydd rhaid i chi aros am ddiwrnod neu ddau yn ei ddiweddaru eto."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Does dim terfyn amser ar gyfer agor cyfrif, dewch yn ôl unrhyw bryd."
@@ -9684,7 +9789,7 @@ msgstr "Mae'r cod yn annilys. Anfonwch eto i gael cod newydd."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:144
msgid "This confirmation code is not valid. Please try again."
-msgstr "Nid yw'r cod cadarnhau yma'n ddilys. Ceisiwch eto."
+msgstr "Dyw'r cod cadarnhau yma ddim yn ddilys. Ceisiwch eto."
#: src/lib/moderation/useGlobalLabelStrings.ts:19
msgid "This content has been hidden by the moderators."
@@ -9711,6 +9816,10 @@ msgstr "Dyw'r cynnwys hwn ddim yn weladwy heb gyfrif Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Mae'r sgwrs hon gyda chyfrif sydd wedi'i ddileu neu wedi'i chau. Pwyswch am ddewisiadau"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "Bydd y drafft hwn yn cael ei ddileu'n barhaol."
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Mae'r cyfeiriad e-bost hwn eisoes wedi'i gysylltu â'ch cyfrif."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Mae'r ffrwd hon yn wag! Efallai y bydd angen i chi ddilyn mwy o ddefnyddwyr neu newid eich gosodiadau iaith."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Mae'r ffrwd hon yn wag."
@@ -9798,7 +9907,7 @@ msgstr "Mae'r rhestr hon yn wag."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Dyw'r gwasanaeth cymedroli hwn ddim ar gael. Gweler isod am ragor o fanylion. Os bydd y mater hwn yn parhau, cysylltwch â ni."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Mae'r postiad hwn yn honni iddo gael ei greu ar <0>{0}0>, ond fe'i gwelwyd gyntaf gan Bluesky ar <1>{1}1>."
@@ -9816,9 +9925,9 @@ msgstr "Cafodd y postiad hwn ei ddileu gan yr awdur"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:773
msgid "This post will be hidden from feeds and threads. This cannot be undone."
-msgstr "Bydd y postiad hwn yn cael ei guddio rhag ffrydiau ac edafedd. Nid oes modd dadwneud hyn."
+msgstr "Bydd y postiad hwn yn cael ei guddio rhag ffrydiau ac edafedd. Does dim modd dadwneud hyn."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Mae awdur y postiad hwn wedi analluogi postiadau dyfyniadau."
@@ -9834,7 +9943,7 @@ msgstr "Bydd yr ateb hwn yn cael ei drefnu mewn adran gudd ar waelod eich edefyn
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Dyw'r gwasanaeth hwn heb ddarparu telerau gwasanaeth na pholisi preifatrwydd."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "Dyw'r gwasanaeth yma ddim yn cael ei gefnogi tra bod y nodwedd Byw yn y cyflwr beta. Gwasanaethu sy'n cael eu caniatáu: {formatted}."
@@ -9861,7 +9970,7 @@ msgstr "Mae'r defnyddiwr hwn wedi eich rhwystro"
#: src/components/moderation/ModerationDetailsDialog.tsx:81
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
-msgstr "Mae'r defnyddiwr hwn wedi eich rhwystro. Nid oes modd i chi weld eu cynnwys."
+msgstr "Mae'r defnyddiwr hwn wedi eich rhwystro. Does dim modd i chi weld eu cynnwys."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
@@ -9900,8 +10009,8 @@ msgstr "Bydd hyn yn tynnu'ch postiad o'r postiad dyfynnu hwn ar gyfer pob defnyd
msgid "Thread options"
msgstr "Opsiynau edafedd"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Dewisiadau edafedd"
@@ -9951,7 +10060,7 @@ msgstr "Heddiw"
msgid "Toggle to enable or disable adult content"
msgstr "Toglo i alluogi neu analluogi cynnwys oedolion"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Toglo'r sain"
@@ -9988,8 +10097,8 @@ msgstr "Pwnc"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Cyfieithu"
@@ -10091,15 +10200,15 @@ msgstr "Manylion ffrwd anhysbys"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Dadflocio"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Dadflocio"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Dadrwystro cyfrif"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Dadrwystro Cyfrif?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Dadwneud"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Dadwneud"
@@ -10142,7 +10255,7 @@ msgstr "Dadwneud ail-bostio"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Dad-wneud ail-bostio ({0, plural, one {# ail-bostio} other {# ail-bostio}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Dad-ddilyn {0}"
@@ -10151,7 +10264,7 @@ msgstr "Dad-ddilyn {0}"
msgid "Unfollow account"
msgstr "Dad-ddilyn y cyfrif"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Dad-ddilyn defnyddiwr"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Dad-hoffi"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Dadhoffi ({0, plural, one {# hoffi} other {# hoffi}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Dad-dewi rhestr"
msgid "Unmute thread"
msgstr "Dad-dewi'r edefyn"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Dad-dewi fideo"
@@ -10276,7 +10389,7 @@ msgstr "Rhestr dadbinio"
msgid "Unsnooze email reminder"
msgstr "Dad-gysgu atgoffwr e-bost"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Dad-danysgrifio"
@@ -10285,7 +10398,7 @@ msgstr "Dad-danysgrifio"
msgid "Unsubscribe from list"
msgstr "Dad-danysgrifio o'r rhestr"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Dad-danysgrifio o'r labelwr hwn"
@@ -10293,7 +10406,7 @@ msgstr "Dad-danysgrifio o'r labelwr hwn"
msgid "Unsubscribed from list"
msgstr "Wedi dad-danysgrifio o'r rhestr"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Math o fideo sydd ddim yn cael ei gynnal: {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "Llwytho i fyny o'r Ffeiliau"
msgid "Upload from Library"
msgstr "Llwytho i fyny o'r Llyfrgell"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Wrthi'n lwytho lluniau i fyny..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Wrthi'n lwytho dolen llun bach i fyny..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Wrthi'n llwytho fideo i fyny..."
@@ -10389,8 +10506,8 @@ msgstr "Defnyddiwch y darparwr rhagosodedig"
msgid "Use in-app browser"
msgstr "Defnyddio'r porwr o fewn yr ap"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Defnyddio'r porwr o fewn yr ap i agor dolenni"
@@ -10445,6 +10562,10 @@ msgstr "Defnyddiwr yn eich Rhwystro Chi"
msgid "User list by {0}"
msgstr "Rhestr defnyddwyr gan {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr "Rhestr defnyddwyr gan {0}"
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Rhestr defnyddwyr gennych chi"
@@ -10597,8 +10718,8 @@ msgstr "Yn gwirio..."
msgid "Version {0}"
msgstr "Fersiwn {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Fideo"
@@ -10614,20 +10735,24 @@ msgstr "Ffrwd Fideo"
msgid "Video from {0}: {text}"
msgstr "Fideo gan {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "Fideo gan {0}. Tapio i chwarae neu oedi'r fideo"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Gemau Fideo"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Fideo wedi'i atal"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Fideo yn chwarae"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Fideo heb ei ganfod."
@@ -10635,11 +10760,11 @@ msgstr "Fideo heb ei ganfod."
msgid "Video settings"
msgstr "Gosodiadau fideo"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Fideo wedi'i lwytho i fyny"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Fideo: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Fideo: {0}"
msgid "Videos"
msgstr "Fideos"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "Rhaid i fideos fod yn llai na 3 munud o hyd."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Edrych"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Gweld afatar {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Gweld proffil {0}"
@@ -10708,7 +10833,7 @@ msgstr "Gweld mwy"
msgid "View more trending videos"
msgstr "Edrychwch ar ragor o fideos sy'n trendio"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "Edrych ar y postiad"
@@ -10788,7 +10913,7 @@ msgstr "Cynnwys treisiol neu fygythiol"
msgid "Visit site"
msgstr "Mynd i'r wefan"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Ewch i'ch gosodiadau hysbysu"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Rydym yn cael anawsterau cychwyn y broses sicrhau oed ar gyfer eich cyfrif. Cysylltwch â'n <0>cefnogaeth0> am gymorth."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Rydym yn cael problemau rhwydwaith, ceisiwch eto"
@@ -10968,7 +11093,7 @@ msgstr "Mae'n ddrwg gennym, ond nid oeddem yn gallu llwytho eich geiriau wedi'u
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Mae'n ddrwg gennym, ond nid oedd modd cwblhau eich chwilio. Ceisiwch eto ymhen ychydig funudau."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Mae'n ddrwg gennym! Mae'r postiad rydych chi'n ymateb iddo wedi'i dileu."
@@ -10977,7 +11102,7 @@ msgstr "Mae'n ddrwg gennym! Mae'r postiad rydych chi'n ymateb iddo wedi'i dileu.
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Mae'n ddrwg gennym! Gallwn ni ddim dod o hyd i'r dudalen yr oeddech yn chwilio amdani."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Mae'n ddrwg gennym! Dim ond i ugain o labelwyr y gallwch chi danysgrifio, ac rydych chi wedi cyrraedd eich terfyn o ugain."
@@ -11018,10 +11143,9 @@ msgstr "Beth yw eich diddordebau?"
msgid "What do you want to call your starter pack?"
msgstr "Beth ydych chi am ei alw'ch pecyn cychwyn?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Beth sy'n digwydd?"
@@ -11097,6 +11221,14 @@ msgstr "Pam dylai'r defnyddiwr hwn gael ei adolygu?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Hoffech chi rwystro'r defnyddiwr hwn a/neu ddileu'r sgwrs hon?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "Hoffech chi gadw hwn fel drafft cyn edrych ar eich drafftiau?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "Hoffech chi gadw hwn fel drafft i'w olygu'n nes ymlaen?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Ysgrifennwch neges"
msgid "Write a post"
msgstr "Ysgrifennu postiad"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Ysgrifennwch bostiad"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Ysgrifennwch eich ateb"
@@ -11133,8 +11265,8 @@ msgstr "www.mylivestream.tv"
msgid "Yes"
msgstr "Iawn"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Iawn, cau"
@@ -11188,7 +11320,7 @@ msgstr "Rydych mewn llinell."
msgid "You are Live"
msgstr "Rydych chi'n Fyw"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Dydych chi ddim yn fyw mwyach"
@@ -11200,7 +11332,7 @@ msgstr "Does dim caniatâd i chi lwytho fideos i fyny."
msgid "You are not following anyone yet"
msgstr "Dydych chi ddim yn dilyn neb eto"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Rydych chi nawr yn fyw!"
@@ -11255,11 +11387,11 @@ msgstr "Gallwch nawr ddewis i gael gwybod pan fydd pobl benodol yn postio. Os oe
msgid "You can now sign in with your new password."
msgstr "Gallwch nawr fewngofnodi gyda'ch cyfrinair newydd."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "Dim ond un GIF ar y tro mai modd ei ddewis."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "Dim ond un fideo ar y tro mai modd ei ddewis."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Gallwch ailagor eich cyfrif i barhau i fewngofnodi. Bydd defnyddwyr eraill yn gallu gweld eich proffil a'ch postiadau."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "Gallwch ddewis hyd at {MAX_IMAGES, plural, other {# delwedd}} i gyd."
@@ -11317,7 +11449,7 @@ msgstr "Rydych wedi rhwystro'r defnyddiwr hwn"
msgid "You have blocked this user. You cannot view their content."
msgstr "Rydych wedi rhwystro'r defnyddiwr hwn. Allwch chi ddim gweld eu cynnwys."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Rydych wedi analluogi hysbysiadau ateb, dyfynnu, a chrybwyll, felly ni fydd y tab hwn yn diweddaru. I newid hyn, ewch i'ch <0>gosodiadau hysbysu0>."
@@ -11350,7 +11482,7 @@ msgstr "Does gennych chi ddim sgyrsiau eto. Dechreuwch un!"
#: src/view/com/lists/MyLists.tsx:81
msgid "You have no lists."
-msgstr "Nid oes gennych unrhyw restrau."
+msgstr "Does gennych ddim rhestrau."
#: src/components/dialogs/StarterPackDialog.tsx:101
msgid "You have no starter packs."
@@ -11376,6 +11508,14 @@ msgstr "Diolch, rydych chi wedi dilysu'ch cyfeiriad e-bost yn llwyddiannus. Gall
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Rydych wedi cyrraedd y terfyn ar gyfer llwytho fideo i fyny dros dro. Ceisiwch eto yn nes ymlaen."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "Mae gennych chi newidiadau heb eu cadw o'r drafft hwn, hoffech chi eu cadw?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "Mae gennych chi newidiadau heb eu cadw. Hoffech chi eu cadw cyn edrych ar eich drafftiau?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Dydych chi ddim wedi creu pecyn cychwyn eto!"
@@ -11437,7 +11577,7 @@ msgstr "Rhaid i chi fod yn {MIN_ACCESS_AGE} oed neu'n hŷn i greu cyfrif."
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Rhaid eich bod yn o leiaf 13 oed i ddefnyddio Bluesky. Darllenwch ein <0>Amodau Gwasanaeth0> am ragor o wybodaeth."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Rhaid i chi fod yn dilyn o leiaf saith o bobl eraill i gynhyrchu pecyn cychwyn."
@@ -11449,7 +11589,7 @@ msgstr "Mae'n rhaid i chi gwblhau'r drefn sicrwydd oed er mwyn cael mynediad at
msgid "You must grant access to your photo library to save a QR code"
msgstr "Rhaid i chi ganiatáu mynediad i'ch llyfrgell ffotograffau i gadw cod QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "Rhaid i chi ganiatáu mynediad i'ch llyfrgell cyfryngau."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Chi fydd nesaf"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Rydych wedi mewngofnodi gyda Chyfrinair Ap. Mewngofnodwch gyda'ch prif gyfrinair i barhau i gau'ch eich cyfrif."
@@ -11589,7 +11729,7 @@ msgstr "Rydych wedi cyrraedd terfyn dyddiol llwytho fideos i fyny (gormod o feit
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Rydych wedi cyrraedd terfyn dyddiol llwytho fideos i fyny (gormod o fideos)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Rydych wedi rhedeg allan o fideos i'w gwylio. Efallai ei fod yn amser da i gael newid bach?"
@@ -11611,7 +11751,7 @@ msgstr "Nid yw eich cyfrif yn ddigon hen eto i lwytho fideos i fyny. Ceisiwch et
#: src/screens/Settings/components/ExportCarDialog.tsx:68
msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately."
-msgstr "Mae modd llwytho eich storfa cyfrif i lawr, sy'n cynnwys yr holl gofnodion data cyhoeddus, fel ffeil \"CAR\". Nid yw'r ffeil hon yn cynnwys mewnblaniadau cyfryngau, megis delweddau, na'ch data preifat, y mae'n rhaid eu nôl nhw ar wahân."
+msgstr "Mae modd llwytho eich storfa cyfrif i lawr, sy'n cynnwys yr holl gofnodion data cyhoeddus, fel ffeil \"CAR\". Dyw'r ffeil hon ddim yn cynnwys mewnblaniadau cyfryngau, megis delweddau, na'ch data preifat, y mae'n rhaid eu nôl nhw ar wahân."
#: src/screens/Takendown.tsx:212
msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service0>. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error."
@@ -11625,7 +11765,7 @@ msgstr "Mae eich apêl wedi'i chyflwyno. Os bydd eich apêl yn llwyddo, byddwch
msgid "Your birth date"
msgstr "Eich dyddiad geni"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Nid yw eich porwr yn cefnogi'r fformat fideo. Rhowch gynnig ar borwr gwahanol."
@@ -11692,8 +11832,8 @@ msgstr "Eich enw dangos llawn fydd <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Eich diddordebau"
@@ -11731,11 +11871,11 @@ msgstr "Mae eich cyfrinair wedi'i newid yn llwyddiannus! Defnyddiwch eich cyfrin
msgid "Your password must be at least 8 characters long."
msgstr "Rhaid i'ch cyfrinair fod o leiaf 8 nod."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "Mae eich postiad wedi'i anfon"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "Mae eich postiadau wedi'u hanfon"
@@ -11752,11 +11892,11 @@ msgstr "Eich llun proffil"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "Eich llun proffil wedi ei amgylchynu gan gylchoedd consentrig o luniau proffil defnyddwyr eraill"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Ni fydd eich proffil, postiadau, ffrydiau a rhestrau bellach yn weladwy i ddefnyddwyr Bluesky eraill. Gallwch ail agor eich cyfrif unrhyw bryd trwy fewngofnodi."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "Mae eich ateb wedi'i anfon"
diff --git a/src/locale/locales/da/messages.po b/src/locale/locales/da/messages.po
index c088a4a754..084676db43 100644
--- a/src/locale/locales/da/messages.po
+++ b/src/locale/locales/da/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: da\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# deling} other {# delinger}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# sekund} other {# sekunder}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# ulæst besked} other {# ulæste beskeder}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# ulæst besked} other {# ulæste beskeder}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {#md} other {#mdr}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {følger} other {følgere}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {følger} other {følger}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {like} other {likes}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {like} other {likes}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {opslag} other {opslag}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citat} other {citater}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {deling} other {delinger}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {gemt} other {gemte}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (Konto)"
@@ -189,11 +193,11 @@ msgstr "{0} reagerede med {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} reagerede med {1} på {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, et feed af {1}, liket af {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, en liste af {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, one {}other {# brugere}} har oprettet sig!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# minut} other {# minutter}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# ulæst besked} other {# ulæste beskeder}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1} 1>og {2, plural, one {# anden} other {# andre}} er med i din startpakke"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {følger} other {følgere}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {følger} other {følger}}"
@@ -580,6 +584,11 @@ msgstr "It screenshot af et opslag med en ny knap ved siden af delingsknappen, d
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Et screenshot af en profilside med et klokkeikon ved siden af Følg-knappen, som illustrerer den nye notifikationsfunktion."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Tilføj {0} mere for at fortsætte"
msgid "Add {displayName} to starter pack"
msgstr "Føj {displayName} til startparkke"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Tilføj en indholdsadvarsel"
@@ -754,11 +763,11 @@ msgstr "Tilføj alt-tekst (valgfrit)"
msgid "Add another account"
msgstr "Tilføj endnu en konto"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Tilføj endnu et opslag"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Tilføj endnu et opslag til tråd"
@@ -776,12 +785,12 @@ msgstr "Tilføj appadgangskode"
msgid "Add emoji reaction"
msgstr "Tilføj emojireaktion"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Tilføj billede"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Føj medier til opslag"
@@ -871,7 +880,7 @@ msgstr "Yderligere oplysninger (maks. 1000 tegn)"
msgid "Additional details (limit 300 characters)"
msgstr "Yderligere oplysninger (højst 300 tegn)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Porno"
@@ -879,10 +888,10 @@ msgstr "Porno"
msgid "Adult content"
msgstr "Voksenindhold"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Porno"
@@ -894,8 +903,8 @@ msgstr "Voksenindhold kan kun slås til via browserudgaven af <0>bsky.app0>."
msgid "Adult content is disabled."
msgstr "Voksenindhold er deaktiveret"
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Voksenindholdsmærkater"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "mette@eksempel.dk"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Alle"
@@ -1017,7 +1026,7 @@ msgstr "Har du allerede en konto?"
msgid "Already signed in as @{0}"
msgstr "Allerede logget ind som @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Alt-tekst"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Alt-tekst"
@@ -1059,7 +1068,7 @@ msgstr "En e-mail er sendt til {0}. Den indeholder en bekræftelseskode, som du
msgid "An error has occurred"
msgstr "Der opstod en fejl"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Der opstod en fejl"
@@ -1067,7 +1076,7 @@ msgstr "Der opstod en fejl"
msgid "An error occurred while compressing the video."
msgstr "Der opstod en fejl under komprimering af videoen."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "Der opstod en fejl under indlæsning af foreslåede konti."
@@ -1076,7 +1085,7 @@ msgstr "Der opstod en fejl under indlæsning af foreslåede konti."
msgid "An error occurred while fetching the feed."
msgstr "Der opstod en fejl under indlæsning af feedet."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Der opstod en fejl under generering af din startpakke. Vil du prøve igen?"
@@ -1088,7 +1097,7 @@ msgstr "Der opstod en fejl ved forsøg på at skjule forslag. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "Der opstod en fejl under indlæsning af videoen. Prøv igen senere."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Der opstod en fejl under indlæsning af videoen. Prøv igen senere."
@@ -1181,7 +1190,7 @@ msgstr "Dyrevelfærd"
msgid "Animals"
msgstr "Dyr"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "Animeret GIF"
@@ -1306,12 +1315,12 @@ msgstr "Brug anbefalede standardfeeds"
msgid "Apply Pull Request"
msgstr "Anvend pull request"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Arkiveret fra {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Arkiveret opslag"
@@ -1332,11 +1341,11 @@ msgstr "Er du sikker på, du vil slette denne startpakke"
msgid "Are you sure you want to discard your changes?"
msgstr "Er du sikker på, du vil kassere dine ændringer?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Er du sikker på, at du vil forlade denne samtale?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Er du sikker på, du vil forlade denne samtale? Dine beskeder vil blive slettet hos dig men ikke hos modparten."
@@ -1344,11 +1353,7 @@ msgstr "Er du sikker på, du vil forlade denne samtale? Dine beskeder vil blive
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Er du sikker på, du vil fjerne dette feed fra dine feeds?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Er du sikker på, du vil kassere dette udkast?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Er du sikker på, du vil kassere dette opslag?"
@@ -1364,7 +1369,7 @@ msgstr "Skriver du på <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Kunst"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Kunstnerisk og ikkeerotisk nøgenhed."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Nordlys"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Afspil videoer og GIF'er automatisk"
@@ -1404,11 +1409,13 @@ msgstr "Tilgængelig"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Tilbage"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky kan ikke bekræfte den anførte datos gyldighed."
@@ -1623,7 +1630,7 @@ msgstr "Bluesky Socials tjenestevilkår"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Bluesky gemmer dine kontakter som krypteret data. Hvis du fjerner dine kontakter, sletter vi øjeblikkeligt denne data."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky vil vælge et antal anbefalede konti fra personer i dit netværk."
@@ -1664,20 +1671,20 @@ msgstr "Brud på fællesskabsregler"
msgid "Browse custom feeds"
msgstr "Se tilpassede feeds"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "Se flere konti"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Se flere feeds under Udforsk"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Se flere forslag"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Se flere forslag under Udforsk"
@@ -1770,8 +1777,8 @@ msgstr "Kamera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Annuller søgning"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Kan ikke interagere med en blokeret bruger"
@@ -1901,9 +1908,9 @@ msgstr "Ændringer blev gemt"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Chat"
@@ -1989,7 +1996,7 @@ msgstr "Vælg metode til domæneverifikation"
msgid "Choose Feeds"
msgstr "Vælg feeds"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Vælg for mig"
@@ -2096,6 +2103,7 @@ msgstr "Hyp 🐴 hyp 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Hyp 🐴 hyp 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Luk GIF-dialog"
msgid "Close image"
msgstr "Luk billede"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Luk billedviser"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr "Luk velkomstdialog"
msgid "Closes password update alert"
msgstr "Lukker besked om opdatering af adganskode"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Lukker skrivefelt og kasserer udkast til opslag"
@@ -2242,12 +2251,12 @@ msgstr "Afslut velkomst og kom i gang med at bruge din konto"
msgid "Complete the challenge"
msgstr "Løs opgaven"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Skriv nyt opslag"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Skriv opslag på op til {0, plural, one {}other {# tegn}}"
@@ -2255,7 +2264,11 @@ msgstr "Skriv opslag på op til {0, plural, one {}other {# tegn}}"
msgid "Compose reply"
msgstr "Skriv svar"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Komprimerer video..."
@@ -2263,7 +2276,6 @@ msgstr "Komprimerer video..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Konfigurer filtreringsindstillinger for kategorien: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "Konfigurer livebegivenhedsbanner"
@@ -2272,8 +2284,8 @@ msgstr "Konfigurer livebegivenhedsbanner"
msgid "Configured in <0>moderation settings0>."
msgstr "Konfigureres i <0>moderationsindstillinger0>"
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "Kontakter importeret"
msgid "Contacts removed"
msgstr "Kontakter fjernet"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Indhold og medier"
@@ -2389,7 +2401,7 @@ msgstr "Opfordring til eller afbildning af selvskade"
msgid "Content Warning"
msgstr "Indholdsadvarsel"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Indholdsadvarsel"
@@ -2401,7 +2413,7 @@ msgstr "Baggrund for kontekstmenu, klik for at lukke menuen."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Fortsæt"
@@ -2420,7 +2432,7 @@ msgstr "Fortsæt tråd..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "Kunne ikke følge alle fundne venner. {0}"
msgid "Could not leave chat"
msgstr "Kunne ikke forlade chat"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Kunne ikke indlæse feed"
@@ -2643,8 +2655,8 @@ msgstr "Opret en QR-kode til en startpakke"
msgid "Create a starter pack"
msgstr "Opret en startpakke"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Opret en startpakke"
@@ -2654,12 +2666,12 @@ msgstr "Opret en startpakke for mig"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Opret endnu en"
msgid "Create moderation list"
msgstr "Opret moderationsliste"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Opret ny konto"
@@ -2772,7 +2784,7 @@ msgstr "Fødselsdato"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Deaktiver konto"
@@ -2871,7 +2883,7 @@ msgstr "Slet min konto"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Slet opslag"
@@ -2981,7 +2993,7 @@ msgstr "Deaktiver citatopslag af dette opslag"
msgid "Disable replies entirely"
msgstr "Deaktiver svar fuldstændigt"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Deaktiver undertekster"
@@ -2996,8 +3008,11 @@ msgstr "Deaktiveret"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Kasser"
@@ -3006,11 +3021,12 @@ msgstr "Kasser"
msgid "Discard changes?"
msgstr "Deaktiver ændringer?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Kasser udkast?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Kasser opslag?"
@@ -3037,7 +3053,7 @@ msgstr "Luk"
msgid "Dismiss banner"
msgstr "Fjern banner"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Luk fejlbesked"
@@ -3049,11 +3065,16 @@ msgstr "Luk velkomstforløb"
msgid "Dismiss interests"
msgstr "Luk interesser"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "Fjern banner om livebegivenheder"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Luk denne sektion"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Fjern dette forslag"
@@ -3121,8 +3142,8 @@ msgstr "Bare rolig! Alle eksisterende beskeder og indstillinger er gemt og vi bl
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Tryk dobbelt eller langt på beskeden for at tilføje en reaktion"
msgid "Double tap to close the dialog"
msgstr "Tryk dobbelt for at lukke dialogen"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Tryk dobbelt for at like"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Download Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Download CAR-fil"
msgid "Doxxing"
msgstr "Privatlivskrænkelse"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Slip for at tilføje billeder"
@@ -3285,13 +3313,13 @@ msgstr "Rediger interaktionsindstillinger"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Rediger profil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Rediger profil"
@@ -3413,7 +3441,7 @@ msgstr "Aktiver push-notifikationer"
msgid "Enable quote posts of this post"
msgstr "Tillad citatopslag af dette opslag"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Aktiver undertekster"
@@ -3421,13 +3449,13 @@ msgstr "Aktiver undertekster"
msgid "Enable this source only"
msgstr "Aktiver kun denne kilde"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Aktiver populære emner"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Aktiver populære videoer i dit Discover-feed"
@@ -3464,7 +3492,7 @@ msgstr "Indtast et ord eller tag"
msgid "Enter code"
msgstr "Indtast kode"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Åbn i fuld skærm"
@@ -3501,7 +3529,7 @@ msgstr "Indtast din adgangskode"
msgid "Enter your username and password"
msgstr "Indtsat dit brugernavn og din adgangskode"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Åbner i fuld skærm"
@@ -3509,7 +3537,7 @@ msgstr "Åbner i fuld skærm"
msgid "Entertainment"
msgstr "Underholdning"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Fejl"
@@ -3570,7 +3598,7 @@ msgstr "Udelad brugere, du følger"
msgid "Excludes users you follow"
msgstr "Anvendes ikke på brugere, du følger"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Forlad fuld skærm"
@@ -3578,11 +3606,7 @@ msgstr "Forlad fuld skærm"
msgid "Exits account deletion process"
msgstr "Afbryder kontosletning"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Lukker billedvisning"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Udvid alt-tekst"
@@ -3598,11 +3622,11 @@ msgstr "Udvid eller sammenklap det fulde opslag, du besvarer"
msgid "Expand post text"
msgstr "Udvid opslagets tekst"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Udvider eller sammenklapper opslagets tekst"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Forventede, at URI henviste til et dataelement"
@@ -3639,7 +3663,7 @@ msgstr "Pornografiske billeder."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Udforsk"
@@ -3657,8 +3681,8 @@ msgstr "Eksporter mine data"
msgid "Export My Data"
msgstr "Eksport mine data"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Eksterne medier"
@@ -3730,7 +3754,7 @@ msgstr "Sletning af opslag fejlede, prøv igen"
msgid "Failed to delete starter pack"
msgstr "Sletning af startpakke fejlede"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "Kunne ikke følge foreslåede konti, prøv igen"
@@ -3829,6 +3853,10 @@ msgstr "Kunne ikke fjerne verifikation"
msgid "Failed to resolve location. Please try again."
msgstr "Kunne ikke bestemme din lokation. Prøv igen senere."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Feed"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Feed af {0}"
@@ -3941,7 +3970,7 @@ msgstr "Feed utilgængeligt"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Kontakt"
@@ -3958,7 +3987,7 @@ msgstr "Feedback blev sendt feedets ejer"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Feeds"
@@ -4008,6 +4037,10 @@ msgstr "Begræns, hvem du kan modtage notifikationer fra"
msgid "Finalizing"
msgstr "Afslutter"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Endelig! Hold styr på opslag, der er relevante for dig. Gem dem og find dem let igen senere."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Find mine venner"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Find personer, du kan følge"
@@ -4098,19 +4131,19 @@ msgstr "Fokuser kodeindtastning"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Følg"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Følg {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Følg {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Følg konto"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Følg konto"
msgid "Follow all"
msgstr "Følg alle"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Følg alle konti"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Følg tilbage"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Fulgte alle konti!"
@@ -4195,8 +4228,8 @@ msgstr "Følgere, du kender"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Følger"
msgid "Following {0}"
msgstr "Følger {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Følger {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Indstillinger for følgerfeed"
@@ -4264,7 +4297,7 @@ msgstr "Af sikkerhedsgrunde vil du ikke få dette vist denne igen. Hvis du miste
msgid "For the best experience, we recommend using the theme font."
msgstr "For den bedste oplevelse anbefaler vi at bruge temaskrifttypen."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Til dig"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Fra <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Generer en startpakke"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Få hjælp"
@@ -4376,10 +4409,15 @@ msgstr "Bliv notificeret, når nogen laver opslag"
msgid "Get started"
msgstr "Kom i gang"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Sæt ansigt på din profil"
@@ -4394,12 +4432,12 @@ msgstr "Forherligelse af vold"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Gå tilbage"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "Din konto er i øjeblikket spærret for at gå live"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Vold"
@@ -4592,7 +4630,7 @@ msgstr "Gemmes af Bluesky i 7 dage for at forhindre misbrug og slettes herefter"
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Hjælp"
@@ -4632,9 +4670,9 @@ msgstr "Skjult liste"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Skjul brugerliste"
msgid "Hide verification badges"
msgstr "Vis verifikationsskilte"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Skjuler indholdet"
@@ -4760,9 +4798,9 @@ msgstr "Vent lidt! Vi udruller gradvist adgang til video, og du er stadig i kø.
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Forside"
@@ -4819,7 +4857,7 @@ msgstr "Jeg forstår"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "Jeg er på Bluesky som {0} – kom og find mig! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Hvis alt-tekst er for lang, slår dette udvidet tilstand til/fra"
@@ -4872,7 +4910,7 @@ msgstr "Hvis du vil begrænse, hvem der kan modtage notifikationer om din egen k
msgid "If you're a developer, you can host your own server."
msgstr "Hvis du er udvikler, kan du køre din egen server."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Hvis du vil skifte dit handle eller din e-mail, skal du gøre det, før du deaktiverer kontoen."
@@ -4996,6 +5034,10 @@ msgstr "Interaktionsindstillinger"
msgid "Introducing activity notifications"
msgstr "Vi præsenterer: Aktivitetsnotifikationer"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "Ny feature: Find venner via kontakter"
@@ -5089,7 +5131,7 @@ msgstr "Der er kun <0>{0} 0>lige nu! Føj flere personer til din startpakke ve
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Lige nu er der kun dig! Føj flere personer til din startpakke ved at søge herover."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "Job-ID: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Hold mig opdateret"
msgid "KWS website"
msgstr "KWS hjemmeside"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Mærkat tilføjet af {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Mærkat tilføjet af forfatteren."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Mærkater"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Mærkater tilføjet"
@@ -5218,8 +5260,8 @@ msgstr "Læs mere om at importere kontakter"
msgid "Learn more about self hosting your PDS."
msgstr "Læs mere om at hoste din egen PDS."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Læs mere om den moderation, der er anvendt på dette indhold"
@@ -5231,7 +5273,7 @@ msgstr "Læs mere om disse ændringer og om, hvordan du kan give din mening til
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Læs mere om disse ændringer og om, hvordan du kan give din mening til kende, i vores blogindlæg."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Læs mere om denne advarsel"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "Læs mere under <0>kontoindstillinger.0>"
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Læs mere."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Forlad"
@@ -5286,7 +5328,7 @@ msgstr "Forlader Bluesky"
msgid "left to go."
msgstr "foran dig i køen."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Lad mig vælge"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Like"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Like ({0, plural, one {# like} other {# likes}})"
@@ -5380,7 +5422,7 @@ msgstr "Likes af dine videredelinger"
msgid "Likes of your reposts notifications"
msgstr "Notifikationer ved videredeling af videredelinger"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Likes af dette opslag"
@@ -5474,7 +5516,7 @@ msgstr "Liste ikke længere skjult"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Lister"
@@ -5496,10 +5538,20 @@ msgstr "LIVE"
msgid "Live event happening now: {0}"
msgstr "Livebegivenhed foregår nu: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "Livebegivenhed blev skjult"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "Livebegivenhedsindstillinger"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "Livebegivenhed ikke længere skjult"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "Livebegivenheder vises indimellem, når der sker noget spændende. Hvis du ønsker det, kan du skjule enten denne ene begivenhed eller alle begivenheder fra dette sted i appen."
@@ -5524,11 +5576,11 @@ msgstr "Indlæs flere"
msgid "Load more suggested feeds"
msgstr "Indlæs flere foreslåede feeds"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Indlæs nye notifikationer"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo af @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo af <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Opret en for mig"
msgid "Make sure this is where you intend to go!"
msgstr "Tjek, at det virkelig er dette website, du ønsker at besøge!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Adminstrer gemte feeds"
@@ -5638,7 +5690,16 @@ msgstr "Måske senere"
msgid "Media"
msgstr "Medier"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Medier, der kan virke stødende eller upassende for visse personer."
@@ -5653,7 +5714,7 @@ msgstr "omtalte brugere"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Omtaler"
@@ -5716,6 +5777,10 @@ msgstr "Diverse notifikationer"
msgid "Misleading"
msgstr "Misvisende"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "Flere sprog..."
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Film"
msgid "Music"
msgstr "Musik"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Gå til startpakke"
msgid "Navigates to the next screen"
msgstr "Går til næste skærmbillede"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Går til din profil"
@@ -5983,6 +6049,7 @@ msgstr "Ny e-mailadresse"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Ny feature"
@@ -6018,12 +6085,12 @@ msgstr "Nye beskeder"
msgid "New password"
msgstr "Ny adgangskode"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Nyt opslag"
@@ -6085,7 +6152,7 @@ msgstr "Nyheder"
msgid "Next"
msgstr "Næste"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Næste billede"
@@ -6114,6 +6181,10 @@ msgstr "Ingen tilpassede feeds endnu"
msgid "No DNS Panel"
msgstr "Ingen DNS-adgang"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Intet udløbstidspunkt angivet"
@@ -6136,7 +6207,7 @@ msgstr "Intet billede"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Ingen likes endnu."
@@ -6150,7 +6221,7 @@ msgstr "Ingen lister"
msgid "No longer following {0}"
msgstr "Følger ikke længere {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "Ingen medier endnu"
@@ -6195,7 +6266,7 @@ msgstr "Ingen opslag endnu"
msgid "No quotes yet"
msgstr "Ingen citater endnu"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "Ingen svar endnu"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Intet resultat"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Ingen resultater"
@@ -6238,7 +6309,7 @@ msgstr "Ingen resultater."
msgid "No search results found for \"{search}\"."
msgstr "Ingen søgeresultater fundet for \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "Ingen startpakker endnu"
@@ -6247,7 +6318,7 @@ msgstr "Ingen startpakker endnu"
msgid "No thanks"
msgstr "Nej tak"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "Ingen videoopslag endnu"
@@ -6298,6 +6369,10 @@ msgstr "Følges ikke af nogen, du følger"
msgid "Not Found"
msgstr "Ikke fundet"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Note vedr. deling"
@@ -6321,7 +6396,7 @@ msgstr "Endnu ingen gemte"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Notifikationindstillinger"
@@ -6349,10 +6424,10 @@ msgstr "Notifikationslyde"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Notifikationer"
@@ -6368,8 +6443,8 @@ msgstr "nu"
msgid "Now"
msgstr "Nu"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Nøgenhed"
@@ -6390,7 +6465,7 @@ msgstr "Åh nej!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Okay"
@@ -6417,23 +6492,23 @@ msgstr "på<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Nulstil velkomst"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "En eller flere GIF'er mangler alt-tekst."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "En eller flere billeder mangler alt-tekst."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "En eller flere af de valgte filer er ikke understøttet."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "En eller flere af de valgte filer er for stor. Den maksimale størrelse er 100 MB."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Et eller flere videoer mangler alt-tekst."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ups, noget gik galt!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ups!"
msgid "Open avatar creator"
msgstr "Åbn avatarbygger"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "Åbn kamera"
@@ -6485,12 +6560,16 @@ msgstr "Åbn kamera"
msgid "Open conversation options"
msgstr "Åbn samtaleindstillinger"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Åbn navigation"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Åbn emojivælger"
@@ -6557,7 +6636,7 @@ msgstr "Åbn systemlog"
msgid "Opens {0} feed"
msgstr "Åbner feedet {0}"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Åbner en dialog, hvor du kan tilføje en indholdsadvarsel til dit opslag"
@@ -6589,25 +6668,25 @@ msgstr "Åbner handleskiftdialog"
msgid "Opens composer"
msgstr "Åbner skrivefelt til nyt opslag"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "Åbner enhedens kamera"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "Åbner enhedens mediabibliotek for valg af op til {MAX_IMAGES, plural, one {}other {# billeder}}, eller en enkelt video eller GIF."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Åbner emojivælger"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Åbner formular til oprettelse af en ny Bluesky-konto"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Åbner formular til at logge ind på din eksisterende Bluesky-konto"
@@ -6620,7 +6699,7 @@ msgstr "Åbner GIF-vælger"
msgid "Opens helpdesk in browser"
msgstr "Åbner hjælpeside i browser"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "Åbner billedvælger"
@@ -6640,10 +6719,14 @@ msgstr "Åbner formular til nulstilling af adgangskode"
msgid "Opens post language settings"
msgstr "Åbner opslagets sprogindstillinger"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "Åbner skrivefelt for nyt opslag"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "OTA-status: Ingen tilgængelig"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Andet"
@@ -6763,13 +6846,13 @@ msgstr "Adgangskode opdateret!"
msgid "Password updated!"
msgstr "Adgangskode opdateret!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pause"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Stop afspilning"
@@ -6829,7 +6912,7 @@ msgstr "Telefonnummer bekræftet"
msgid "Photography"
msgstr "Fotografi"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Billeder for voksne."
@@ -6874,9 +6957,9 @@ msgstr "Fastgjorte feeds"
msgid "Pinned to your feeds"
msgstr "Fastgjort til dine feeds"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Afspil"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Afspil {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Afspil video"
@@ -6893,11 +6976,11 @@ msgstr "Afspil video"
msgid "Play Video"
msgstr "Afspil video"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Starter/stopper GIF-animationen"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Starter/stopper videoen"
@@ -6909,7 +6992,7 @@ msgstr "Afspiler GIF'en"
msgid "Plays the video"
msgstr "Afspiller videoen"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Vælg de mærkater, der beskriver det indhold, du er ved at slå op."
@@ -7066,31 +7149,31 @@ msgstr "Skriv din besked herunder:"
msgid "Politics"
msgstr "Politik"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Porno"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Opslag"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Slå op"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Lav et fotoopslag"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Lav et videoopslag"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Slå alle op"
@@ -7217,7 +7300,7 @@ msgstr "Tryk for at vise følgere af denne konto, som du også følger"
msgid "Preview"
msgstr "Forhåndsvisning"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Forrige billede"
@@ -7257,8 +7340,8 @@ msgstr "Privatlivs- og sikkerhedsindstillinger"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Privatlivspolitik"
@@ -7266,7 +7349,11 @@ msgstr "Privatlivspolitik"
msgid "Privacy violation of a minor"
msgstr "Privatlivskrænkelse af en mindreårig"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Behandler video..."
@@ -7280,10 +7367,10 @@ msgstr "Behandler..."
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Offentlige lister over brugere, der kan skjules eller blokeres på én gang."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Udgiv opslag"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Udgiv opslag"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Udgiv svar"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Udgiv svar"
@@ -7360,6 +7447,7 @@ msgstr "Notifikationer ved citater"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Citer opslag"
@@ -7385,7 +7473,7 @@ msgstr "Citatopslag ikke tilladt"
msgid "Quotes"
msgstr "Citater"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Citater af dette opslag"
@@ -7424,11 +7512,11 @@ msgstr "læs om, hvordan du bruger søgefiltre"
msgid "Read blog post"
msgstr "Læs blogindlæg"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Læs mindre"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Læs mere"
@@ -7720,13 +7808,13 @@ msgstr "Svar ikke tilladt"
msgid "Replies to this post are disabled."
msgstr "Svar til dette opslag er ikke tilladt."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Besvar"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Svar ({0, plural, one {# svar} other {# svar}})"
@@ -7892,7 +7980,7 @@ msgstr "Videredelt af dig"
msgid "Reposts"
msgstr "Videredelinger"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Videredelinger af dette opslag"
@@ -7996,14 +8084,14 @@ msgstr "Prøver at gentage den seneste handling, der fejlede"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Gå til forrige side"
msgid "Returns to home page"
msgstr "Vender tilbage til forsiden"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Går til forrige side"
@@ -8063,7 +8151,7 @@ msgstr "Går tilbage til det forrige trin"
msgid "Save"
msgstr "Gem"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Gem"
@@ -8076,9 +8164,26 @@ msgstr "Gem fødselsdato"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Gem ændringer"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Føj til mine feeds"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Gemte"
@@ -8155,7 +8260,7 @@ msgstr "Rul til toppen"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Søg"
@@ -8164,7 +8269,7 @@ msgstr "Søg"
msgid "Search @{0}'s posts"
msgstr "Søg i opslag fra @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Søg efter navn eller interesse"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Søg feeds"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "Søgning efter \"{interestsDisplayName}\""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "Søgning efter \"{interestsDisplayName}\" (aktiv)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Søg opslag"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Søg efter profiler"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Søg..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Søg efter profiler"
@@ -8283,12 +8388,12 @@ msgstr "Se #{tag}-indlæg af bruger"
msgid "See jobs at Bluesky"
msgstr "Se jobs hos Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Se flere"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "Se flere foreslåede profiler"
@@ -8456,7 +8561,7 @@ msgstr "Vælg dit foretrukne sprog for oversættelser i dit feed"
msgid "Select your preferred notification channels"
msgstr "Vælg dine foretrukne notifikationskanaler"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "Valg af flere medietyper er ikke understøttet."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Send e-mail"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Send feedback"
@@ -8566,7 +8671,7 @@ msgstr "Angiver e-mail til nulstilling af adgangskode"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Indstillinger"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Indstillinger blev gemt"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Seksuel aktivitet eller erotisk nøgenhed"
@@ -8634,7 +8739,7 @@ msgstr "Erotik"
msgid "Share"
msgstr "Del"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Del"
@@ -8712,13 +8817,13 @@ msgstr "Del dit yndlingsfeed!"
msgid "Shared Preferences Tester"
msgstr "Test af delte indstillinger"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Vis"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Vis alt-tekst"
@@ -8820,7 +8925,7 @@ msgstr "Vis advarsel og filtrer fra feeds"
msgid "Show when you’re live"
msgstr "Vis, når nu er live"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Viser, hvornår dette opslag blev oprettet"
@@ -8828,8 +8933,8 @@ msgstr "Viser, hvornår dette opslag blev oprettet"
msgid "Shows other accounts you can switch to"
msgstr "Viser andre konti, du kan skifte til"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Viser indholdet"
@@ -8842,14 +8947,14 @@ msgstr "Viser indholdet"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Indlogning krævet"
msgid "Signed in as @{0}"
msgstr "Logget ind som @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Lignende konti"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "Spring kontaktdeling over og fortsæt til appen"
msgid "Skip introduction and start using your account"
msgstr "Spring introduktionen over og kom i gang med din konto"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Spring til næste trin"
@@ -8967,7 +9068,7 @@ msgstr "Softwareudvikling"
msgid "Some of your verifications are invalid."
msgstr "Nogle af dine verifikationer er ugyldige."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Nogle andre feeds, du måske kan lide"
@@ -8994,7 +9095,7 @@ msgstr "Noget gik galt"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Noget gik galt, prøv igen"
@@ -9020,7 +9121,7 @@ msgstr "Noget gik galt. Prøv igen."
msgid "Something wrong? Let us know."
msgstr "Noget galt? Fortæl os om det."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Beklager, vi kan ikke indlæse forslag lige nu."
@@ -9113,7 +9214,11 @@ msgstr "Startpakker"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Startpakker lader dig let dele dine foretrukne feeds og personer med dine venner."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "Startpakker lader dig dele dine foretrukne feeds og konto med dine venner."
@@ -9142,7 +9247,7 @@ msgstr "Storybook"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:180
msgid "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream."
-msgstr ""
+msgstr "Streamer du på Twitch? Aktiver livetilstand på Bluesky for at tilføje en markering til din avatar. Når man trykker på den, kommer man direkte til din stream."
#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:119
#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:125
@@ -9181,11 +9286,11 @@ msgstr "Abonner på @{0} for at bruge disse labels:"
msgid "Subscribe to account activity"
msgstr "Abonner på kontoaktivitet"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Abonner på mærkningstjeneste"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Abonner på denne mærkningstjeneste"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Foreslåede konti"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Foreslået til dig"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Seksuelle undertoner"
@@ -9354,8 +9459,8 @@ msgstr "Tjenestevilkår"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Tjenestevilkår"
@@ -9403,12 +9508,12 @@ msgstr "Det brugernavn er allerede taget"
msgid "That's all, folks!"
msgstr "Det var alt, folkens!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Det var alt"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Kontoen vil være i stand til at interagere med dig, når du fjerner blokering."
@@ -9447,7 +9552,7 @@ msgstr "Discover-feedet"
msgid "The Discover feed now knows what you like"
msgstr "Discover-feedet ved nu, hvad du synes om"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Oplevelsen er bedre i appen. Download Bluesky nu, så fortsætter vi, hvor du slap."
@@ -9527,7 +9632,7 @@ msgstr "Tema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "Der er en grænse for, hvor tit du kan ændre din fødselsdato. Du skal måske vente en dag eller to, før du opdaterer igen."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Der er ingen udløbsdato for en deaktiveret konto. Du kan vende tilbage når som helst."
@@ -9711,6 +9816,10 @@ msgstr "Denne indhold kan ikke ses uden en Bluesky-konto."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Denne samtale er med en slettet eller deaktiveret konto. Tryk for valgmuligheder"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Denne e-mail er allerede tilknyttet din konto."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Dette feed er tomt! Prøv at følge flere bruger eller juster dine sprogindstillinger."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Dette feed er tomt."
@@ -9798,7 +9907,7 @@ msgstr "Denne liste er tom."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Denne moderationstjeneste er utilgængelig. Se herunder for flere oplysninger. Kontakt os, hvis dette problem varer ved."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Dette opslag er dateret <0>{0}0>, men det blev først oprettet på Bluesky <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr "Dette opslag er blevet slettet af dets forfatter"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Dette opslag vil blive skjult fra feeds og tråde. Denne handling kan ikke fortrydes."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Dette opslags forfatter har ikke tilladt citatopslag."
@@ -9834,7 +9943,7 @@ msgstr "Dette svar vil blive vist i en skjult sektion nederst i din tråd og vil
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Denne tjeneste har ikke angivet tjenestevilkår eller privatlivspolitik."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "Denne tjeneste er ikke understøttet, mens Live-funktionen er i beta. Tilladte tjenester: {formatted}."
@@ -9900,8 +10009,8 @@ msgstr "Dette vil fjerne dit opslag fra dette citatopslag for alle brugere og er
msgid "Thread options"
msgstr "Trådindstillinger"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Indstillinger for tråde"
@@ -9951,7 +10060,7 @@ msgstr "I dag"
msgid "Toggle to enable or disable adult content"
msgstr "Tryk for at aktivere eller deaktivere voksenindhold"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Slår lyden til/fra"
@@ -9988,8 +10097,8 @@ msgstr "Emne"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Oversæt"
@@ -10000,11 +10109,11 @@ msgstr "Trævisning"
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:49
msgid "Trending"
-msgstr "Trends"
+msgstr "Populære emner"
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:56
msgid "Trending options"
-msgstr ""
+msgstr "Indstillinger for populære emner"
#: src/components/interstitials/TrendingVideos.tsx:86
msgid "Trending Videos"
@@ -10091,15 +10200,15 @@ msgstr "Utilgængelig feedinformation"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Bloker ikke længere"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Bloker ikke længere"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Bloker ikke længere konto"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Bloker ikke længere konto?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Fortryd"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Fortryd"
@@ -10142,7 +10255,7 @@ msgstr "Fortryd deling"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Fortryd deling ({0, plural, one {# deling} other {# delinger}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Følg ikke længer {0}"
@@ -10151,7 +10264,7 @@ msgstr "Følg ikke længer {0}"
msgid "Unfollow account"
msgstr "Følg ikke længere konto"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Ophører med at følge brugeren"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Fjern like"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Fjern ({0, plural, one {# like} other {# likes}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Skjul ikke længere liste"
msgid "Unmute thread"
msgstr "Skjul ikke længere tråd"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Skjul ikke længere video"
@@ -10276,7 +10389,7 @@ msgstr "Frigjorde liste"
msgid "Unsnooze email reminder"
msgstr "Udsæt ikke længere påmindelsen"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Afmeld abonnement"
@@ -10285,7 +10398,7 @@ msgstr "Afmeld abonnement"
msgid "Unsubscribe from list"
msgstr "Afmeld abonnement på liste"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Afmeld abonnement på denne mærkningstjeneste"
@@ -10293,7 +10406,7 @@ msgstr "Afmeld abonnement på denne mærkningstjeneste"
msgid "Unsubscribed from list"
msgstr "Abonnement på liste afmeldt"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Ikkeunderstøttet videotype: {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "Upload fra filer"
msgid "Upload from Library"
msgstr "Upload fra bibliotek"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Uploader billeder..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Uploader forhåndsvisning af link..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Uploader video..."
@@ -10389,8 +10506,8 @@ msgstr "Brug standardudbyder"
msgid "Use in-app browser"
msgstr "Brug browser i app"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Brug appens indbyggede browser til at åbne links"
@@ -10445,6 +10562,10 @@ msgstr "Bruger blokerer dig"
msgid "User list by {0}"
msgstr "Brugerliste af {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Brugerliste af dig"
@@ -10597,8 +10718,8 @@ msgstr "Bekræfter ..."
msgid "Version {0}"
msgstr "Version {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Video"
@@ -10614,20 +10735,24 @@ msgstr "Videofeed"
msgid "Video from {0}: {text}"
msgstr "Videofeed fra {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Computerspil"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Video er sat på pause"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Video afspiller"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Video ikke fundet."
@@ -10635,11 +10760,11 @@ msgstr "Video ikke fundet."
msgid "Video settings"
msgstr "Videoindstillinger"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Video uploadet"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Video: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videoer"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "Videoer skal være højst 3 minutter lange."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Vis"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "{0}s avatar"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Se {0}s profil"
@@ -10708,7 +10833,7 @@ msgstr "Se flere"
msgid "View more trending videos"
msgstr "Se flere populære videoer"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "Vis opslag"
@@ -10788,7 +10913,7 @@ msgstr "Voldeligt eller truende indhold"
msgid "Visit site"
msgstr "Besøg website"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Besøg dine notifikationsindstillinger"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Vi kan desværre ikke starte alderstjek for din konto. <0>Kontakt support0> for hjælp."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Vi har netværksproblemer, prøv igen."
@@ -10968,7 +11093,7 @@ msgstr "Beklager, men vi kunne ikke indlæse dine skjulte ord. Prøv igen."
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Beklager, men din søgning kunne ikke gennemføres. Prøv igen om lidt."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Beklager! Det opslag, du svarer på, er blevet slettet."
@@ -10977,7 +11102,7 @@ msgstr "Beklager! Det opslag, du svarer på, er blevet slettet."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Beklager! Vi kan ikke finde den side, du leder efter."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Beklager! Du kan kun abonnere på 20 mærkningstjenester, og du har nået denne grænse."
@@ -11018,10 +11143,9 @@ msgstr "Hvad interesserer du dig for?"
msgid "What do you want to call your starter pack?"
msgstr "Hvad vil du kalde din startpakke?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Hvad sker der?"
@@ -11097,6 +11221,14 @@ msgstr "Hvorfor skal denne bruger gennemgås?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Vil du blokere denne bruger og/eller slette denne samtale?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Skriv en besked"
msgid "Write a post"
msgstr "Skriv et opslag"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Skriv dit opslag"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Skriv dit svar"
@@ -11133,8 +11265,8 @@ msgstr "www.minlivestream.tv"
msgid "Yes"
msgstr "Ja"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Ja, deaktiveret"
@@ -11188,7 +11320,7 @@ msgstr "Du er i kø."
msgid "You are Live"
msgstr "Du er live"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Du er ikke længere live"
@@ -11200,7 +11332,7 @@ msgstr "Du har ikke adgang til at uploade videoer."
msgid "You are not following anyone yet"
msgstr "Du følger endnu ingen"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Du er nu live!"
@@ -11255,11 +11387,11 @@ msgstr "Du kan nu vælge at blive notificeret om opslag fra udvalgte personer. H
msgid "You can now sign in with your new password."
msgstr "Du kan nu logge ind med din nye adgangskode."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "Du kan kun vælge én GIF ad gangen."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "Du kan kun vælge én video ad gangen."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Du kan genaktivere din konto ved at logge ind. Andre brugere vil igen kunne se din profil og dine opslag."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "Du kan vælge op til {MAX_IMAGES, plural, one {}other {# billeder}} i alt."
@@ -11317,7 +11449,7 @@ msgstr "Du har blokeret denne bruger"
msgid "You have blocked this user. You cannot view their content."
msgstr "Du har blokeret denne bruger. Du kan ikke se deres indhold."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Du har deaktiveret alle notifikationer ved svar, citat og omtale, så denne fane vil ikke længere blive opdateret. For at ændre dette, gå til <0>notifikationsindstillingerne0>."
@@ -11376,6 +11508,14 @@ msgstr "Du har nu bekræftet din e-mailadresse. Du kan lukke denne dialog."
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Du har midlertidigt nået grænsen for videouploads. Prøv igen senere."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Du har endnu ikke oprettet en startpakke!"
@@ -11437,7 +11577,7 @@ msgstr "Du skal være mindst {MIN_ACCESS_AGE} år gammel for at oprette en konto
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Du skal være mindst 13 år gammel for at bruge Bluesky. Læs mere i vores <0>tjenestevilkår0>."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Du skal følge mindst syv andre konti for at oprette en startpakke."
@@ -11449,7 +11589,7 @@ msgstr "Du skal gennemføre alderstjek for at tilgå dette skærmbillede."
msgid "You must grant access to your photo library to save a QR code"
msgstr "Du skal give adgang til dit fotobibliotek for at gemme en QR-kode"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "Du skal give adgang til dit mediebibliotek."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Du er i kø"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Du er logget ind med en appadgangskode. Log ind med din primære adgangskode for at deaktivere din konto."
@@ -11589,7 +11729,7 @@ msgstr "Du har nået din daglige grænse for videouploads (for mange bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Du har nået din daglige grænse for videouploads (for mange videoer)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Du er løbet tør for videoer at se. Måske er det på tide at holde en pause?"
@@ -11625,7 +11765,7 @@ msgstr "Din klage er blevet afsendt. Hvis du får medhold i din klage, vil du f
msgid "Your birth date"
msgstr "Din fødselsdato"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Din browser understøtter ikke dette videoformat. Prøv med en anden browser."
@@ -11692,8 +11832,8 @@ msgstr "Dit fulde handle bliver <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Dine interesser"
@@ -11731,11 +11871,11 @@ msgstr "Din adgangskode er nu ændret! Fremover skal du bruge din nye adgangskod
msgid "Your password must be at least 8 characters long."
msgstr "Din adgangskode skal bestå af mindst 8 tegn."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "Dit opslag blev sendt"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "Dine opslag blev sendt"
@@ -11752,11 +11892,11 @@ msgstr "Dit profilbillede"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "Dit profilbillede omgivet af koncentriske cirkler af andre brugeres profilbilleder"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Din profil, dine opslag, feeds og lister vil ikke længere kunne ses af andre Bluesky-brugere. Du kan genaktivere din konto når som helst ved at logge ind."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "Dit svar blev sendt"
diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po
index 775932d81b..1e730b1075 100644
--- a/src/locale/locales/de/messages.po
+++ b/src/locale/locales/de/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: de\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 21:40\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# Repost} other {# Reposts}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# Sekunde} other {# Sekunden}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {#Mo} other {#Mo}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, one {1 weiterer Post} other {# weitere Posts}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {Follower} other {Follower}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {Folge ich} other {Folge ich}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {Gefällt mir} other {Gefällt mir}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {Gefällt mir} other {Gefällt mir}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {Post} other {Posts}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {Zitat} other {Zitate}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {Repost} other {Reposts}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {Speicherung} other {Speicherungen}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (Account)"
@@ -189,11 +193,11 @@ msgstr "{0} hat mit {1} reagiert"
msgid "{0} reacted {1} to {2}"
msgstr "{0} hat mit {1} auf {2} reagiert"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, ein Feed von {1}, mit „Gefällt mir“ markiert von {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, eine Liste von {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {# Nutzer sind}} beigetreten!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# Minute} other {# Minuten}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1} 1>und {2, plural, one {# weitere Person} other {# weitere Personen}} sind in deinem Startpaket enthalten"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {Follower} other {Follower}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {Folge ich} other {Folge ich}}"
@@ -580,6 +584,11 @@ msgstr "Ein Screenshot eines Post mit einer neuen Schaltfläche neben der Schalt
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Ein Screenshot einer Profilseite mit einem Glocken-Symbol neben dem Folgen-Button, das auf die neue Funktion für Aktivitätsmitteilungen hinweist."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Füge {0} weitere hinzu, um fortzufahren"
msgid "Add {displayName} to starter pack"
msgstr "Füge {displayName} zum Startpaket hinzu"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Inhaltswarnung hinzufügen"
@@ -752,13 +761,13 @@ msgstr "Alt-Text hinzufügen (optional)"
#: src/view/shell/desktop/LeftNav.tsx:262
#: src/view/shell/desktop/LeftNav.tsx:266
msgid "Add another account"
-msgstr "Füge einen weiteren Account hinzu"
+msgstr "Weiteren Account hinzufügen"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Einen weiteren Post hinzufügen"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Einen weiteren Post zum Thread hinzufügen"
@@ -776,12 +785,12 @@ msgstr "App-Passwort hinzufügen"
msgid "Add emoji reaction"
msgstr "Emoji-Reaktion hinzufügen"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Bild hinzufügen"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Medien zum Post hinzufügen"
@@ -871,7 +880,7 @@ msgstr "Zusätzliche Angaben (max. 1000 Zeichen)"
msgid "Additional details (limit 300 characters)"
msgstr "Zusätzliche Details (max. 300 Zeichen)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Für Erwachsene"
@@ -879,10 +888,10 @@ msgstr "Für Erwachsene"
msgid "Adult content"
msgstr "Inhalte für Erwachsene"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Inhalte für Erwachsene"
@@ -894,8 +903,8 @@ msgstr "Inhalte für Erwachsene können nur über das Web unter <0>bsky.app0>
msgid "Adult content is disabled."
msgstr "Inhalte für Erwachsene sind deaktiviert."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Kennzeichnungen für Inhalte für Erwachsene"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Alle"
@@ -1015,9 +1024,9 @@ msgstr "Hast du bereits einen Account?"
#: src/screens/Login/ChooseAccountForm.tsx:44
msgid "Already signed in as @{0}"
-msgstr "Bereits angemeldet als @{0}"
+msgstr "Bereits als @{0} eingeloggt"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Alt-Text"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Alt-Text"
@@ -1059,7 +1068,7 @@ msgstr "Eine E-Mail wurde an {0} gesendet. Sie enthält einen Bestätigungscode,
msgid "An error has occurred"
msgstr "Ein Fehler ist aufgetreten"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Ein Fehler ist aufgetreten"
@@ -1067,7 +1076,7 @@ msgstr "Ein Fehler ist aufgetreten"
msgid "An error occurred while compressing the video."
msgstr "Beim Komprimieren des Videos ist ein Fehler aufgetreten."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "Beim Abrufen der vorgeschlagenen Accounts ist ein Fehler aufgetreten."
@@ -1076,7 +1085,7 @@ msgstr "Beim Abrufen der vorgeschlagenen Accounts ist ein Fehler aufgetreten."
msgid "An error occurred while fetching the feed."
msgstr "Beim Abrufen des Feeds ist ein Fehler aufgetreten."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Beim Generieren deines Startpakets ist ein Fehler aufgetreten. Möchtest du es erneut versuchen?"
@@ -1088,7 +1097,7 @@ msgstr "Beim Ausblenden des Vorschlags ist ein Fehler aufgetreten. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "Beim Laden des Videos ist ein Fehler aufgetreten. Bitte versuche es später erneut."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Beim Laden des Videos ist ein Fehler aufgetreten. Bitte versuche es erneut."
@@ -1181,7 +1190,7 @@ msgstr "Tierschutz"
msgid "Animals"
msgstr "Tiere"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "Animiertes GIF"
@@ -1306,12 +1315,12 @@ msgstr "Standardmäßig empfohlene Feeds anwenden"
msgid "Apply Pull Request"
msgstr "Pull Request anwenden"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Archiviert von {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Archivierter Post"
@@ -1332,11 +1341,11 @@ msgstr "Möchtest du dieses Startpaket wirklich löschen?"
msgid "Are you sure you want to discard your changes?"
msgstr "Bist du sicher, dass du deine Änderungen verwerfen möchtest?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Bist du sicher, dass du diese Konversation verlassen möchtest?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Möchtest du diese Konversation wirklich verlassen? Deine Nachrichten werden für dich gelöscht, nicht jedoch für den anderen Teilnehmer."
@@ -1344,11 +1353,7 @@ msgstr "Möchtest du diese Konversation wirklich verlassen? Deine Nachrichten we
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Bist du sicher, dass du dies von deinen Feeds entfernen möchtest?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Bist du sicher, dass du diesen Entwurf verwerfen möchtest?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Bist du sicher, dass du diesen Post verwerfen möchtest?"
@@ -1364,7 +1369,7 @@ msgstr "Schreibst du auf <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Kunst"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Künstlerische oder nicht-erotische Nacktheit."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Videos und GIFs automatisch abspielen"
@@ -1404,11 +1409,13 @@ msgstr "Verfügbar"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Zurück"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky kann die Echtheit des angegebenen Datums nicht bestätigen."
@@ -1623,7 +1630,7 @@ msgstr "Bluesky Social Nutzungsbedingungen"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Bluesky speichert deine Kontakte als verschlüsselte Daten. Wenn du deine Kontakte entfernst, werden diese Daten sofort gelöscht."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky wählt eine Reihe von empfohlenen Accounts von Personen in deinem Netzwerk aus."
@@ -1664,20 +1671,20 @@ msgstr "Verstoß gegen die Regeln der Website"
msgid "Browse custom feeds"
msgstr "Benutzerdefinierte Feeds durchsuchen"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "Weitere Accounts durchsuchen"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Stöbere auf der Seite „Explore” in weiteren Feeds"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Weitere Vorschläge anzeigen"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Stöbere auf der Seite „Explore” nach weiteren Vorschlägen"
@@ -1770,8 +1777,8 @@ msgstr "Kamera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Suche abbrechen"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Kann nicht mit einem blockierten Nutzer interagieren"
@@ -1901,9 +1908,9 @@ msgstr "Änderungen gespeichert"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Chat"
@@ -1967,7 +1974,7 @@ msgstr "Meinen Status prüfen"
#: src/screens/Login/LoginForm.tsx:304
msgid "Check your email for a sign in code and enter it here."
-msgstr "Schau in deinem E-Mail-Postfach nach einem Anmeldecode und gib ihn hier ein."
+msgstr "Schau in deinen E-Mails nach einem Code zum Einloggen und gib ihn hier ein."
#: src/view/com/modals/DeleteAccount.tsx:213
msgid "Check your inbox for an email with the confirmation code to enter below:"
@@ -1989,7 +1996,7 @@ msgstr "Wähle eine Methode zur Domain-Verifizierung"
msgid "Choose Feeds"
msgstr "Feeds wählen"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Wähle für mich"
@@ -2096,6 +2103,7 @@ msgstr "Klipp 🐴 klapp 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Klipp 🐴 klapp 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "GIF-Dialog schließen"
msgid "Close image"
msgstr "Bild schließen"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Bildbetrachter schließen"
+msgstr "Bildansicht schließen"
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr "Willkommensfenster schließen"
msgid "Closes password update alert"
msgstr "Schließt die Passwort-Update-Benachrichtigung"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Schließt den Post-Editor und verwirft den Post-Entwurf"
@@ -2242,12 +2251,12 @@ msgstr "Schließe das Onboarding ab und nutze deinen Account"
msgid "Complete the challenge"
msgstr "Schließe die Herausforderung ab"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Neuen Post verfassen"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Verfasse Posts mit einer Länge von bis zu {0, plural, other {# Zeichen}}"
@@ -2255,7 +2264,11 @@ msgstr "Verfasse Posts mit einer Länge von bis zu {0, plural, other {# Zeichen}
msgid "Compose reply"
msgstr "Antwort verfassen"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Video wird komprimiert..."
@@ -2263,7 +2276,6 @@ msgstr "Video wird komprimiert..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Konfiguriere die Inhaltsfilterung für die Kategorie: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "Live-Event-Banner konfigurieren"
@@ -2272,8 +2284,8 @@ msgstr "Live-Event-Banner konfigurieren"
msgid "Configured in <0>moderation settings0>."
msgstr "Konfiguriert in <0>Moderationseinstellungen0>"
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "Kontakte importiert"
msgid "Contacts removed"
msgstr "Kontakte entfernt"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Inhalte und Medien"
@@ -2389,7 +2401,7 @@ msgstr "Inhalte, die Selbstverletzung fördern oder darstellen"
msgid "Content Warning"
msgstr "Inhaltswarnung"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Inhaltswarnungen"
@@ -2401,14 +2413,14 @@ msgstr "Hintergrund des Kontextmenüs; klicken, um das Menü zu schließen"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Fortfahren"
#: src/components/AccountList.tsx:135
msgid "Continue as {0} (currently signed in)"
-msgstr "Fortfahren als {0} (noch angemeldet)"
+msgstr "Als {0} fortfahren (derzeit eingeloggt)"
#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27
msgid "Continue thread"
@@ -2420,7 +2432,7 @@ msgstr "Thread fortsetzen…"
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "Nicht alle Übereinstimmungen konnten gefolgt werden. {0}"
msgid "Could not leave chat"
msgstr "Du konntest den Chat nicht verlassen"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Feed konnte nicht geladen werden"
@@ -2643,8 +2655,8 @@ msgstr "QR-Code für ein Startpaket erstellen"
msgid "Create a starter pack"
msgstr "Ein Startpaket erstellen"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Startpaket erstellen"
@@ -2654,12 +2666,12 @@ msgstr "Ein Startpaket für mich erstellen"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Ein weiteres erstellen"
msgid "Create moderation list"
msgstr "Moderationsliste erstellen"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Neuen Account erstellen"
@@ -2772,7 +2784,7 @@ msgstr "Geburtsdatum"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Account deaktivieren"
@@ -2871,7 +2883,7 @@ msgstr "Meinen Account löschen"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Post löschen"
@@ -2981,7 +2993,7 @@ msgstr "Zitate dieses Posts deaktivieren"
msgid "Disable replies entirely"
msgstr "Antworten vollständig deaktivieren"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Untertitel deaktivieren"
@@ -2996,8 +3008,11 @@ msgstr "Deaktiviert"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Verwerfen"
@@ -3006,11 +3021,12 @@ msgstr "Verwerfen"
msgid "Discard changes?"
msgstr "Änderungen verwerfen?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Entwurf verwerfen?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Post verwerfen?"
@@ -3037,7 +3053,7 @@ msgstr "Verwerfen"
msgid "Dismiss banner"
msgstr "Banner schließen"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Fehler verwerfen"
@@ -3049,11 +3065,16 @@ msgstr "Anleitung zum Einstieg schließen"
msgid "Dismiss interests"
msgstr "Interessen verwerfen"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "Live-Event-Banner schließen"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Diesen Abschnitt verwerfen"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Diesen Vorschlag verwerfen"
@@ -3121,8 +3142,8 @@ msgstr "Keine Sorge! Alle vorhandenen Nachrichten und Einstellungen werden gespe
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Doppeltippen oder lange auf die Nachricht drücken, um eine Reaktion hin
msgid "Double tap to close the dialog"
msgstr "Doppeltippen, um den Dialog zu schließen"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Doppelt tippen, um „Gefällt mir“ zu geben"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Bluesky herunterladen"
@@ -3164,6 +3185,13 @@ msgstr "CAR-Datei herunterladen"
msgid "Doxxing"
msgstr "Doxxing"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "Entwürfe"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Zum Hinzufügen Bilder ablegen"
@@ -3285,13 +3313,13 @@ msgstr "Post-Interaktionseinstellungen bearbeiten"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Profil bearbeiten"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Profil bearbeiten"
@@ -3413,7 +3441,7 @@ msgstr "Push-Mitteilungen aktivieren"
msgid "Enable quote posts of this post"
msgstr "Zitate dieses Posts aktivieren"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Untertitel aktivieren"
@@ -3421,13 +3449,13 @@ msgstr "Untertitel aktivieren"
msgid "Enable this source only"
msgstr "Nur von dieser Seite erlauben"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Angesagte Themen aktivieren"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Aktiviere angesagte Videos in deinem Discover-Feed"
@@ -3464,7 +3492,7 @@ msgstr "Gib ein Wort oder einen Tag ein"
msgid "Enter code"
msgstr "Code eingeben"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "In den Vollbildmodus wechseln"
@@ -3501,7 +3529,7 @@ msgstr "Gib dein Passwort ein"
msgid "Enter your username and password"
msgstr "Gib deinen Nutzernamen und dein Passwort ein"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Vollbildmodus aktivieren"
@@ -3509,7 +3537,7 @@ msgstr "Vollbildmodus aktivieren"
msgid "Entertainment"
msgstr "Unterhaltung"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Fehler"
@@ -3570,7 +3598,7 @@ msgstr "Nutzer ausschließen, denen du folgst"
msgid "Excludes users you follow"
msgstr "Nutzer ausgeschlossen, denen du folgst"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Vollbildmodus beenden"
@@ -3578,11 +3606,7 @@ msgstr "Vollbildmodus beenden"
msgid "Exits account deletion process"
msgstr "Verlässt den Vorgang der Accountlöschung"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Verlässt die Bildansicht"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Alt-Text erweitern"
@@ -3598,11 +3622,11 @@ msgstr "Erweitere oder reduziere den gesamten Post, auf den du antwortest"
msgid "Expand post text"
msgstr "Text des Posts ausklappen"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Text des Posts erweitern oder einklappen"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Erwartete uri, um einen Eintrag aufzulösen"
@@ -3639,7 +3663,7 @@ msgstr "Explizite sexuelle Bilder."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Entdecken"
@@ -3657,8 +3681,8 @@ msgstr "Meine Daten exportieren"
msgid "Export My Data"
msgstr "Meine Daten exportieren"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Externe Medien"
@@ -3730,7 +3754,7 @@ msgstr "Post konnte nicht gelöscht werden, bitte versuche es erneut"
msgid "Failed to delete starter pack"
msgstr "Startpaket konnte nicht gelöscht werden"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "Fehler beim Folgen aller vorgeschlagenen Accounts. Bitte versuche es erneut"
@@ -3829,6 +3853,10 @@ msgstr "Verifizierung konnte nicht entfernt werden"
msgid "Failed to resolve location. Please try again."
msgstr "Standort konnte nicht ermittelt werden. Bitte versuche es erneut."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "Fehler beim Speichern des Entwurfs"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Feed"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Feed von {0}"
@@ -3941,7 +3970,7 @@ msgstr "Feed nicht verfügbar"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Feedback"
@@ -3958,7 +3987,7 @@ msgstr "Feedback an Feed-Betreiber gesendet"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Feeds"
@@ -4008,6 +4037,10 @@ msgstr "Filtere, von wem du Mitteilungen erhalten möchtest"
msgid "Finalizing"
msgstr "Abschließen"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Endlich! Behalte Posts, die dir wichtig sind, im Auge. Speichere sie, um sie jederzeit wieder ansehen zu können."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Meine Freunde finden"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Finde Leute zum Folgen"
@@ -4098,19 +4131,19 @@ msgstr "Code-Eingabefeld fokussieren"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Folgen"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "{0} folgen"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "{handle} folgen"
@@ -4133,7 +4166,7 @@ msgstr "Account folgen"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Account folgen"
msgid "Follow all"
msgstr "Allen folgen"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Allen Accounts folgen"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Zurückfolgen"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Allen Accounts gefolgt!"
@@ -4195,8 +4228,8 @@ msgstr "Follower, die du kennst"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Folge ich"
msgid "Following {0}"
msgstr "{0} Folge ich"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "{handle} Folge ich"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Following-Feed-Einstellungen"
@@ -4264,7 +4297,7 @@ msgstr "Aus Sicherheitsgründen kannst du dies nicht erneut ansehen. Falls du di
msgid "For the best experience, we recommend using the theme font."
msgstr "Für das beste Erlebnis empfehlen wir, die Schriftart des Themes zu verwenden."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Für dich"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Von <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Ein Startpaket generieren"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Hilfe erhalten"
@@ -4376,10 +4409,15 @@ msgstr "Mitteilungen erhalten, wenn jemand Posts veröffentlicht"
msgid "Get started"
msgstr "Los geht's"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Gib deinem Profil ein Gesicht"
@@ -4394,12 +4432,12 @@ msgstr "Verherrlichung von Gewalt"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Zurück"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4480,7 +4518,7 @@ msgstr "Zum Feed gehen"
#: src/screens/Login/ForgotPasswordForm.tsx:165
msgid "Go to next"
-msgstr "Zum nächsten gehen"
+msgstr "Zum nächsten Schritt wechseln"
#: src/components/dms/ConvoMenu.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:317
@@ -4498,8 +4536,8 @@ msgstr "Die Live-Funktion ist für deinen Account derzeit deaktiviert"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Drastische Inhalte"
@@ -4592,7 +4630,7 @@ msgstr "Von Bluesky 7 Tage lang gespeichert, um Missbrauch zu verhindern, anschl
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Hilfe"
@@ -4632,9 +4670,9 @@ msgstr "Ausgeblendete Liste"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Nutzerliste ausblenden"
msgid "Hide verification badges"
msgstr "Verifizierungsabzeichen ausblenden"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Blendet den Inhalt aus"
@@ -4728,31 +4766,31 @@ msgstr "Hm, du scheinst mit einem <0>App-Passwort0> eingeloggt zu sein. Um dei
#: src/view/com/posts/PostFeedErrorMessage.tsx:124
msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue."
-msgstr "Hmm, beim Kontakt mit dem Feed-Server ist ein Problem aufgetreten. Bitte informiere den Eigentümer des Feeds über dieses Problem."
+msgstr "Hm, beim Kontaktieren des Feed-Servers ist ein Problem aufgetreten. Bitte informiere den Eigentümer des Feeds über dieses Problem."
#: src/view/com/posts/PostFeedErrorMessage.tsx:112
msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue."
-msgstr "Hmm, der Feed-Server scheint falsch konfiguriert zu sein. Bitte informiere den Eigentümer des Feeds über dieses Problem."
+msgstr "Hm, der Feed-Server scheint falsch konfiguriert zu sein. Bitte informiere den Eigentümer des Feeds über dieses Problem."
#: src/view/com/posts/PostFeedErrorMessage.tsx:118
msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue."
-msgstr "Hmm, der Feed-Server scheint offline zu sein. Bitte informiere den Eigentümer des Feeds über dieses Problem."
+msgstr "Hm, der Feed-Server scheint offline zu sein. Bitte informiere den Eigentümer des Feeds über dieses Problem."
#: src/view/com/posts/PostFeedErrorMessage.tsx:115
msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue."
-msgstr "Hmm, der Feed-Server hat eine schlechte Antwort gegeben. Bitte informiere den Eigentümer des Feeds über dieses Problem."
+msgstr "Hm, der Feed-Server hat eine ungültige Antwort zurückgegeben. Bitte informiere den Eigentümer des Feeds über dieses Problem."
#: src/view/com/posts/PostFeedErrorMessage.tsx:109
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
-msgstr "Hmm, wir haben Probleme, diesen Feed zu finden. Möglicherweise wurde er gelöscht."
+msgstr "Hm, wir können diesen Feed nicht finden. Möglicherweise wurde er gelöscht."
#: src/screens/Moderation/index.tsx:60
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
-msgstr "Hmm, es scheint, als hätten wir ein Problem beim Laden dieser Daten. Für weitere Details siehe unten. Wenn dieses Problem weiterhin besteht, kontaktiere uns bitte."
+msgstr "Hm, es scheint Probleme beim Laden dieser Daten zu geben. Weitere Details findest du unten. Wenn dieses Problem weiterhin besteht, kontaktiere uns bitte."
#: src/screens/Profile/ErrorState.tsx:31
msgid "Hmmmm, we couldn't load that moderation service."
-msgstr "Hmm, wir konnten diesen Moderationsdienst nicht laden."
+msgstr "Hm, wir konnten diesen Moderationsdienst nicht laden."
#: src/view/com/composer/state/video.ts:414
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
@@ -4760,9 +4798,9 @@ msgstr "Einen Moment! Wir gewähren nach und nach Zugriff auf dieses Video und d
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Startseite"
@@ -4819,7 +4857,7 @@ msgstr "Verstanden"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "Ich bin auf Bluesky als {0} - komm und finde mich! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Schaltet den erweiterten Status des Alt-Textes um, wenn dieser lang ist"
@@ -4872,7 +4910,7 @@ msgstr "Wenn du einschränken möchtest, wer Mitteilungen über die Aktivitäten
msgid "If you're a developer, you can host your own server."
msgstr "Falls du ein Entwickler bist, kannst du deinen eigenen Server hosten."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Falls du versuchst, deinen Handle oder deine E-Mail zu ändern, tu dies, bevor du deinen Account deaktivierst."
@@ -4996,6 +5034,10 @@ msgstr "Interaktionseinstellungen"
msgid "Introducing activity notifications"
msgstr "Einführung von Aktivitätsmitteilungen"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "Wir stellen vor, wie man über Kontakte Freunde findet"
@@ -5089,7 +5131,7 @@ msgstr "Im Moment ist es nur <0>{0}0>! Füge weitere Personen zu deinem Startp
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Hier bist gerade nur du! Füge mehr Leute zu deinem Startpaket hinzu, indem du oben nach ihnen suchst."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "Job-ID: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Halte mich auf dem Laufenden"
msgid "KWS website"
msgstr "KWS-Website"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Von {0} gekennzeichnet."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Vom Autor gekennzeichnet."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Kennzeichnungen"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Kennzeichnungen hinzugefügt"
@@ -5218,8 +5260,8 @@ msgstr "Erfahre mehr über das Importieren von Kontakten (auf Englisch)"
msgid "Learn more about self hosting your PDS."
msgstr "Erfahre mehr über das Selbst-Hosting deiner PDS (auf Englisch)."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Erfahre mehr über die Moderation, die auf diesen Inhalt angewendet wurde"
@@ -5231,7 +5273,7 @@ msgstr "Erfahre mehr über diese Änderungen und wie du uns deine Meinung mittei
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Erfahre mehr über diese Änderungen und wie du uns deine Meinung mitteilen kannst, indem du unseren Blogpost liest (auf Englisch)."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Erfahre mehr über diese Warnung"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "Mehr dazu in deinen <0>Account-Einstellungen0>"
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Mehr erfahren."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Verlassen"
@@ -5286,7 +5328,7 @@ msgstr "Bluesky verlassen"
msgid "left to go."
msgstr "verbleibend."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Lass mich wählen"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Gefällt mir"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Gefällt mir ({0, plural, one {# Gefällt mir} other {# Gefällt mir}})"
@@ -5380,7 +5422,7 @@ msgstr "„Gefällt mir“ für deine Reposts"
msgid "Likes of your reposts notifications"
msgstr "Mitteilungen über „Gefällt mir“-Angaben zu deinen Reposts"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "„Gefällt mir“-Angaben für diesen Post"
@@ -5474,7 +5516,7 @@ msgstr "Liste nicht mehr stummgeschaltet"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Listen"
@@ -5496,10 +5538,20 @@ msgstr "LIVE"
msgid "Live event happening now: {0}"
msgstr "Live-Event findet gerade statt: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "Live-Event ausgeblendet"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "Live-Event-Optionen"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "Live-Event wieder eingeblendet"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "Live-Events werden gelegentlich angezeigt, wenn etwas Spannendes passiert. Wenn du möchtest, kannst du dieses Event ausblenden oder alle Events an dieser Stelle in deiner App-Oberfläche ausblenden."
@@ -5524,11 +5576,11 @@ msgstr "Mehr laden"
msgid "Load more suggested feeds"
msgstr "Weitere empfohlene Feeds laden"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Neue Mitteilungen laden"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo von @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo von <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Erstelle eins für mich"
msgid "Make sure this is where you intend to go!"
msgstr "Stelle sicher, dass du dorthin willst!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Gespeicherte Feeds verwalten"
@@ -5638,7 +5690,16 @@ msgstr "Vielleicht später"
msgid "Media"
msgstr "Medien"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "Auf {0} gespeicherte Medien"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "Auf einem anderen Gerät gespeicherte Medien"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Medien, die für einige Zielgruppen verstörend oder unangemessen sein könnten."
@@ -5653,7 +5714,7 @@ msgstr "erwähnte Nutzer"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Erwähnungen"
@@ -5716,6 +5777,10 @@ msgstr "Sonstige Mitteilungen"
msgid "Misleading"
msgstr "Irreführend"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "Fehlende Medien"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "Weitere Sprachen..."
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Filme"
msgid "Music"
msgstr "Musik"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Zum Startpaket navigieren"
msgid "Navigates to the next screen"
msgstr "Navigiert zum nächsten Bildschirm"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Navigiert zu deinem Profil"
@@ -5983,6 +6049,7 @@ msgstr "Neue E-Mail-Adresse"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Neue Funktion"
@@ -6018,12 +6085,12 @@ msgstr "Neue Nachrichten"
msgid "New password"
msgstr "Neues Passwort"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Neuer Post"
@@ -6085,7 +6152,7 @@ msgstr "Aktuelles"
msgid "Next"
msgstr "Weiter"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Nächstes Bild"
@@ -6114,6 +6181,10 @@ msgstr "Noch keine benutzerdefinierten Feeds"
msgid "No DNS Panel"
msgstr "Kein DNS-Panel"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "Noch keine Entwürfe"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Kein Ablaufdatum festgelegt"
@@ -6136,7 +6207,7 @@ msgstr "Kein Bild"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Noch keine „Gefällt mir“-Angaben"
@@ -6150,7 +6221,7 @@ msgstr "Keine Listen"
msgid "No longer following {0}"
msgstr "{0} wird nicht mehr gefolgt"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "Noch keine Medien"
@@ -6176,7 +6247,7 @@ msgstr "Noch keine Mitteilungen!"
#: src/screens/Settings/ActivityPrivacySettings.tsx:134
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:159
msgid "No one"
-msgstr "Niemand"
+msgstr "Niemandem"
#: src/components/WhoCanReply.tsx:302
msgid "No one but the author can quote this post."
@@ -6195,7 +6266,7 @@ msgstr "Noch keine Posts"
msgid "No quotes yet"
msgstr "Noch keine Zitate"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "Noch keine Antworten"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Kein Ergebnis"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Keine Ergebnisse"
@@ -6238,7 +6309,7 @@ msgstr "Keine Ergebnisse."
msgid "No search results found for \"{search}\"."
msgstr "Keine Suchergebnisse gefunden für „{search}“."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "Noch keine Startpakete"
@@ -6247,7 +6318,7 @@ msgstr "Noch keine Startpakete"
msgid "No thanks"
msgstr "Nein danke"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "Noch keine Video-Posts"
@@ -6298,6 +6369,10 @@ msgstr "Wird von niemandem gefolgt, dem du folgst"
msgid "Not Found"
msgstr "Nicht gefunden"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Hinweis über das Teilen"
@@ -6321,7 +6396,7 @@ msgstr "Noch nichts gespeichert"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Mitteilungseinstellungen"
@@ -6349,10 +6424,10 @@ msgstr "Mitteilungstöne"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Mitteilungen"
@@ -6368,8 +6443,8 @@ msgstr "jetzt"
msgid "Now"
msgstr "Jetzt"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Nacktheit"
@@ -6390,7 +6465,7 @@ msgstr "Oh nein!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Okay"
@@ -6417,23 +6492,23 @@ msgstr "auf<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Onboarding zurücksetzen"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Bei einem oder mehreren GIFs fehlen Alt-Texte."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Bei einem oder mehreren Bildern fehlen Alt-Texte."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "Eine oder mehrere deiner ausgewählten Dateien werden nicht unterstützt."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "Eine oder mehrere deiner ausgewählten Dateien sind zu groß. Die maximale Größe beträgt 100 MB."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Bei einem oder mehreren Videos fehlen Alt-Texte."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Huch, da ist etwas schief gelaufen!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Huch!"
msgid "Open avatar creator"
msgstr "Avatar-Editor öffnen"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "Kamera öffnen"
@@ -6485,12 +6560,16 @@ msgstr "Kamera öffnen"
msgid "Open conversation options"
msgstr "Konversationsoptionen öffnen"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "Entwurf öffnen"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Seitenmenü öffnen"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Emoji-Picker öffnen"
@@ -6557,7 +6636,7 @@ msgstr "Systemprotokoll öffnen"
msgid "Opens {0} feed"
msgstr "Öffnet den Feed von {0}"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Öffnet einen Dialog, um eine Inhaltswarnung zu deinem Post hinzuzufügen"
@@ -6589,25 +6668,25 @@ msgstr "Öffnet den Dialog zum Ändern des Handles"
msgid "Opens composer"
msgstr "Öffnet den Post-Editor"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "Öffnet die Gerätekamera"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "Öffnet die Gerätegalerie, um bis zu {MAX_IMAGES, plural, other {# Bilder}} oder ein einzelnes Video oder GIF auszuwählen."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Öffnet die Emoji-Auswahl"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Öffnet den Ablauf, um einen neuen Bluesky-Account zu erstellen"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Öffnet den Ablauf zum Einloggen bei deinem bestehenden Bluesky-Account"
@@ -6620,7 +6699,7 @@ msgstr "Öffnet GIF-Auswahldialog"
msgid "Opens helpdesk in browser"
msgstr "Öffnet Helpdesk im Browser"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "Öffnet die Bildauswahl"
@@ -6640,10 +6719,14 @@ msgstr "Öffnet das Formular zum Zurücksetzen des Passworts"
msgid "Opens post language settings"
msgstr "Öffnet die Post-Spracheinstellungen"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "Öffnet den Post-Editor"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "Öffnet diesen Entwurf im Editor"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "OTA-Status: Kein Update verfügbar"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Andere"
@@ -6763,13 +6846,13 @@ msgstr "Passwort aktualisiert"
msgid "Password updated!"
msgstr "Passwort aktualisiert!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pausieren"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Video pausieren"
@@ -6829,7 +6912,7 @@ msgstr "Telefonnummer verifiziert"
msgid "Photography"
msgstr "Fotografie"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Bilder für Erwachsene."
@@ -6874,9 +6957,9 @@ msgstr "Angeheftete Feeds"
msgid "Pinned to your feeds"
msgstr "An deine Feeds angepinnt"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Abspielen"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "{0} abspielen"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Video abspielen"
@@ -6893,11 +6976,11 @@ msgstr "Video abspielen"
msgid "Play Video"
msgstr "Video abspielen"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Spielt das GIF ab oder pausiert es"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Spielt das Video ab oder pausiert es"
@@ -6909,7 +6992,7 @@ msgstr "Spielt das GIF ab"
msgid "Plays the video"
msgstr "Spielt das Video ab"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Bitte füge alle zutreffenden Inhaltswarnungen für die Medien hinzu, die du postest."
@@ -7043,7 +7126,7 @@ msgstr "Bitte wähle einen Grund für diese Meldung aus"
#: src/lib/hooks/useAccountSwitcher.ts:46
#: src/lib/hooks/useAccountSwitcher.ts:56
msgid "Please sign in as @{0}"
-msgstr "Bitte melde dich als @{0} an"
+msgstr "Bitte logge dich als @{0} ein"
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Please use the native app to import your contacts."
@@ -7066,31 +7149,31 @@ msgstr "Bitte schreibe deine Nachricht unten:"
msgid "Politics"
msgstr "Politik"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornografie"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Post"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Posten"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Ein Foto posten"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Ein Video posten"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Alle posten"
@@ -7217,7 +7300,7 @@ msgstr "Drücken, um Follower dieses Accounts anzuzeigen, denen du ebenfalls fol
msgid "Preview"
msgstr "Vorschau"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Vorheriges Bild"
@@ -7257,8 +7340,8 @@ msgstr "Datenschutz- und Sicherheitseinstellungen"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Datenschutzerklärung"
@@ -7266,7 +7349,11 @@ msgstr "Datenschutzerklärung"
msgid "Privacy violation of a minor"
msgstr "Verletzung der Privatsphäre eines Minderjährigen"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Video wird verarbeitet..."
@@ -7280,10 +7367,10 @@ msgstr "Wird verarbeitet..."
msgid "profile"
msgstr "Profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Öffentliche, teilbare Listen von Nutzern, die zum Stummschalten oder Blockieren verwendet werden können."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Post veröffentlichen"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Posts veröffentlichen"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Antworten veröffentlichen"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Antwort veröffentlichen"
@@ -7360,6 +7447,7 @@ msgstr "Zitat-Mitteilungen"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Post zitieren"
@@ -7385,7 +7473,7 @@ msgstr "Zitate deaktiviert"
msgid "Quotes"
msgstr "Zitate"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Zitate dieses Posts"
@@ -7424,11 +7512,11 @@ msgstr "Erfahre, wie du Suchfilter verwendest (auf Englisch)"
msgid "Read blog post"
msgstr "Blogpost lesen (auf Englisch)"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Weniger lesen"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Mehr lesen"
@@ -7720,13 +7808,13 @@ msgstr "Antworten deaktiviert"
msgid "Replies to this post are disabled."
msgstr "Antworten zu diesem Post sind deaktiviert."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Antworten"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Antworten ({0, plural, one {# Antwort} other {# Antworten}})"
@@ -7892,7 +7980,7 @@ msgstr "Repostet von dir"
msgid "Reposts"
msgstr "Reposts"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Reposts von diesem Post"
@@ -7996,14 +8084,14 @@ msgstr "Wiederholt die letzte Aktion, bei der ein Fehler aufgetreten ist"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Zurück zur vorherigen Seite"
msgid "Returns to home page"
msgstr "Zurück zur Startseite"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Zurück zur vorherigen Seite"
@@ -8063,7 +8151,7 @@ msgstr "Geht zum vorherigen Schritt zurück"
msgid "Save"
msgstr "Speichern"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Speichern"
@@ -8076,9 +8164,26 @@ msgstr "Geburtsdatum speichern"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Änderungen speichern"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "Änderungen speichern?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "Entwurf speichern"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "Entwurf speichern?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "In meinen Feeds speichern"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Gespeichert"
@@ -8155,7 +8260,7 @@ msgstr "Nach oben scrollen"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Suche"
@@ -8164,7 +8269,7 @@ msgstr "Suche"
msgid "Search @{0}'s posts"
msgstr "Posts von @{0} durchsuchen"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Nach Namen oder Interesse suchen"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Feeds durchsuchen"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "Suche nach „{interestsDisplayName}“"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "Suche nach „{interestsDisplayName}“ (aktiv)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Posts durchsuchen"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Profile suchen"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Suche..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Sucht nach Profilen"
@@ -8283,12 +8388,12 @@ msgstr "#{tag}-Posts des Nutzers ansehen"
msgid "See jobs at Bluesky"
msgstr "Sieh dir Jobs bei Bluesky an"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Mehr sehen"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "Weitere vorgeschlagene Profile ansehen"
@@ -8456,7 +8561,7 @@ msgstr "Wähle deine bevorzugte Sprache für Übersetzungen in deinem Feed aus."
msgid "Select your preferred notification channels"
msgstr "Wähle deine bevorzugten Mitteilungs-Kanäle aus"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "Das Auswählen mehrerer Medientypen wird nicht unterstützt."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "E-Mail senden"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Feedback senden"
@@ -8566,7 +8671,7 @@ msgstr "Legt die E-Mail für das Zurücksetzen des Passworts fest"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Einstellungen"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Einstellungen gespeichert"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Sexuelle Aktivität oder erotische Nacktheit."
@@ -8634,7 +8739,7 @@ msgstr "Sexuell suggestiv"
msgid "Share"
msgstr "Teilen"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Teilen"
@@ -8712,13 +8817,13 @@ msgstr "Teile deinen Lieblings-Feed!"
msgid "Shared Preferences Tester"
msgstr "Tester für gemeinsame Einstellungen"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Anzeigen"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Alt-Text anzeigen"
@@ -8820,7 +8925,7 @@ msgstr "Warnung anzeigen und aus Feeds filtern"
msgid "Show when you’re live"
msgstr "Anzeigen, wenn du live bist"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Zeigt Informationen darüber an, wann dieser Post erstellt wurde"
@@ -8828,8 +8933,8 @@ msgstr "Zeigt Informationen darüber an, wann dieser Post erstellt wurde"
msgid "Shows other accounts you can switch to"
msgstr "Zeigt andere Accounts an, zu denen du wechseln kannst"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Zeigt den Inhalt an"
@@ -8842,14 +8947,14 @@ msgstr "Zeigt den Inhalt an"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8857,7 +8962,7 @@ msgstr "Einloggen"
#: src/components/AccountList.tsx:136
msgid "Sign in as {0}"
-msgstr "Anmelden als {0}"
+msgstr "Einloggen als {0}"
#: src/screens/Login/ChooseAccountForm.tsx:82
msgid "Sign in as..."
@@ -8909,16 +9014,12 @@ msgstr "Ausloggen?"
#: src/components/moderation/ScreenHider.tsx:97
#: src/lib/moderation/useGlobalLabelStrings.ts:28
msgid "Sign-in Required"
-msgstr "Anmeldung erforderlich"
+msgstr "Einloggen erforderlich"
#: src/lib/hooks/useAccountSwitcher.ts:42
#: src/screens/Login/ChooseAccountForm.tsx:54
msgid "Signed in as @{0}"
-msgstr "Angemeldet als @{0}"
-
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Ähnliche Accounts"
+msgstr "Eingeloggt als @{0}"
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
@@ -8926,7 +9027,7 @@ msgstr "Ähnliche Accounts"
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "Kontakte nicht teilen und mit der App fortfahren"
msgid "Skip introduction and start using your account"
msgstr "Überspringe die Einführung und beginne mit der Nutzung deines Accounts"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Zum nächsten Schritt springen"
@@ -8967,7 +9068,7 @@ msgstr "Software-Entwicklung"
msgid "Some of your verifications are invalid."
msgstr "Einige deiner Verifizierungen sind ungültig."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Einige andere Feeds, die dir gefallen könnten"
@@ -8994,7 +9095,7 @@ msgstr "Etwas ist schiefgelaufen"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Etwas ist schiefgelaufen, bitte versuche es erneut"
@@ -9020,7 +9121,7 @@ msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut."
msgid "Something wrong? Let us know."
msgstr "Etwas stimmt nicht? Lass es uns wissen."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Leider können derzeit keine Account-Vorschläge geladen werden."
@@ -9113,7 +9214,11 @@ msgstr "Startpakete"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Startpakete ermöglichen es dir, deine liebsten Feeds und Personen ganz einfach mit deinen Freunden zu teilen."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "Startpakete ermöglichen es dir, deine liebsten Feeds und Personen mit deinen Freunden zu teilen."
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "Startpakete ermöglichen es dir, deine liebsten Feeds und Personen mit deinen Freunden zu teilen."
@@ -9181,11 +9286,11 @@ msgstr "Abonniere @{0}, um diese Kennzeichnungen zu verwenden:"
msgid "Subscribe to account activity"
msgstr "Account-Aktivitäten abonnieren"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Kennzeichner abonnieren"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Diesen Kennzeichner abonnieren"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Vorgeschlagene Accounts"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Vorgeschlagen für dich"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Suggestiv"
@@ -9354,8 +9459,8 @@ msgstr "Bedingungen"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Nutzungsbedingungen"
@@ -9403,12 +9508,12 @@ msgstr "Dieser Nutzername ist bereits vergeben"
msgid "That's all, folks!"
msgstr "Das ist alles, Leute!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Das ist alles!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Nach dem Entblocken kann der Account wieder mit dir interagieren."
@@ -9447,7 +9552,7 @@ msgstr "Der Discover-Feed"
msgid "The Discover feed now knows what you like"
msgstr "Der Discover-Feed weiß jetzt, was dir gefällt"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Das Erlebnis ist in der App besser. Lade jetzt Bluesky herunter und wir machen dort weiter, wo du aufgehört hast."
@@ -9527,7 +9632,7 @@ msgstr "Theme"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "Es gibt ein Limit dafür, wie oft du dein Geburtsdatum ändern kannst. Du musst möglicherweise ein bis zwei Tage warten, bevor du es erneut aktualisieren kannst."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Es gibt kein Zeitlimit für die Deaktivierung deines Accounts, du kannst jederzeit wiederkommen."
@@ -9711,6 +9816,10 @@ msgstr "Dieser Inhalt ist ohne einen Bluesky-Account nicht sichtbar."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Diese Konversation ist mit einem gelöschten oder deaktivierten Account. Drücke für Optionen"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "Dieser Entwurf wird endgültig gelöscht."
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Diese E-Mail ist bereits mit deinem Account verknüpft."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Dieser Feed ist leer! Möglicherweise musst du mehr Nutzer folgen oder deine Spracheinstellungen anpassen."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Dieser Feed ist leer."
@@ -9798,7 +9907,7 @@ msgstr "Diese Liste ist leer."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Dieser Moderationsdienst ist nicht verfügbar. Siehe unten für weitere Details. Wenn das Problem weiterhin besteht, kontaktiere uns."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Dieser Post soll am <0>{0}0> erstellt worden sein, wurde aber erstmals von Bluesky am <1>{1}1> gesehen."
@@ -9818,7 +9927,7 @@ msgstr "Dieser Post wurde vom Autor gelöscht"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Dieser Post wird aus Feeds und Threads ausgeblendet. Dies kann nicht rückgängig gemacht werden."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Der Autor dieses Posts hat das Zitieren dieses Posts deaktiviert."
@@ -9834,7 +9943,7 @@ msgstr "Diese Antwort wird in einen ausgeblendeten Bereich am Ende deines Thread
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Dieser Dienst hat keine Nutzungsbedingungen oder Datenschutzerklärung bereitgestellt."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "Dieser Service wird nicht unterstützt, solange die Live-Funktion in der Beta ist. Erlaubte Services: {formatted}."
@@ -9900,8 +10009,8 @@ msgstr "Dies wird deinen Post aus diesem Zitat-Post für alle Nutzer entfernen u
msgid "Thread options"
msgstr "Thread-Optionen"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Thread-Einstellungen"
@@ -9951,7 +10060,7 @@ msgstr "Heute"
msgid "Toggle to enable or disable adult content"
msgstr "Umschalten, um Inhalte für Erwachsene zu aktivieren oder zu deaktivieren"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Schaltet den Ton um"
@@ -9988,8 +10097,8 @@ msgstr "Thema"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Übersetzen"
@@ -10091,15 +10200,15 @@ msgstr "Feed-Information nicht verfügbar"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Entblocken"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Entblocken"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Account entblocken"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Account entblocken?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Rückgängig machen"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Rückgängig machen"
@@ -10142,7 +10255,7 @@ msgstr "Repost rückgängig machen"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Repost rückgängig machen ({0, plural, one {# Repost} other {# Reposts}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "{0} entfolgen"
@@ -10151,7 +10264,7 @@ msgstr "{0} entfolgen"
msgid "Unfollow account"
msgstr "Account entfolgen"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Entfolgt dem Nutzer"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Gefällt mir nicht mehr"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Gefällt mir nicht mehr ({0, plural, one {# Gefällt mir} other {# Gefällt mir}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Liste nicht mehr stummschalten"
msgid "Unmute thread"
msgstr "Stummschaltung des Threads aufheben"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Stummschaltung von Video aufheben"
@@ -10276,7 +10389,7 @@ msgstr "Liste gelöst"
msgid "Unsnooze email reminder"
msgstr "E-Mail-Erinnerung wieder aktivieren"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Abmelden"
@@ -10285,7 +10398,7 @@ msgstr "Abmelden"
msgid "Unsubscribe from list"
msgstr "Von der Liste abmelden"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Von diesem Kennzeichner abmelden"
@@ -10293,7 +10406,7 @@ msgstr "Von diesem Kennzeichner abmelden"
msgid "Unsubscribed from list"
msgstr "Von der Liste abgemeldet"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Nicht unterstützter Videotyp: {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "Von Dateien hochladen"
msgid "Upload from Library"
msgstr "Aus der Bibliothek hochladen"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Bilder werden hochgeladen..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Link-Vorschaubild wird hochgeladen..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Video wird hochgeladen..."
@@ -10389,8 +10506,8 @@ msgstr "Standardanbieter verwenden"
msgid "Use in-app browser"
msgstr "In-App-Browser verwenden"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "In-App-Browser zum Öffnen von Links verwenden"
@@ -10445,6 +10562,10 @@ msgstr "Nutzer blockiert dich"
msgid "User list by {0}"
msgstr "Nutzerliste von {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr "Nutzerliste von {0}"
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Nutzerliste von dir"
@@ -10486,7 +10607,7 @@ msgstr "Nutzer, die <0>@{0}0> folgen"
#: src/screens/Messages/Settings.tsx:97
#: src/screens/Messages/Settings.tsx:100
msgid "Users I follow"
-msgstr "Nutzer, denen ich folge"
+msgstr "Nutzern, denen ich folge"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:449
msgid "Value:"
@@ -10597,8 +10718,8 @@ msgstr "Wird verifiziert..."
msgid "Version {0}"
msgstr "Version {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Video"
@@ -10614,20 +10735,24 @@ msgstr "Video-Feed"
msgid "Video from {0}: {text}"
msgstr "Video von {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "Video von {0}. Tippe, um das Video abzuspielen oder zu pausieren"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Videospiele"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Video ist pausiert"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Video wird abgespielt"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Video nicht gefunden."
@@ -10635,11 +10760,11 @@ msgstr "Video nicht gefunden."
msgid "Video settings"
msgstr "Video-Einstellungen"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Video hochgeladen"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Video: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videos"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "Videos dürfen nicht länger als 3 Minuten sein."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Ansehen"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Avatar von {0} ansehen"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Profil von {0} ansehen"
@@ -10708,7 +10833,7 @@ msgstr "Mehr ansehen"
msgid "View more trending videos"
msgstr "Mehr angesagte Videos ansehen"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "Post ansehen"
@@ -10788,7 +10913,7 @@ msgstr "Gewalttätige oder bedrohliche Inhalte"
msgid "Visit site"
msgstr "Site besuchen"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Rufe deine Mitteilungseinstellungen auf"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Wir haben Probleme bei der Initialisierung des Altersverifizierungsprozesses für deinen Account. Bitte <0>kontaktiere den Support0>, um Hilfe zu erhalten."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Wir haben Netzwerkprobleme, versuche es erneut"
@@ -10968,7 +11093,7 @@ msgstr "Es tut uns leid, aber wir konnten deine stummgeschalteten Wörter gerade
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Es tut uns leid, aber deine Suche konnte nicht abgeschlossen werden. Bitte versuche es in ein paar Minuten noch einmal."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Es tut uns leid! Der Post, auf den du antwortest, wurde gelöscht."
@@ -10977,7 +11102,7 @@ msgstr "Es tut uns leid! Der Post, auf den du antwortest, wurde gelöscht."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Es tut uns leid! Wir können die von dir gesuchte Seite nicht finden."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Es tut uns leid! Du kannst nur 20 Kennzeichner abonnieren und hast dein Limit von 20 erreicht."
@@ -11018,10 +11143,9 @@ msgstr "Was sind deine Interessen?"
msgid "What do you want to call your starter pack?"
msgstr "Wie möchtest du dein Startpaket nennen?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Was gibt's?"
@@ -11097,6 +11221,14 @@ msgstr "Warum sollte dieser Nutzer überprüft werden?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Möchtest du diesen Nutzer blockieren und/oder diese Konversation löschen?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "Möchtest du dies als Entwurf speichern, bevor du deine Entwürfe ansiehst?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "Möchtest du dies als Entwurf speichern, um es später zu bearbeiten?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Schreibe eine Nachricht"
msgid "Write a post"
msgstr "Einen Post schreiben"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Post verfassen"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Schreibe deine Antwort"
@@ -11133,8 +11265,8 @@ msgstr "www.mylivestream.tv"
msgid "Yes"
msgstr "Ja"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Ja, deaktivieren"
@@ -11188,7 +11320,7 @@ msgstr "Du befindest dich in der Warteschlange."
msgid "You are Live"
msgstr "Du bist live"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Du bist nicht mehr live"
@@ -11200,7 +11332,7 @@ msgstr "Du darfst keine Videos hochladen."
msgid "You are not following anyone yet"
msgstr "Du folgst noch niemandem"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Du bist jetzt live!"
@@ -11255,11 +11387,11 @@ msgstr "Du kannst jetzt auswählen, ob du Mitteilungen erhalten möchtest, wenn
msgid "You can now sign in with your new password."
msgstr "Du kannst dich jetzt mit deinem neuen Passwort einloggen."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "Du kannst jeweils nur ein GIF auswählen."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "Du kannst jeweils nur ein Video auswählen."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Du kannst deinen Account reaktivieren, um dich weiterhin einzuloggen. Dein Profil und deine Posts werden für andere Nutzer sichtbar sein."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "Du kannst insgesamt bis zu {MAX_IMAGES, plural, other {# Bilder}} auswählen."
@@ -11317,7 +11449,7 @@ msgstr "Du hast diesen Nutzer blockiert"
msgid "You have blocked this user. You cannot view their content."
msgstr "Du hast diesen Nutzer blockiert und kannst seine Inhalte nicht sehen."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Du hast Mitteilungen für Antworten, Zitate und Erwähnungen vollständig deaktiviert, weshalb dieser Tab nicht mehr aktualisiert wird. Um das anzupassen, gehe zu deinen <0>Mitteilungseinstellungen0>."
@@ -11376,6 +11508,14 @@ msgstr "Du hast deine E-Mail-Adresse erfolgreich verifiziert. Du kannst dieses F
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Du hast vorübergehend das Limit für Video-Uploads erreicht. Bitte versuche es später erneut."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "Du hast ungespeicherte Änderungen an diesem Entwurf. Möchtest du sie speichern?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "Du hast ungespeicherte Änderungen. Möchtest du sie speichern, bevor du deine Entwürfe ansiehst?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Du hast noch kein Startpaket erstellt!"
@@ -11437,7 +11577,7 @@ msgstr "Du musst mindestens {MIN_ACCESS_AGE} Jahre alt sein, um einen Account er
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Du musst mindestens 13 Jahre alt sein, um Bluesky nutzen zu können. Lies unsere <0>Nutzungsbedingungen0>, um mehr zu erfahren."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Du musst mindestens sieben anderen Personen folgen, um ein Startpaket erstellen zu können."
@@ -11449,7 +11589,7 @@ msgstr "Du musst die Altersverifikation abschließen, um auf diesen Bildschirm z
msgid "You must grant access to your photo library to save a QR code"
msgstr "Du musst den Zugriff auf deine Galerie gewähren, um einen QR-Code speichern zu können"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "Du musst den Zugriff auf deine Galerie erlauben."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Du bist in der Warteschlange"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Du bist mit einem App-Passwort eingeloggt. Bitte logge dich mit deinem Hauptpasswort ein, um die Deaktivierung deines Accounts fortzusetzen."
@@ -11589,7 +11729,7 @@ msgstr "Du hast dein tägliches Limit für Video-Uploads erreicht (zu viele Byte
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Du hast dein tägliches Limit für Video-Uploads erreicht (zu viele Videos)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Du hast keine Videos mehr zum Anschauen. Vielleicht ist es ein guter Zeitpunkt, eine Pause zu machen?"
@@ -11625,7 +11765,7 @@ msgstr "Deine Beschwerde wurde eingereicht. Falls sie erfolgreich ist, erhältst
msgid "Your birth date"
msgstr "Dein Geburtsdatum"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Dein Browser unterstützt das Videoformat nicht. Bitte versuche es mit einem anderen Browser."
@@ -11692,8 +11832,8 @@ msgstr "Dein vollständiger Handle lautet <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Deine Interessen"
@@ -11731,11 +11871,11 @@ msgstr "Dein Passwort wurde erfolgreich geändert! Bitte verwende ab sofort dein
msgid "Your password must be at least 8 characters long."
msgstr "Dein Passwort muss mindestens 8 Zeichen lang sein."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "Dein Post wurde gesendet"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "Deine Posts wurden gesendet"
@@ -11752,11 +11892,11 @@ msgstr "Dein Profilbild"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "Dein Profilbild, umgeben von konzentrischen Kreisen mit den Profilbildern anderer Nutzer"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Dein Profil, deine Posts, deine Feeds und Listen werden nicht mehr für andere Bluesky-Nutzer sichtbar sein. Du kannst deinen Account jederzeit reaktivieren, indem du dich einloggst."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "Deine Antwort wurde gesendet"
diff --git a/src/locale/locales/el/messages.po b/src/locale/locales/el/messages.po
index b8d65460f7..3d9c1b53d0 100644
--- a/src/locale/locales/el/messages.po
+++ b/src/locale/locales/el/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: el\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Greek\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# αναδημοσίευση} other {# αναδημοσ
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# δευτερόλεπτο} other {# δευτερόλεπτα}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {ακόλουθος} other {ακόλουθοι}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {ακολουθεί} other {ακολουθούν}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {Μου αρέσει} other {Μου αρέσει}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {Μου αρέσει} other {Μου αρέσει}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {ανάρτηση} other {αναρτήσεις}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {πάραθεση} other {παραθέσεις}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {αναδημοσίευση} other {αναδημοσιεύσεις}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr ""
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
@@ -432,7 +436,7 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>και {2, plural, one {# άλλος} other {# άλλοι}} είναι μέσα στο Starter Pack σας"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {ακόλουθος} other {ακόλουθοι}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {ακόλουθος} other {ακόλουθοι}}"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Προσθέστε {0} περισσότερα για να συνεχίσ
msgid "Add {displayName} to starter pack"
msgstr "Προσθήκη {displayName} στο starter pack"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Προσθήκη προειδοποίησης περιεχομένου"
@@ -754,11 +763,11 @@ msgstr "Προσθήκη εναλλακτικού κειμένου (προαιρ
msgid "Add another account"
msgstr "Προσθήκη άλλου λογαριασμού"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Προσθήκη άλλης ανάρτησης"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "Προσθήκη κωδικού πρόσβασης εφαρμογής"
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Ενήλικες"
@@ -879,10 +888,10 @@ msgstr "Ενήλικες"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Περιεχόμενο για ενηλίκους"
@@ -894,8 +903,8 @@ msgstr "Το περιεχόμενο για ενηλίκους μπορεί να
msgid "Adult content is disabled."
msgstr "Το περιεχόμενο για ενηλίκους είναι απενεργοποιημένο."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Ετικέτες περιεχομένου για ενηλίκους"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Όλα"
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Ήδη συνδεδεμένος ως @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr ""
msgid "Alt text"
msgstr "Εναλλακτικό κείμενο"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Εναλλακτικό κείμενο"
@@ -1059,7 +1068,7 @@ msgstr "Ένα email έχει σταλεί στο {0}. Περιλαμβάνει
msgid "An error has occurred"
msgstr "Παρουσιάστηκε σφάλμα"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Παρουσιάστηκε σφάλμα"
@@ -1067,7 +1076,7 @@ msgstr "Παρουσιάστηκε σφάλμα"
msgid "An error occurred while compressing the video."
msgstr "Παρουσιάστηκε σφάλμα κατά τη συμπίεση του βίντεο."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Παρουσιάστηκε σφάλμα κατά τη δημιουργία του πακέτου έναρξής σας. Θέλετε να δοκιμάσετε ξανά;"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "Παρουσιάστηκε σφάλμα κατά τη φόρτωση του βίντεο. Παρακαλώ δοκιμάστε ξανά αργότερα."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Παρουσιάστηκε σφάλμα κατά τη φόρτωση του βίντεο. Παρακαλώ δοκιμάστε ξανά."
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Ζώα"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "Κινούμενο GIF"
@@ -1306,12 +1315,12 @@ msgstr "Εφαρμογή προεπιλεγμένων προτεινόμενων
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Αρχειοθετήθηκε από {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Αρχειοθετημένη ανάρτηση"
@@ -1332,11 +1341,11 @@ msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετ
msgid "Are you sure you want to discard your changes?"
msgstr "Θέλετε σίγουρα να απορρίψετε τις αλλαγές σας;"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Θέλετε σίγουρα να αποχωρήσετε από αυτή τη συνομιλία; Τα μηνύματά σας θα διαγραφούν για εσάς, αλλά όχι για τον άλλο συμμετέχοντα."
@@ -1344,11 +1353,7 @@ msgstr "Θέλετε σίγουρα να αποχωρήσετε από αυτή
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Είστε σίγουροι ότι θέλετε να αφαιρέσετε αυτό από τις ροές σας;"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Είστε σίγουροι ότι θέλετε να απορρίψετε αυτό το προσχέδιο;"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Είστε σίγουροι ότι θέλετε να απορρίψετε αυτήν την ανάρτηση;"
@@ -1364,7 +1369,7 @@ msgstr "Γράφετε σε <0>{suggestedLanguageName}0>;"
msgid "Art"
msgstr "Τέχνη"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Καλλιτεχνική ή μη ερωτική γυμνότητα."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Αυτόματη αναπαραγωγή βίντεο και GIF"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Πίσω"
@@ -1578,7 +1585,7 @@ msgstr "Ιστολόγιο"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Το Bluesky δεν μπορεί να επιβεβαιώσει την αυθεντικότητα της ημερομηνίας που δηλώθηκε."
@@ -1623,7 +1630,7 @@ msgstr ""
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Το Bluesky θα επιλέξει μια σειρά από προτεινόμενους λογαριασμούς από άτομα στο δίκτυό σας."
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Περιηγηθείτε σε περισσότερες ροές στην σελίδα Εξερεύνησης"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Περιηγηθείτε σε περισσότερες προτάσεις"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Περιηγηθείτε σε περισσότερες προτάσεις στην σελίδα Εξερεύνησης"
@@ -1770,8 +1777,8 @@ msgstr "Κάμερα"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Κάμερα"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Ακύρωση αναζήτησης"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Δεν μπορείτε να αλληλεπιδράσετε με έναν μπλοκαρισμένο χρήστη"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Συνομιλία"
@@ -1989,7 +1996,7 @@ msgstr "Επιλέξτε μέθοδο επαλήθευσης domain"
msgid "Choose Feeds"
msgstr "Επιλέξτε Ροές"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Επιλέξτε για μένα"
@@ -2096,6 +2103,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr ""
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Κλείσιμο διαλόγου GIF"
msgid "Close image"
msgstr "Κλείσιμο εικόνας"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Κλείσιμο προγράμματος προβολής εικόνας"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Κλείνει την ειδοποίηση ενημέρωσης κωδικού πρόσβασης"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2242,12 +2251,12 @@ msgstr "Ολοκληρώστε την εισαγωγή και ξεκινήστε
msgid "Complete the challenge"
msgstr "Ολοκλήρωση της πρόκλησης"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Σύνταξη νέας ανάρτησης"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2264,11 @@ msgstr ""
msgid "Compose reply"
msgstr "Σύνταξη απάντησης"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Συμπίεση βίντεο..."
@@ -2263,7 +2276,6 @@ msgstr "Συμπίεση βίντεο..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Ρύθμιση ρύθμισης φιλτραρίσματος περιεχομένου για κατηγορία: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Ρυθμισμένο στις <0>ρυθμίσεις διαχείρισης0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr ""
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "Προειδοποίηση Περιεχομένου"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Προειδοποιήσεις περιεχομένου"
@@ -2401,7 +2413,7 @@ msgstr "Φόντο μενού περιβάλλοντος, κάντε κλικ γ
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Συνέχεια"
@@ -2420,7 +2432,7 @@ msgstr "Συνέχεια συζήτησης..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "Δεν ήταν δυνατή η αποχώρηση από τη συνομιλία"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Δεν ήταν δυνατή η φόρτωση της ροής"
@@ -2643,8 +2655,8 @@ msgstr "Δημιουργία QR κώδικα για ένα starter pack"
msgid "Create a starter pack"
msgstr "Δημιουργία starter pack"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "Δημιουργία starter pack για μένα"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Δημιουργία άλλου"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Δημιουργία νέου λογαριασμού"
@@ -2772,7 +2784,7 @@ msgstr "Ημερομηνία γέννησης"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Απενεργοποίηση λογαριασμού"
@@ -2871,7 +2883,7 @@ msgstr "Διαγραφή του λογαριασμού μου"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Διαγραφή ανάρτησης"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Απενεργοποίηση υποτίτλων"
@@ -2996,8 +3008,11 @@ msgstr "Απενεργοποιημένο"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Απόρριψη"
@@ -3006,11 +3021,12 @@ msgstr "Απόρριψη"
msgid "Discard changes?"
msgstr "Απόρριψη αλλαγών;"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Απόρριψη προσχεδίου;"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Απόρριψη ανάρτησης;"
@@ -3037,7 +3053,7 @@ msgstr "Απόρριψη"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Απόρριψη σφάλματος"
@@ -3049,11 +3065,16 @@ msgstr "Απόρριψη οδηγού Starter Pack"
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr ""
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr "Πατήστε δύο φορές για να κλείσετε το παράθυρο διαλόγου"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Κατεβάστε το Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Κατεβάστε το αρχείο CAR"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Σύρετε για να προσθέσετε εικόνες"
@@ -3285,13 +3313,13 @@ msgstr "Επεξεργασία ρυθμίσεων αλληλεπίδρασης
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Επεξεργασία προφίλ"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Επεξεργασία προφίλ"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Ενεργοποίηση υπότιτλων"
@@ -3421,13 +3449,13 @@ msgstr "Ενεργοποίηση υπότιτλων"
msgid "Enable this source only"
msgstr "Ενεργοποίηση μόνο αυτής της πηγής"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr ""
@@ -3464,7 +3492,7 @@ msgstr "Εισάγετε μια λέξη ή ετικέτα"
msgid "Enter code"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr ""
@@ -3501,7 +3529,7 @@ msgstr ""
msgid "Enter your username and password"
msgstr "Εισάγετε το όνομα χρήστη και τον κωδικό πρόσβασης σας"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr ""
@@ -3509,7 +3537,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Σφάλμα"
@@ -3570,7 +3598,7 @@ msgstr "Αποκλεισμός χρηστών που ακολουθείτε"
msgid "Excludes users you follow"
msgstr "Αποκλείει τους χρήστες που ακολουθείτε"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Έξοδος από την πλήρη οθόνη"
@@ -3578,11 +3606,7 @@ msgstr "Έξοδος από την πλήρη οθόνη"
msgid "Exits account deletion process"
msgstr "Έξοδος από τη διαδικασία διαγραφής λογαριασμού"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Έξοδος από την προβολή εικόνας"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Ανάπτυξη εναλλακτικού κειμένου"
@@ -3598,11 +3622,11 @@ msgstr "Ανάπτυξη ή συμπίεση της πλήρους ανάρτη
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Αναμενόταν το uri να επιλυθεί σε ένα αρχείο"
@@ -3639,7 +3663,7 @@ msgstr "Γυμνές σεξουαλικές εικόνες."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
@@ -3657,8 +3681,8 @@ msgstr "Εξαγωγή των δεδομένων μου"
msgid "Export My Data"
msgstr "Εξαγωγή των δεδομένων μου"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Εξωτερικό μέσο"
@@ -3730,7 +3754,7 @@ msgstr "Απέτυχε η διαγραφή ανάρτησης, παρακαλώ
msgid "Failed to delete starter pack"
msgstr "Απέτυχε η διαγραφή starter pack"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Ροή"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Ροή από {0}"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Σχόλια"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Ροές"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr "Ολοκλήρωση"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr ""
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Ακολουθήστε"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Ακολουθήστε {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr ""
@@ -4133,7 +4166,7 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr ""
msgid "Follow all"
msgstr "Ακολουθήστε τους όλους"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Κάντε follow back"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "Ακολούθοι που γνωρίζετε"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Ακολουθείτε"
msgid "Following {0}"
msgstr "Ακολουθείτε {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Προτιμήσεις της ροής Ακολουθείτε"
@@ -4264,7 +4297,7 @@ msgstr "Για λόγους ασφαλείας, δεν θα μπορείτε ν
msgid "For the best experience, we recommend using the theme font."
msgstr "Για την καλύτερη εμπειρία, σας προτείνουμε να χρησιμοποιήσετε τη γραμματοσειρά του θέματος."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Από <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Δημιουργήστε ένα starter pack"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Λάβετε βοήθεια"
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr ""
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Δώστε στο προφίλ σας ένα πρόσωπο"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Πίσω"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Εικονικά μέσα"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Βοήθεια"
@@ -4632,9 +4670,9 @@ msgstr "Κρυφή λίστα"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Απόκρυψη λίστας χρηστών"
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr ""
@@ -4760,9 +4798,9 @@ msgstr "Περιμένετε! Δίνουμε σταδιακά πρόσβαση
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Αρχική"
@@ -4819,7 +4857,7 @@ msgstr "Κατανοώ"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Εάν το εναλλακτικό κείμενο είναι μακρύ, ενεργοποιεί/απενεργοποιεί το επεκταμένο εναλλακτικό κείμενο"
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Εάν προσπαθείτε να αλλάξετε το όνομα χρήστη ή το email σας, κάντε το πριν απενεργοποιήσετε τον λογαριασμό σας."
@@ -4996,6 +5034,10 @@ msgstr ""
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Είστε μόνοι σας αυτή τη στιγμή! Προσθέστε περισσότερους ανθρώπους στο starter pack σας κάνοντας αναζήτηση παραπάνω."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID εργασίας: {0}"
@@ -5122,20 +5164,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Επισημασμένο από {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Επισημασμένο από τον/την συγγραφέα."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Ετικέτες"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Οι Ετικέτες προστέθηκαν"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "Μάθετε περισσότερα για την αυτόνομη φιλοξενία του PDS σας."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr ""
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Μάθετε περισσότερα για αυτήν την προειδοποίηση"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Μάθετε περισσότερα."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Αποχώρηση"
@@ -5286,7 +5328,7 @@ msgstr "Αποχώρηση από το Bluesky"
msgid "left to go."
msgstr "απομένουν."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Αφήστε με να διαλέξω"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr ""
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "\"Μου αρέσει\" σε αυτήν την ανάρτηση"
@@ -5474,7 +5516,7 @@ msgstr "Λίστα αφαίρεση σίγασης"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Λίστες"
@@ -5496,10 +5538,20 @@ msgstr ""
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Φόρτωση περισσότερων"
msgid "Load more suggested feeds"
msgstr "Φόρτωση περισσότερων προτεινόμενων ροών"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Φόρτωση νέων ειδοποιήσεων"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Λογότυπο από <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Φτιάξε ένα για μένα"
msgid "Make sure this is where you intend to go!"
msgstr "Βεβαιωθείτε ότι αυτό είναι το μέρος που θέλετε να πάτε!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Διαχείριση αποθηκευμένων ροών"
@@ -5638,7 +5690,16 @@ msgstr ""
msgid "Media"
msgstr "Μέσα"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Μέσα που μπορεί να είναι ενοχλητικά ή ακατάλληλα για ορισμένα ακροατήρια."
@@ -5653,7 +5714,7 @@ msgstr "αναφερόμενοι χρήστες"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr ""
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Ταινίες"
msgid "Music"
msgstr "Μουσική"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Μεταβαίνει στην επόμενη οθόνη"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Μεταβαίνει στο προφίλ σας"
@@ -5983,6 +6049,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
@@ -6018,12 +6085,12 @@ msgstr "Νέα μηνύματα"
msgid "New password"
msgstr "Νέος κωδικός πρόσβασης"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Νέα δημοσίευση"
@@ -6085,7 +6152,7 @@ msgstr "Ειδήσεις"
msgid "Next"
msgstr "Επόμενο"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Επόμενη εικόνα"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "Χωρίς πίνακα DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6136,7 +6207,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Δεν υπάρχουν ακόμη \"Μου αρέσει\""
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "Δεν ακολουθώ πλέον τον {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "Δεν υπάρχουν ακόμη παραθέσεις"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Χωρίς αποτέλεσμα"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Χωρίς αποτελέσματα"
@@ -6238,7 +6309,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr "Χωρίς αποτελέσματα αναζήτησης για “{search}”."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "Όχι ευχαριστώ"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr ""
msgid "Not Found"
msgstr "Δεν Βρέθηκε"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Σημείωση σχετικά με την κοινή χρήση"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Ρυθμίσεις ειδοποιήσεων"
@@ -6349,10 +6424,10 @@ msgstr "Ήχοι Ειδοποιήσεων"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Ειδοποιήσεις"
@@ -6368,8 +6443,8 @@ msgstr "τώρα"
msgid "Now"
msgstr "Τώρα"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Γύμνια"
@@ -6390,7 +6465,7 @@ msgstr "Ωχ όχι!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Εντάξει"
@@ -6417,23 +6492,23 @@ msgstr ""
msgid "Onboarding reset"
msgstr "Επαναφορά onboardin"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Ένα ή περισσότερα GIF λείπουν το εναλλακτικό κείμενο."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Μία ή περισσότερες εικόνες λείπουν το εναλλακτικό κείμενο."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Ένα ή περισσότερα βίντεο λείπουν το εναλλακτικό κείμενο."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ουπς, κάτι πήγε στραβά!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ουπς!"
msgid "Open avatar creator"
msgstr "Άνοιγμα δημιουργού εικόνας προφίλ"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "Άνοιγμα επιλογών συνομιλίας"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Άνοιγμα επιλογέα emoji"
@@ -6557,7 +6636,7 @@ msgstr "Άνοιγμα αρχείου καταγραφής συστήματος"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Ανοίγει ένα παράθυρο διαλόγου για να προσθέσετε μια προειδοποίηση περιεχομένου στην ανάρτησή σας"
@@ -6589,25 +6668,25 @@ msgstr ""
msgid "Opens composer"
msgstr "Ανοίγει το εργαλείο σύνταξης κειμένου"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Ανοίγει τη διαδικασία για να δημιουργήσετε ένα νέο λογαριασμό Bluesky"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
@@ -6620,7 +6699,7 @@ msgstr "Ανοίγει το παράθυρο επιλογής GIF"
msgid "Opens helpdesk in browser"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "Ανοίγει τη φόρμα επαναφοράς κωδικού πρ
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Άλλο"
@@ -6763,13 +6846,13 @@ msgstr "Ο κωδικός πρόσβασης ενημερώθηκε"
msgid "Password updated!"
msgstr "Ο κωδικός πρόσβασης ενημερώθηκε!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Παύση"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Παύση βίντεο"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "Φωτογραφία"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Εικόνες για ενήλικες."
@@ -6874,9 +6957,9 @@ msgstr "Καρφιτσωμένες ροές"
msgid "Pinned to your feeds"
msgstr "Καρφιτσωμένο στις ροές σας"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Αναπαραγωγή"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Αναπαραγωγή {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Αναπαραγωγή βίντεο"
@@ -6893,11 +6976,11 @@ msgstr "Αναπαραγωγή βίντεο"
msgid "Play Video"
msgstr "Αναπαραγωγή Βίντεο"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr ""
@@ -6909,7 +6992,7 @@ msgstr "Αναπαράγει το GIF"
msgid "Plays the video"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "Πολιτική"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Πορνογραφία"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Δημοσίευση"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Δημοσίευση"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Δημοσίευση Όλων"
@@ -7217,7 +7300,7 @@ msgstr "Πατήστε για να δείτε τους ακόλουθους αυ
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Προηγούμενη εικόνα"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Πολιτική Απορρήτου"
@@ -7266,7 +7349,11 @@ msgstr "Πολιτική Απορρήτου"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Επεξεργασία βίντεο..."
@@ -7280,10 +7367,10 @@ msgstr "Επεξεργασία..."
msgid "profile"
msgstr "προφίλ"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Προφίλ"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr ""
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Παράθεση δημοσίευσης"
@@ -7385,7 +7473,7 @@ msgstr "Οι παραθέσεις δημοσιεύσεων είναι απενε
msgid "Quotes"
msgstr "Παραθέσεις"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Παραθέσεις αυτής της δημοσίευσης"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr ""
@@ -7720,13 +7808,13 @@ msgstr "Οι απαντήσεις είναι απενεργοποιημένες"
msgid "Replies to this post are disabled."
msgstr "Οι απαντήσεις σε αυτή τη δημοσίευση είναι απενεργοποιημένες."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Απάντηση"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -7892,7 +7980,7 @@ msgstr "Αναδημοσίευση από εσάς"
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Αναδημοσίευση αυτής της ανάρτησης"
@@ -7996,14 +8084,14 @@ msgstr "Επανάληψη της τελευταίας ενέργειας, η ο
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Επιστροφή στην προηγούμενη σελίδα"
msgid "Returns to home page"
msgstr "Επιστροφή στην αρχική σελίδα"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Επιστροφή στην προηγούμενη σελίδα"
@@ -8063,7 +8151,7 @@ msgstr ""
msgid "Save"
msgstr "Αποθήκευση"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Αποθήκευση"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Αποθήκευση αλλαγών"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Αποθήκευση στις ροές μου"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "Μετακίνηση στην κορυφή"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Αναζήτηση"
@@ -8164,7 +8269,7 @@ msgstr "Αναζήτηση"
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr ""
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Αναζήτηση προφίλ"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,12 +8388,12 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr "Δείτε θέσεις εργασίας στο Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "Επιλέξτε την προτιμώμενη γλώσσα σας γι
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Αποστολή Email"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Αποστολή σχολίων"
@@ -8566,7 +8671,7 @@ msgstr "Ορίζει email για επαναφορά κωδικού πρόσβα
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Ρυθμίσεις"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Σεξουαλική δραστηριότητα ή ερωτικό γυμνό."
@@ -8634,7 +8739,7 @@ msgstr "Σεξουαλικά προκλητικό"
msgid "Share"
msgstr "Κοινή χρήση"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Κοινή χρήση"
@@ -8712,13 +8817,13 @@ msgstr "Κοινή χρήση της αγαπημένης σας ροής!"
msgid "Shared Preferences Tester"
msgstr "Ελεγκτής κοινών προτιμήσεων"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Εμφάνιση"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Εμφάνιση εναλλακτικού κειμένου"
@@ -8820,7 +8925,7 @@ msgstr "Εμφάνιση προειδοποίησης και φιλτράρισ
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr ""
@@ -8828,8 +8933,8 @@ msgstr ""
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
@@ -8842,14 +8947,14 @@ msgstr ""
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Απαιτείται σύνδεση"
msgid "Signed in as @{0}"
msgstr "Συνδεδεμένος ως @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Παρόμοιοι λογαριασμοί"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "Ανάπτυξη λογισμικού"
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Κάποιες άλλες ροές που μπορεί να σας αρέσουν"
@@ -8994,7 +9095,7 @@ msgstr "Κάτι πήγε στραβά"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Κάτι πήγε στραβά, παρακαλώ δοκιμάστε ξανά"
@@ -9020,7 +9121,7 @@ msgstr ""
msgid "Something wrong? Let us know."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr ""
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Τα Starter Packs σας επιτρέπουν να μοιράζεστε εύκολα τις αγαπημένες σας ροές και άτομα με τους φίλους σας."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "Εγγραφείτε στο @{0} για να χρησιμοποιήσε
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Εγγραφείτε στον ετικετογράφο"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Εγγραφείτε σε αυτόν τον δημιουργό ετικετών"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Προτεινόμενα για εσάς"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Προκλητικό"
@@ -9354,8 +9459,8 @@ msgstr "Όροι"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Όροι Χρήσης"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "Αυτά ήταν όλα, παιδιά!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Ο λογαριασμός θα μπορεί να αλληλεπιδράσει μαζί σας μετά την απελευθέρωση."
@@ -9447,7 +9552,7 @@ msgstr "Η ροή Ανακαλύψτε"
msgid "The Discover feed now knows what you like"
msgstr "Η ροή Ανακαλύψτε ξέρει πλέον τι σας αρέσει"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Η εμπειρία είναι καλύτερη στην εφαρμογή. Κατεβάστε το Bluesky τώρα και θα συνεχίσουμε από εκεί που σταματήσαμε."
@@ -9527,7 +9632,7 @@ msgstr "Θέμα"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Δεν υπάρχει χρονικό όριο για την απενεργοποίηση του λογαριασμού, επιστρέψτε οποιαδήποτε στιγμή."
@@ -9711,6 +9816,10 @@ msgstr "Αυτό το περιεχόμενο δεν είναι ορατό χωρ
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Αυτή η ροή είναι άδεια! Ίσως χρειαστεί να ακολουθήσετε περισσότερους χρήστες ή να ρυθμίσετε τις γλωσσικές σας ρυθμίσεις."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Αυτή η ροή είναι άδεια."
@@ -9798,7 +9907,7 @@ msgstr ""
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Η υπηρεσία διαχείρισης δεν είναι διαθέσιμη. Δείτε παρακάτω για περισσότερες λεπτομέρειες. Εάν το πρόβλημα παραμένει, επικοινωνήστε μαζί μας."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Αυτή η ανάρτηση θα κρυφτεί από τις ροές και τα νήματα. Αυτό δεν μπορεί να αναιρεθεί."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr ""
@@ -9834,7 +9943,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Η υπηρεσία αυτή δεν έχει παράσχει όρους χρήσης ή πολιτική απορρήτου."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr ""
msgid "Thread options"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Προτιμήσεις νήματος"
@@ -9951,7 +10060,7 @@ msgstr "Σήμερα"
msgid "Toggle to enable or disable adult content"
msgstr "Εναλλαγή για να ενεργοποιήσετε ή να απενεργοποιήσετε περιεχόμενο για ενήλικες"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr ""
@@ -9988,8 +10097,8 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Μετάφραση"
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Ξεμπλοκάρισμα"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Ξεμπλοκάρισμα"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Ξεμπλοκάρισμα λογαριασμού"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Ξεμπλοκάρισμα Λογαριασμού;"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "Αναίρεση αναδημοσίευσης"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Διακοπή παρακολούθησης {0}"
@@ -10151,7 +10264,7 @@ msgstr "Διακοπή παρακολούθησης {0}"
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr ""
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr ""
msgid "Unmute thread"
msgstr "Ακύρωση Σίγασης νήματος"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Ακύρωση Σίγασης βίντεο"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Απεγγραφή"
@@ -10285,7 +10398,7 @@ msgstr "Απεγγραφή"
msgid "Unsubscribe from list"
msgstr "Απεγγραφή από τη λίστα"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Απεγγραφή από αυτόν τον ετικετογράφο"
@@ -10293,7 +10406,7 @@ msgstr "Απεγγραφή από αυτόν τον ετικετογράφο"
msgid "Unsubscribed from list"
msgstr "Απεγγραφή από αυτήν την λίστα"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "Ανεβάστε από αρχεία"
msgid "Upload from Library"
msgstr "Ανεβάστε από τη βιβλιοθήκη"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Ανεβάζω εικόνες..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Ανεβάζω μικρογραφία συνδέσμου..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Ανεβάζω βίντεο..."
@@ -10389,8 +10506,8 @@ msgstr "Χρησιμοποιήστε τον προεπιλεγμένο πάρο
msgid "Use in-app browser"
msgstr "Χρησιμοποιήστε το ενσωματωμένο πρόγραμμα περιήγησης"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Χρησιμοποιήστε το ενσωματωμένο πρόγραμμα περιήγησης για να ανοίξετε συνδέσμους"
@@ -10445,6 +10562,10 @@ msgstr "Ο χρήστης σας έχει μπλοκάρει"
msgid "User list by {0}"
msgstr "Λίστα χρηστών από {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Λίστα χρηστών από εσάς"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Βίντεο"
@@ -10614,20 +10735,24 @@ msgstr ""
msgid "Video from {0}: {text}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Βιντεοπαιχνίδια"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Το βίντεο δεν βρέθηκε."
@@ -10635,11 +10760,11 @@ msgstr "Το βίντεο δεν βρέθηκε."
msgid "Video settings"
msgstr "Ρυθμίσεις βίντεο"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Το βίντεο ανέβηκε"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Βίντεο: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Βίντεο: {0}"
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Προβολή εικόνας προφίλ του/της {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Προβολή προφίλ του/της {0}"
@@ -10708,7 +10833,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Αντιμετωπίζουμε προβλήματα δικτύου, δοκιμάστε ξανά"
@@ -10968,7 +11093,7 @@ msgstr "Λυπούμαστε, αλλά δεν μπορέσαμε να φορτώ
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Λυπούμαστε, αλλά η αναζήτησή σας δεν μπόρεσε να ολοκληρωθεί. Παρακαλώ προσπαθήστε ξανά σε λίγα λεπτά."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Λυπούμαστε! Η ανάρτηση στην οποία απαντάτε έχει διαγραφεί."
@@ -10977,7 +11102,7 @@ msgstr "Λυπούμαστε! Η ανάρτηση στην οποία απαντ
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Λυπούμαστε! Δεν μπορούμε να βρούμε τη σελίδα που αναζητούσατε."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Λυπούμαστε! Μπορείτε να εγγραφείτε μόνο σε είκοσι ετικετογράφους και έχετε φτάσει στο όριο των είκοσι."
@@ -11018,10 +11143,9 @@ msgstr "Ποια είναι τα ενδιαφέροντά σας;"
msgid "What do you want to call your starter pack?"
msgstr "Πώς θέλετε να ονομάσετε το starter pack σας;"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Τι συμβαίνει;"
@@ -11097,6 +11221,14 @@ msgstr "Γιατί πρέπει να ελεγχθεί αυτός ο χρήστη
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Γράψτε ένα μήνυμα"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Γράψτε ανάρτηση"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Γράψτε την απάντησή σας"
@@ -11133,8 +11265,8 @@ msgstr ""
msgid "Yes"
msgstr "Ναι"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Ναι, απενεργοποίηση"
@@ -11188,7 +11320,7 @@ msgstr "Είστε στην ουρά."
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11200,7 +11332,7 @@ msgstr "Δεν επιτρέπεται να ανεβάζετε βίντεο."
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Τώρα μπορείτε να συνδεθείτε με τον νέο σας κωδικό πρόσβασης."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Μπορείτε να επανενεργοποιήσετε τον λογαριασμό σας για να συνεχίσετε να συνδέεστε. Το προφίλ και οι αναρτήσεις σας θα είναι ορατές σε άλλους χρήστες."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "Έχετε αποκλείσει αυτόν τον χρήστη"
msgid "You have blocked this user. You cannot view their content."
msgstr "Έχετε αποκλείσει αυτόν τον χρήστη. Δεν μπορείτε να δείτε το περιεχόμενό του."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Έχετε φτάσει προσωρινά το όριο για μεταφορτώσεις βίντεο. Παρακαλώ προσπαθήστε ξανά αργότερα."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Δεν έχετε δημιουργήσει ακόμη starter pack!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Πρέπει να ακολουθείτε τουλάχιστον επτά άλλα άτομα για να δημιουργήσετε ένα starter pack."
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "Πρέπει να παραχωρήσετε πρόσβαση στη βιβλιοθήκη φωτογραφιών σας για να αποθηκεύσετε έναν κωδικό QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Είστε στην ουρά"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -11589,7 +11729,7 @@ msgstr "Έχετε φτάσει το ημερήσιο όριο για μεταφ
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Έχετε φτάσει το ημερήσιο όριο για μεταφορτώσεις βίντεο (πάρα πολλά βίντεο)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
@@ -11625,7 +11765,7 @@ msgstr ""
msgid "Your birth date"
msgstr "Η ημερομηνία γέννησής σας"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Το πρόγραμμα περιήγησής σας δεν υποστηρίζει τη μορφή βίντεο. Παρακαλώ δοκιμάστε ένα διαφορετικό πρόγραμμα περιήγησης."
@@ -11692,8 +11832,8 @@ msgstr "Το πλήρες όνομα χρήστη σας θα είναι <0>@{0}
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr ""
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Το προφίλ, οι αναρτήσεις, οι ροές και οι λίστες σας δεν θα είναι πλέον ορατές σε άλλους χρήστες του Bluesky. πορείτε να ενεργοποιήσετε τον λογαριασμό σας ανά πάσα στιγμή πραγματοποιώντας είσοδο."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/en-GB/messages.po b/src/locale/locales/en-GB/messages.po
index fd0d542d36..426c41596d 100644
--- a/src/locale/locales/en-GB/messages.po
+++ b/src/locale/locales/en-GB/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: en_GB\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: English, United Kingdom\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# repost} other {# reposts}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# second} other {# seconds}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# unread item} other {# unread items}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# unread item} other {# unread items}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {#mo} other {#mo}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, one {1 more post} other {# more posts}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {follower} other {followers}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {following} other {following}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {like} other {likes}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {like} other {likes}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {post} other {posts}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {quote} other {quotes}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {repost} other {reposts}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {save} other {saves}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (Account)"
@@ -189,11 +193,11 @@ msgstr "{0} reacted {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} reacted {1} to {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, a feed by {1}, liked by {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, a list by {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {# users have}} joined!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# minute} other {# minutes}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# unread item} other {# unread items}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1} 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {follower} other {followers}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {following} other {following}}"
@@ -580,6 +584,11 @@ msgstr "A screenshot of a post with a new button next to the share button that a
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Add {0} more to continue"
msgid "Add {displayName} to starter pack"
msgstr "Add {displayName} to starter pack"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Add a content warning"
@@ -754,11 +763,11 @@ msgstr "Add alt text (optional)"
msgid "Add another account"
msgstr "Add another account"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Add another post"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Add another post to thread"
@@ -776,12 +785,12 @@ msgstr "Add App Password"
msgid "Add emoji reaction"
msgstr "Add emoji reaction"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Add image"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Add media to post"
@@ -871,7 +880,7 @@ msgstr "Additional details (limit 1000 characters)"
msgid "Additional details (limit 300 characters)"
msgstr "Additional details (limit 300 characters)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Adult"
@@ -879,10 +888,10 @@ msgstr "Adult"
msgid "Adult content"
msgstr "Adult content"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Adult Content"
@@ -894,8 +903,8 @@ msgstr "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgid "Adult content is disabled."
msgstr "Adult content is disabled."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Adult Content labels"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "All"
@@ -1017,7 +1026,7 @@ msgstr "Already have an account?"
msgid "Already signed in as @{0}"
msgstr "Already signed in as @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Alt text"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Alt Text"
@@ -1059,7 +1068,7 @@ msgstr "An email has been sent to {0}. It includes a confirmation code which you
msgid "An error has occurred"
msgstr "An error has occurred"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "An error occurred"
@@ -1067,7 +1076,7 @@ msgstr "An error occurred"
msgid "An error occurred while compressing the video."
msgstr "An error occurred while compressing the video."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "An error occurred while fetching suggested accounts."
@@ -1076,7 +1085,7 @@ msgstr "An error occurred while fetching suggested accounts."
msgid "An error occurred while fetching the feed."
msgstr "An error occurred while fetching the feed."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "An error occurred while generating your starter pack. Want to try again?"
@@ -1088,7 +1097,7 @@ msgstr "An error occurred while hiding suggestion. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "An error occurred while loading the video. Please try again later."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "An error occurred while loading the video. Please try again."
@@ -1181,7 +1190,7 @@ msgstr "Animal welfare"
msgid "Animals"
msgstr "Animals"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "Animated GIF"
@@ -1306,12 +1315,12 @@ msgstr "Apply default recommended feeds"
msgid "Apply Pull Request"
msgstr "Apply Pull Request"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Archived from {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Archived post"
@@ -1332,11 +1341,11 @@ msgstr "Are you sure you want to delete this starter pack?"
msgid "Are you sure you want to discard your changes?"
msgstr "Are you sure you want to discard your changes?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Are you sure you want to leave this conversation?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
@@ -1344,11 +1353,7 @@ msgstr "Are you sure you want to leave this conversation? Your messages will be
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Are you sure you want to remove this from your feeds?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Are you sure you'd like to discard this draft?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Are you sure you'd like to discard this post?"
@@ -1364,7 +1369,7 @@ msgstr "Are you writing in <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Art"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Artistic or non-erotic nudity."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Autoplay videos and GIFs"
@@ -1404,11 +1409,13 @@ msgstr "Available"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Back"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky cannot confirm the authenticity of the claimed date."
@@ -1623,7 +1630,7 @@ msgstr "Bluesky Social Terms of Service"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky will choose a set of recommended accounts from people in your network."
@@ -1664,20 +1671,20 @@ msgstr "Breaking site rules"
msgid "Browse custom feeds"
msgstr "Browse custom feeds"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "Browse more accounts"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Browse more feeds on the Explore page"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Browse more suggestions"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Browse more suggestions on the Explore page"
@@ -1770,8 +1777,8 @@ msgstr "Camera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Camera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Cancel search"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Cannot interact with a blocked user"
@@ -1901,9 +1908,9 @@ msgstr "Changes saved"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Chat"
@@ -1989,7 +1996,7 @@ msgstr "Choose domain verification method"
msgid "Choose Feeds"
msgstr "Choose Feeds"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Choose for me"
@@ -2096,6 +2103,7 @@ msgstr "Clip 🐴 clop 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Clip 🐴 clop 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,7 +2176,8 @@ msgstr "Close GIF dialog"
msgid "Close image"
msgstr "Close image"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr "Close image viewer"
@@ -2190,7 +2199,7 @@ msgstr "Close welcome modal"
msgid "Closes password update alert"
msgstr "Closes password update alert"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Closes post composer and discards post draft"
@@ -2242,12 +2251,12 @@ msgstr "Complete onboarding and start using your account"
msgid "Complete the challenge"
msgstr "Complete the challenge"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Compose new post"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Compose posts up to {0, plural, other {# characters}} in length"
@@ -2255,7 +2264,11 @@ msgstr "Compose posts up to {0, plural, other {# characters}} in length"
msgid "Compose reply"
msgstr "Compose reply"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Compressing video..."
@@ -2263,7 +2276,6 @@ msgstr "Compressing video..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Configure content filtering setting for category: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "Configure live event banner"
@@ -2272,8 +2284,8 @@ msgstr "Configure live event banner"
msgid "Configured in <0>moderation settings0>."
msgstr "Configured in <0>moderation settings0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "Contacts imported"
msgid "Contacts removed"
msgstr "Contacts removed"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Content & Media"
@@ -2389,7 +2401,7 @@ msgstr "Content promoting or depicting self-harm"
msgid "Content Warning"
msgstr "Content Warning"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Content warnings"
@@ -2401,7 +2413,7 @@ msgstr "Context menu backdrop, click to close the menu."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Continue"
@@ -2420,7 +2432,7 @@ msgstr "Continue thread..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "Could not follow all matches. {0}"
msgid "Could not leave chat"
msgstr "Could not leave chat"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Could not load feed"
@@ -2643,8 +2655,8 @@ msgstr "Create a QR code for a starter pack"
msgid "Create a starter pack"
msgstr "Create a starter pack"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Create a Starter Pack"
@@ -2654,12 +2666,12 @@ msgstr "Create a starter pack for me"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Create another"
msgid "Create moderation list"
msgstr "Create moderation list"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Create new account"
@@ -2772,7 +2784,7 @@ msgstr "Date of birth"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Deactivate account"
@@ -2871,7 +2883,7 @@ msgstr "Delete my account"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Delete post"
@@ -2981,7 +2993,7 @@ msgstr "Disable quote posts of this post"
msgid "Disable replies entirely"
msgstr "Disable replies entirely"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Disable subtitles"
@@ -2996,8 +3008,11 @@ msgstr "Disabled"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Discard"
@@ -3006,11 +3021,12 @@ msgstr "Discard"
msgid "Discard changes?"
msgstr "Discard changes?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Discard draft?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Discard post?"
@@ -3037,7 +3053,7 @@ msgstr "Dismiss"
msgid "Dismiss banner"
msgstr "Dismiss banner"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Dismiss error"
@@ -3049,11 +3065,16 @@ msgstr "Dismiss getting started guide"
msgid "Dismiss interests"
msgstr "Dismiss interests"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "Dismiss live event banner"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Dismiss this section"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Dismiss this suggestion"
@@ -3121,8 +3142,8 @@ msgstr "Don't worry! All existing messages and settings are saved and will be av
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Double tap or long press the message to add a reaction"
msgid "Double tap to close the dialog"
msgstr "Double tap to close the dialog"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Double tap to like"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Download Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Download CAR file"
msgid "Doxxing"
msgstr "Doxxing"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "Drafts"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Drop to add images"
@@ -3285,13 +3313,13 @@ msgstr "Edit post interaction settings"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Edit profile"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Edit Profile"
@@ -3413,7 +3441,7 @@ msgstr "Enable push notifications"
msgid "Enable quote posts of this post"
msgstr "Enable quote posts of this post"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Enable subtitles"
@@ -3421,13 +3449,13 @@ msgstr "Enable subtitles"
msgid "Enable this source only"
msgstr "Enable this source only"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Enable trending topics"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Enable trending videos in your Discover feed"
@@ -3464,7 +3492,7 @@ msgstr "Enter a word or tag"
msgid "Enter code"
msgstr "Enter code"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Enter fullscreen"
@@ -3501,7 +3529,7 @@ msgstr "Enter your password"
msgid "Enter your username and password"
msgstr "Enter your username and password"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Enters fullscreen"
@@ -3509,7 +3537,7 @@ msgstr "Enters fullscreen"
msgid "Entertainment"
msgstr "Entertainment"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Error"
@@ -3570,7 +3598,7 @@ msgstr "Exclude users you follow"
msgid "Excludes users you follow"
msgstr "Excludes users you follow"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Exit fullscreen"
@@ -3578,11 +3606,7 @@ msgstr "Exit fullscreen"
msgid "Exits account deletion process"
msgstr "Exits account deletion process"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Exits image view"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Expand alt text"
@@ -3598,11 +3622,11 @@ msgstr "Expand or collapse the full post you are replying to"
msgid "Expand post text"
msgstr "Expand post text"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Expands or collapses post text"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Expected URI to resolve to a record"
@@ -3639,7 +3663,7 @@ msgstr "Explicit sexual images."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Explore"
@@ -3657,8 +3681,8 @@ msgstr "Export my data"
msgid "Export My Data"
msgstr "Export My Data"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "External media"
@@ -3730,7 +3754,7 @@ msgstr "Failed to delete post, please try again"
msgid "Failed to delete starter pack"
msgstr "Failed to delete starter pack"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "Failed to follow all suggested accounts, please try again"
@@ -3829,6 +3853,10 @@ msgstr "Failed to remove verification"
msgid "Failed to resolve location. Please try again."
msgstr "Failed to resolve location. Please try again."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "Failed to save draft"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Feed"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Feed by {0}"
@@ -3941,7 +3970,7 @@ msgstr "Feed unavailable"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Feedback"
@@ -3958,7 +3987,7 @@ msgstr "Feedback sent to feed operator"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Feeds"
@@ -4008,6 +4037,10 @@ msgstr "Filter who you receive notifications from"
msgid "Finalizing"
msgstr "Finalising"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Find my friends"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Find people to follow"
@@ -4098,19 +4131,19 @@ msgstr "Focus code input"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Follow"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Follow {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Follow {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Follow account"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Follow account"
msgid "Follow all"
msgstr "Follow all"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Follow all accounts"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Follow back"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Followed all accounts!"
@@ -4195,8 +4228,8 @@ msgstr "Followers you know"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Following"
msgid "Following {0}"
msgstr "Following {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Following {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Following feed preferences"
@@ -4264,7 +4297,7 @@ msgstr "For security reasons, you won't be able to view this again. If you lose
msgid "For the best experience, we recommend using the theme font."
msgstr "For the best experience, we recommend using the theme font."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "For You"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "From <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Generate a starter pack"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Get help"
@@ -4376,10 +4409,15 @@ msgstr "Get notified when someone posts"
msgid "Get started"
msgstr "Get started"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Give your profile a face"
@@ -4394,12 +4432,12 @@ msgstr "Glorification of violence"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Go back"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "Going live is currently disabled for your account"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Graphic Media"
@@ -4592,7 +4630,7 @@ msgstr "Held by Bluesky for 7 days to prevent abuse, then deleted"
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Help"
@@ -4632,9 +4670,9 @@ msgstr "Hidden list"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Hide user list"
msgid "Hide verification badges"
msgstr "Hide verification badges"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Hides the content"
@@ -4760,9 +4798,9 @@ msgstr "Hold up! We’re gradually giving access to video and you’re still wai
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Home"
@@ -4819,7 +4857,7 @@ msgstr "I understand"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "If alt text is long, toggles alt text expanded state"
@@ -4872,7 +4910,7 @@ msgstr "If you want to restrict who can receive notifications for your account's
msgid "If you're a developer, you can host your own server."
msgstr "If you're a developer, you can host your own server."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "If you're trying to change your handle or email, do so before you deactivate."
@@ -4996,6 +5034,10 @@ msgstr "Interaction settings"
msgid "Introducing activity notifications"
msgstr "Introducing activity notifications"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "Introducing finding friends via contacts"
@@ -5089,7 +5131,7 @@ msgstr "It's just <0>{0} 0>right now! Add more people to your starter pack by
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "It's just you right now! Add more people to your starter pack by searching above."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "Job ID: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Keep me posted"
msgid "KWS website"
msgstr "KWS website"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Labelled by {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Labelled by the author."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Labels"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Labels added"
@@ -5218,8 +5260,8 @@ msgstr "Learn more about importing contacts"
msgid "Learn more about self hosting your PDS."
msgstr "Learn more about self-hosting your PDS."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Learn more about the moderation applied to this content"
@@ -5231,7 +5273,7 @@ msgstr "Learn more about these changes and how to share your thoughts with us by
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Learn more about these changes and how to share your thoughts with us by reading our blog post."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Learn more about this warning"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "Learn more in your <0>account settings.0>"
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Learn more."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Leave"
@@ -5286,7 +5328,7 @@ msgstr "Leaving Bluesky"
msgid "left to go."
msgstr "left to go."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Let me choose"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Like"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Like ({0, plural, one {# like} other {# likes}})"
@@ -5380,7 +5422,7 @@ msgstr "Likes of your reposts"
msgid "Likes of your reposts notifications"
msgstr "Likes of your reposts notifications"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Likes on this post"
@@ -5474,7 +5516,7 @@ msgstr "List unmuted"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Lists"
@@ -5496,10 +5538,20 @@ msgstr "LIVE"
msgid "Live event happening now: {0}"
msgstr "Live event happening now: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "Live event hidden"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "Live event options"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "Live event unhidden"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
@@ -5524,11 +5576,11 @@ msgstr "Load more"
msgid "Load more suggested feeds"
msgstr "Load more suggested feeds"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Load new notifications"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo by @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo by <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Make one for me"
msgid "Make sure this is where you intend to go!"
msgstr "Make sure this is where you intend to go!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Manage saved feeds"
@@ -5638,7 +5690,16 @@ msgstr "Maybe later"
msgid "Media"
msgstr "Media"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "Media stored on {0}"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "Media stored on another device"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Media that may be disturbing or inappropriate for some audiences."
@@ -5653,7 +5714,7 @@ msgstr "mentioned users"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Mentions"
@@ -5716,6 +5777,10 @@ msgstr "Miscellaneous notifications"
msgid "Misleading"
msgstr "Misleading"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "Missing media"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "More languages..."
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Films"
msgid "Music"
msgstr "Music"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Navigate to starter pack"
msgid "Navigates to the next screen"
msgstr "Navigates to the next screen"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Navigates to your profile"
@@ -5983,6 +6049,7 @@ msgstr "New email address"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "New Feature"
@@ -6018,12 +6085,12 @@ msgstr "New messages"
msgid "New password"
msgstr "New password"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "New post"
@@ -6085,7 +6152,7 @@ msgstr "News"
msgid "Next"
msgstr "Next"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Next image"
@@ -6114,6 +6181,10 @@ msgstr "No custom feeds yet"
msgid "No DNS Panel"
msgstr "No DNS Panel"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "No drafts yet"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "No expiry set"
@@ -6136,7 +6207,7 @@ msgstr "No image"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "No likes yet"
@@ -6150,7 +6221,7 @@ msgstr "No lists"
msgid "No longer following {0}"
msgstr "No longer following {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "No media yet"
@@ -6195,7 +6266,7 @@ msgstr "No posts yet"
msgid "No quotes yet"
msgstr "No quotes yet"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "No replies yet"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "No result"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "No results"
@@ -6238,7 +6309,7 @@ msgstr "No results."
msgid "No search results found for \"{search}\"."
msgstr "No search results found for \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "No Starter Packs yet"
@@ -6247,7 +6318,7 @@ msgstr "No Starter Packs yet"
msgid "No thanks"
msgstr "No thanks"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "No video posts yet"
@@ -6298,6 +6369,10 @@ msgstr "Not followed by anyone you're following"
msgid "Not Found"
msgstr "Not Found"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Note about sharing"
@@ -6321,7 +6396,7 @@ msgstr "Nothing saved yet"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Notification settings"
@@ -6349,10 +6424,10 @@ msgstr "Notification Sounds"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Notifications"
@@ -6368,8 +6443,8 @@ msgstr "now"
msgid "Now"
msgstr "Now"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Nudity"
@@ -6390,7 +6465,7 @@ msgstr "Oh no!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Okay"
@@ -6417,23 +6492,23 @@ msgstr "on<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Onboarding reset"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "One or more GIFs is missing alt text."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "One or more images is missing alt text."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "One or more of your selected files are not supported."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "One or more of your selected files are too large. Maximum size is 100 MB."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "One or more videos is missing alt text."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Oops, something went wrong!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Oops!"
msgid "Open avatar creator"
msgstr "Open avatar creator"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "Open camera"
@@ -6485,12 +6560,16 @@ msgstr "Open camera"
msgid "Open conversation options"
msgstr "Open conversation options"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "Open draft"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Open drawer menu"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Open emoji picker"
@@ -6557,7 +6636,7 @@ msgstr "Open system log"
msgid "Opens {0} feed"
msgstr "Opens {0} feed"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Opens a dialog to add a content warning to your post"
@@ -6589,25 +6668,25 @@ msgstr "Opens change handle dialog"
msgid "Opens composer"
msgstr "Opens composer"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "Opens device camera"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Opens emoji picker"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Opens flow to create a new Bluesky account"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Opens flow to sign in to your existing Bluesky account"
@@ -6620,7 +6699,7 @@ msgstr "Opens GIF select dialog"
msgid "Opens helpdesk in browser"
msgstr "Opens helpdesk in browser"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "Opens image picker"
@@ -6640,10 +6719,14 @@ msgstr "Opens password reset form"
msgid "Opens post language settings"
msgstr "Opens post language settings"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "Opens the post composer"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "Opens this draft in the composer"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "OTA status: None available"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Other"
@@ -6763,13 +6846,13 @@ msgstr "Password updated"
msgid "Password updated!"
msgstr "Password updated!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pause"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Pause video"
@@ -6829,7 +6912,7 @@ msgstr "Phone number verified"
msgid "Photography"
msgstr "Photography"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Pictures meant for adults."
@@ -6874,9 +6957,9 @@ msgstr "Pinned Feeds"
msgid "Pinned to your feeds"
msgstr "Pinned to your feeds"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Play"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Play {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Play video"
@@ -6893,11 +6976,11 @@ msgstr "Play video"
msgid "Play Video"
msgstr "Play Video"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Plays or pauses the GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Plays or pauses the video"
@@ -6909,7 +6992,7 @@ msgstr "Plays the GIF"
msgid "Plays the video"
msgstr "Plays the video"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Please add any content warning labels that are applicable for the media you are posting."
@@ -7066,31 +7149,31 @@ msgstr "Please write your message below:"
msgid "Politics"
msgstr "Politics"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Porn"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Post"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Post"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Post a photo"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Post a video"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Post All"
@@ -7217,7 +7300,7 @@ msgstr "Press to view followers of this account that you also follow"
msgid "Preview"
msgstr "Preview"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Previous image"
@@ -7257,8 +7340,8 @@ msgstr "Privacy and Security settings"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Privacy Policy"
@@ -7266,7 +7349,11 @@ msgstr "Privacy Policy"
msgid "Privacy violation of a minor"
msgstr "Privacy violation of a minor"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Processing video..."
@@ -7280,10 +7367,10 @@ msgstr "Processing..."
msgid "profile"
msgstr "profile"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profile"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Public, shareable lists of users to mute or block in bulk."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Publish post"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Publish posts"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Publish replies"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Publish reply"
@@ -7360,6 +7447,7 @@ msgstr "Quote notifications"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Quote post"
@@ -7385,7 +7473,7 @@ msgstr "Quote posts disabled"
msgid "Quotes"
msgstr "Quotes"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Quotes of this post"
@@ -7424,11 +7512,11 @@ msgstr "read about how to use search filters"
msgid "Read blog post"
msgstr "Read blog post"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Read less"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Read more"
@@ -7720,13 +7808,13 @@ msgstr "Replies disabled"
msgid "Replies to this post are disabled."
msgstr "Replies to this post are disabled."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Reply"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Reply ({0, plural, one {# reply} other {# replies}})"
@@ -7892,7 +7980,7 @@ msgstr "Reposted by you"
msgid "Reposts"
msgstr "Reposts"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Reposts of this post"
@@ -7996,14 +8084,14 @@ msgstr "Retries the last action, which errored out"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Return to previous page"
msgid "Returns to home page"
msgstr "Returns to home page"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Returns to previous page"
@@ -8063,7 +8151,7 @@ msgstr "Returns to the previous step"
msgid "Save"
msgstr "Save"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Save"
@@ -8076,9 +8164,26 @@ msgstr "Save birthdate"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Save changes"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "Save changes?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "Save draft"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "Save draft?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Save to my feeds"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Saved"
@@ -8155,7 +8260,7 @@ msgstr "Scroll to top"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Search"
@@ -8164,7 +8269,7 @@ msgstr "Search"
msgid "Search @{0}'s posts"
msgstr "Search @{0}'s posts"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Search by name or interest"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Search feeds"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "Search for \"{interestsDisplayName}\""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "Search for \"{interestsDisplayName}\" (active)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Search posts"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Search profiles"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Search..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Searches for profiles"
@@ -8283,12 +8388,12 @@ msgstr "See #{tag} posts by user"
msgid "See jobs at Bluesky"
msgstr "See jobs at Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "See more"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "See more suggested profiles"
@@ -8456,7 +8561,7 @@ msgstr "Select your preferred language for translations in your feed."
msgid "Select your preferred notification channels"
msgstr "Select your preferred notification channels"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "Selecting multiple media types is not supported."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Send Email"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Send feedback"
@@ -8566,7 +8671,7 @@ msgstr "Sets email for password reset"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Settings"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Settings saved"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Sexual activity or erotic nudity."
@@ -8634,7 +8739,7 @@ msgstr "Sexually Suggestive"
msgid "Share"
msgstr "Share"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Share"
@@ -8712,13 +8817,13 @@ msgstr "Share your favourite feed!"
msgid "Shared Preferences Tester"
msgstr "Shared Preferences Tester"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Show"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Show alt text"
@@ -8820,7 +8925,7 @@ msgstr "Show warning and filter from feeds"
msgid "Show when you’re live"
msgstr "Show when you’re live"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Shows information about when this post was created"
@@ -8828,8 +8933,8 @@ msgstr "Shows information about when this post was created"
msgid "Shows other accounts you can switch to"
msgstr "Shows other accounts you can switch to"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Shows the content"
@@ -8842,14 +8947,14 @@ msgstr "Shows the content"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Sign-in Required"
msgid "Signed in as @{0}"
msgstr "Signed in as @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Similar accounts"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "Skip contact sharing and continue to the app"
msgid "Skip introduction and start using your account"
msgstr "Skip introduction and start using your account"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Skip to next step"
@@ -8967,7 +9068,7 @@ msgstr "Software Dev"
msgid "Some of your verifications are invalid."
msgstr "Some of your verifications are invalid."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Some other feeds you might like"
@@ -8994,7 +9095,7 @@ msgstr "Something went wrong"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Something went wrong, please try again"
@@ -9020,7 +9121,7 @@ msgstr "Something went wrong. Please try again."
msgid "Something wrong? Let us know."
msgstr "Something wrong? Let us know."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Sorry, we're unable to load account suggestions at this time."
@@ -9113,7 +9214,11 @@ msgstr "Starter Packs"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Starter packs let you easily share your favourite feeds and people with your friends."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "Starter packs let you share your favourite feeds and people with your friends."
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "Starter Packs let you share your favourite feeds and people with your friends."
@@ -9181,11 +9286,11 @@ msgstr "Subscribe to @{0} to use these labels:"
msgid "Subscribe to account activity"
msgstr "Subscribe to account activity"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Subscribe to Labeller"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Subscribe to this labeller"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Suggested Accounts"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Suggested for you"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Suggestive"
@@ -9354,8 +9459,8 @@ msgstr "Terms"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Terms of Service"
@@ -9403,12 +9508,12 @@ msgstr "That username is already taken"
msgid "That's all, folks!"
msgstr "That's all, folks!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "That's everything!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "The account will be able to interact with you after unblocking."
@@ -9447,7 +9552,7 @@ msgstr "The Discover feed"
msgid "The Discover feed now knows what you like"
msgstr "The Discover feed now knows what you like"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
@@ -9527,7 +9632,7 @@ msgstr "Theme"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "There is no time limit for account deactivation, come back any time."
@@ -9711,6 +9816,10 @@ msgstr "This content is not viewable without a Bluesky account."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "This conversation is with a deleted or a deactivated account. Press for options"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "This draft will be permanently deleted."
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "This email is already associated with your account."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "This feed is empty! You may need to follow more users or tune your language settings."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "This feed is empty."
@@ -9798,7 +9907,7 @@ msgstr "This list is empty."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr "This post was deleted by its author"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "This post will be hidden from feeds and threads. This cannot be undone."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "This post's author has disabled quote posts."
@@ -9834,7 +9943,7 @@ msgstr "This reply will be sorted into a hidden section at the bottom of your th
msgid "This service has not provided terms of service or a privacy policy."
msgstr "This service has not provided terms of service or a privacy policy."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
@@ -9900,8 +10009,8 @@ msgstr "This will remove your post from this quote post for all users, and repla
msgid "Thread options"
msgstr "Thread options"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Thread preferences"
@@ -9951,7 +10060,7 @@ msgstr "Today"
msgid "Toggle to enable or disable adult content"
msgstr "Toggle to enable or disable adult content"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Toggles the sound"
@@ -9988,8 +10097,8 @@ msgstr "Topic"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Translate"
@@ -10091,15 +10200,15 @@ msgstr "Unavailable feed information"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Unblock"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Unblock"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Unblock account"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Unblock Account?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Undo"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Undo"
@@ -10142,7 +10255,7 @@ msgstr "Undo repost"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Undo repost ({0, plural, one {# repost} other {# reposts}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Unfollow {0}"
@@ -10151,7 +10264,7 @@ msgstr "Unfollow {0}"
msgid "Unfollow account"
msgstr "Unfollow account"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Unfollows the user"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Unlike"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Unlike ({0, plural, one {# like} other {# likes}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Unmute list"
msgid "Unmute thread"
msgstr "Unmute thread"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Unmute video"
@@ -10276,7 +10389,7 @@ msgstr "Unpinned list"
msgid "Unsnooze email reminder"
msgstr "Unsnooze email reminder"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Unsubscribe"
@@ -10285,7 +10398,7 @@ msgstr "Unsubscribe"
msgid "Unsubscribe from list"
msgstr "Unsubscribe from list"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Unsubscribe from this labeller"
@@ -10293,7 +10406,7 @@ msgstr "Unsubscribe from this labeller"
msgid "Unsubscribed from list"
msgstr "Unsubscribed from list"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Unsupported video type: {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "Upload from Files"
msgid "Upload from Library"
msgstr "Upload from Library"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Uploading images..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Uploading link thumbnail..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Uploading video..."
@@ -10389,8 +10506,8 @@ msgstr "Use default provider"
msgid "Use in-app browser"
msgstr "Use in-app browser"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Use in-app browser to open links"
@@ -10445,6 +10562,10 @@ msgstr "User Blocks You"
msgid "User list by {0}"
msgstr "User list by {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr "User List by {0}"
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "User list by you"
@@ -10597,8 +10718,8 @@ msgstr "Verifying..."
msgid "Version {0}"
msgstr "Version {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Video"
@@ -10614,20 +10735,24 @@ msgstr "Video Feed"
msgid "Video from {0}: {text}"
msgstr "Video from {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "Video from {0}. Tap to play or pause the video"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Video Games"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Video is paused"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Video is playing"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Video not found."
@@ -10635,11 +10760,11 @@ msgstr "Video not found."
msgid "Video settings"
msgstr "Video settings"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Video uploaded"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Video: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videos"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "Videos must be less than 3 minutes long."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "View"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "View {0}'s avatar"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "View {0}'s profile"
@@ -10708,7 +10833,7 @@ msgstr "View more"
msgid "View more trending videos"
msgstr "View more trending videos"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "View post"
@@ -10788,7 +10913,7 @@ msgstr "Violent or threatening content"
msgid "Visit site"
msgstr "Visit site"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Visit your notification settings"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "We're having issues initialising the age assurance process for your account. Please <0>contact support0> for assistance."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "We're having network issues, try again"
@@ -10968,7 +11093,7 @@ msgstr "We're sorry, but we weren't able to load your muted words at this time.
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "We're sorry, but your search could not be completed. Please try again in a few minutes."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "We're sorry! The post you are replying to has been deleted."
@@ -10977,7 +11102,7 @@ msgstr "We're sorry! The post you are replying to has been deleted."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "We're sorry! We can't find the page you were looking for."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "We're sorry! You can only subscribe to twenty labellers and you've reached your limit of twenty."
@@ -11018,10 +11143,9 @@ msgstr "What are your interests?"
msgid "What do you want to call your starter pack?"
msgstr "What do you want to call your starter pack?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "What's up?"
@@ -11097,6 +11221,14 @@ msgstr "Why should this user be reviewed?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Would you like to block this user and/or delete this conversation?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "Would you like to save this as a draft before viewing your drafts?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "Would you like to save this as a draft to edit later?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Write a message"
msgid "Write a post"
msgstr "Write a post"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Write post"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Write your reply"
@@ -11133,8 +11265,8 @@ msgstr "www.mylivestream.tv"
msgid "Yes"
msgstr "Yes"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Yes, deactivate"
@@ -11188,7 +11320,7 @@ msgstr "You are in line."
msgid "You are Live"
msgstr "You are Live"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "You are no longer live"
@@ -11200,7 +11332,7 @@ msgstr "You are not allowed to upload videos."
msgid "You are not following anyone yet"
msgstr "You are not following anyone yet"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "You are now live!"
@@ -11255,11 +11387,11 @@ msgstr "You can now choose to be notified when specific people post. If there’
msgid "You can now sign in with your new password."
msgstr "You can now sign in with your new password."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "You can only select one GIF at a time."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "You can only select one video at a time."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
@@ -11317,7 +11449,7 @@ msgstr "You have blocked this user"
msgid "You have blocked this user. You cannot view their content."
msgstr "You have blocked this user. You cannot view their content."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "You have completely disabled reply, quote and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
@@ -11376,6 +11508,14 @@ msgstr "You have successfully verified your email address. You can close this di
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "You have temporarily reached the limit for video uploads. Please try again later."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "You have unsaved changes to this draft, would you like to save them?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "You have unsaved changes. Would you like to save them before viewing your drafts?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "You haven't created a starter pack yet!"
@@ -11437,7 +11577,7 @@ msgstr "You must be {MIN_ACCESS_AGE} years of age or older to create an account.
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "You must be following at least seven other people to generate a starter pack."
@@ -11449,7 +11589,7 @@ msgstr "You must complete age assurance in order to access this screen."
msgid "You must grant access to your photo library to save a QR code"
msgstr "You must grant access to your photo library to save a QR code"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "You need to allow access to your media library."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "You're in line"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
@@ -11589,7 +11729,7 @@ msgstr "You've reached your daily limit for video uploads (too many bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "You've reached your daily limit for video uploads (too many videos)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "You've run out of videos to watch. Maybe it's a good time to take a break?"
@@ -11625,7 +11765,7 @@ msgstr "Your appeal has been submitted. If your appeal succeeds, you will receiv
msgid "Your birth date"
msgstr "Your birthdate"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Your browser does not support the video format. Please try a different browser."
@@ -11692,8 +11832,8 @@ msgstr "Your full handle will be <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Your interests"
@@ -11731,11 +11871,11 @@ msgstr "Your password has been changed successfully! Please use your new passwor
msgid "Your password must be at least 8 characters long."
msgstr "Your password must be at least 8 characters long."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "Your post was sent"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "Your posts were sent"
@@ -11752,11 +11892,11 @@ msgstr "Your profile picture"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "Your profile picture surrounded by concentric circles of other users' profile pictures"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Your profile, posts, feeds and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "Your reply was sent"
diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po
index b43ff5d120..79669e400e 100644
--- a/src/locale/locales/en/messages.po
+++ b/src/locale/locales/en/messages.po
@@ -579,6 +579,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -780,7 +785,7 @@ msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -1016,7 +1021,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1032,7 +1037,7 @@ msgstr ""
msgid "Alt text"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr ""
@@ -1058,7 +1063,7 @@ msgstr ""
msgid "An error has occurred"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr ""
@@ -1087,7 +1092,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr ""
@@ -1180,7 +1185,7 @@ msgstr ""
msgid "Animals"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:154
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr ""
@@ -1404,8 +1409,8 @@ msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
-#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
-#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:80
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:86
msgid "Back"
msgstr ""
@@ -2093,6 +2098,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2108,7 +2114,7 @@ msgstr ""
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:204
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
@@ -2253,7 +2259,11 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2295
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr ""
@@ -2978,7 +2988,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr ""
@@ -3170,9 +3180,10 @@ msgstr ""
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
#: src/view/com/composer/drafts/DraftsButton.tsx:65
#: src/view/com/composer/drafts/DraftsButton.tsx:74
-#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:112
msgid "Drafts"
msgstr ""
@@ -3425,7 +3436,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr ""
@@ -3476,7 +3487,7 @@ msgstr ""
msgid "Enter code"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr ""
@@ -3513,7 +3524,7 @@ msgstr ""
msgid "Enter your username and password"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr ""
@@ -3521,7 +3532,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2304
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr ""
@@ -3582,7 +3593,7 @@ msgstr ""
msgid "Excludes users you follow"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr ""
@@ -3610,7 +3621,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -4021,6 +4032,10 @@ msgstr ""
msgid "Finalizing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4389,10 +4404,15 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr ""
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr ""
@@ -5009,6 +5029,10 @@ msgstr ""
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5846,7 +5870,7 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -6020,6 +6044,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
@@ -6151,7 +6176,7 @@ msgstr ""
msgid "No DNS Panel"
msgstr ""
-#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:136
msgid "No drafts yet"
msgstr ""
@@ -6339,6 +6364,10 @@ msgstr ""
msgid "Not Found"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr ""
@@ -6466,11 +6495,11 @@ msgstr ""
msgid "One or more images is missing alt text."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
@@ -6639,7 +6668,7 @@ msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
@@ -6812,13 +6841,13 @@ msgstr ""
msgid "Password updated!"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr ""
@@ -6923,9 +6952,9 @@ msgstr ""
msgid "Pinned to your feeds"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr ""
@@ -6934,7 +6963,7 @@ msgid "Play {0}"
msgstr ""
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr ""
@@ -6942,11 +6971,11 @@ msgstr ""
msgid "Play Video"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr ""
@@ -7315,7 +7344,11 @@ msgstr ""
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2301
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr ""
@@ -8523,7 +8556,7 @@ msgstr ""
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8785,7 +8818,7 @@ msgstr ""
msgid "Show"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:183
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr ""
@@ -9018,6 +9051,10 @@ msgstr ""
msgid "Snoozes the reminder"
msgstr ""
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:148
+msgid "So many thoughts, you should post one"
+msgstr ""
+
#: src/components/WelcomeModal.tsx:150
msgid "Social media you control."
msgstr ""
@@ -10022,7 +10059,7 @@ msgstr ""
msgid "Toggle to enable or disable adult content"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr ""
@@ -10263,7 +10300,7 @@ msgstr ""
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10300,7 +10337,7 @@ msgstr ""
msgid "Unmute thread"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr ""
@@ -10438,16 +10475,20 @@ msgstr ""
msgid "Upload from Library"
msgstr ""
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr ""
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2298
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr ""
@@ -10676,8 +10717,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr ""
@@ -10710,7 +10751,7 @@ msgstr ""
msgid "Video is playing"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr ""
@@ -10718,11 +10759,11 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2308
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr ""
@@ -10730,7 +10771,7 @@ msgstr ""
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
@@ -11345,11 +11386,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11358,7 +11399,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr ""
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11547,7 +11588,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11723,7 +11764,7 @@ msgstr ""
msgid "Your birth date"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr ""
diff --git a/src/locale/locales/eo/messages.po b/src/locale/locales/eo/messages.po
index e4db492b20..99306ae04f 100644
--- a/src/locale/locales/eo/messages.po
+++ b/src/locale/locales/eo/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: eo\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Esperanto\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# reafiŝo} other {# reafiŝoj}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# sekundo} other {# sekundoj}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {#mo} other {#mo}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, one {1 pli afiŝo} other {# pli afiŝoj}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {sekvanto} other {sekvantoj}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {sekvata} other {sekvataj}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {ŝato} other {ŝatoj}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {ŝato} other {ŝatoj}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {afiŝo} other {afiŝoj}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citaĵo} other {citaĵoj}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {reafiŝo} other {reafiŝoj}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {konservo} other {konservoj}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (Konto)"
@@ -189,11 +193,11 @@ msgstr "{0} reagis per {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} reagis per {1} al {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, fluo de {1}, ŝatata de {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, listo de {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, one {# uzanto}other {# uzantoj}} aliĝis!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# minuto} other {# minutoj}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>kaj {2, plural, one {# alia} other {# aliaj}} estas en via startpako"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {sekvanto} other {sekvantoj}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {sekvata} other {sekvataj}}"
@@ -580,6 +584,11 @@ msgstr "Ekrankopio montranta afiŝon kun nova butono, apud la konigi-butono, kiu
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Ekrankopio montranta paĝon kun sonorila piktogramo apud la sekvi-butono, kiu estas la nova funkcio \"agadaj sciigoj\"."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Aldoni {0} pli por daŭrigi"
msgid "Add {displayName} to starter pack"
msgstr "Aldoni {displayName} al la startpako"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Aldoni averton pri enhavo"
@@ -754,11 +763,11 @@ msgstr "Aldoni alternativan tekston (nedeviga)"
msgid "Add another account"
msgstr "Aldoni plian konton"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Aldoni plian afiŝon"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Aldoni plian afiŝon al fadeno"
@@ -776,12 +785,12 @@ msgstr "Aldoni apan pasvorton"
msgid "Add emoji reaction"
msgstr "Aldoni emoĝian reagon"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Aldoni bildon"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Aldoni aŭdvidaĵojn al afiŝo"
@@ -871,7 +880,7 @@ msgstr "Aldonaj detaloj (limo de 1000 signoj)"
msgid "Additional details (limit 300 characters)"
msgstr "Aldonaj detaloj (limo de 300 signoj)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Poradolta"
@@ -879,10 +888,10 @@ msgstr "Poradolta"
msgid "Adult content"
msgstr "Poradolta enhavo"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Poradolta enhavo"
@@ -894,8 +903,8 @@ msgstr "Poradolta enhavo povas esti ebligita nur reteje ĉe <0>bsky.app0>."
msgid "Adult content is disabled."
msgstr "Poradolta enhavo estas malebligita."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Etikedoj pri poradolta enhavo"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "ludoviko@ekzemplo.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Ĉiuj"
@@ -1017,7 +1026,7 @@ msgstr "Ĉu vi jam havas konton?"
msgid "Already signed in as @{0}"
msgstr "Jam ensalutinta kiel @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Alternativa teksto"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Alternativa teksto"
@@ -1059,7 +1068,7 @@ msgstr "Retmesaĝo estis sendita al {0}. Ĝi enhavas konfirmkodon, kiun vi povas
msgid "An error has occurred"
msgstr "Eraro okazis"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Eraro okazis"
@@ -1067,7 +1076,7 @@ msgstr "Eraro okazis"
msgid "An error occurred while compressing the video."
msgstr "Eraro okazis dum densigo de la videaĵo."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "Eraro okazis dum ŝargado de proponitaj kontoj."
@@ -1076,7 +1085,7 @@ msgstr "Eraro okazis dum ŝargado de proponitaj kontoj."
msgid "An error occurred while fetching the feed."
msgstr "Eraro okazis dum ŝargado de la fluo."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Eraro okazis dum generado de via startpako. Ĉu vi volas reprovi?"
@@ -1088,7 +1097,7 @@ msgstr "Eraro okazis dum kaŝado de propono. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "Eraro okazis dum ŝargado de la videaĵo. Bonvolu reprovi poste."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Eraro okazis dum ŝargado de la videaĵo. Bonvolu reprovi."
@@ -1158,7 +1167,7 @@ msgstr "Ekrankopio de iPhone montranta la Bluesky-apon malfermitan kun la profil
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:164
msgid "An unknown error occurred."
-msgstr ""
+msgstr "Nekonata eraro okazis."
#: src/components/moderation/ModerationDetailsDialog.tsx:136
#: src/lib/moderation/useModerationCauseDescription.ts:145
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Bestoj"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF-movbildo"
@@ -1306,12 +1315,12 @@ msgstr "Apliki defaŭltajn rekomenditajn fluojn"
msgid "Apply Pull Request"
msgstr "Apliki tirpeton"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Arkivigita de {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Arkivigita afiŝo"
@@ -1332,11 +1341,11 @@ msgstr "Ĉu vi certas, ke vi volas forigi ĉi tiun startpakon?"
msgid "Are you sure you want to discard your changes?"
msgstr "Ĉu vi certas, ke vi volas forĵeti viajn ŝanĝojn?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Ĉu vi certas ke vi volas foriri el ĉi tiu konversacio?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Ĉu vi certas, ke vi volas foriri el ĉi tiu konversacio? La mesaĝoj estos forigitaj por vi, sed ne por la alia partoprenanto."
@@ -1344,11 +1353,7 @@ msgstr "Ĉu vi certas, ke vi volas foriri el ĉi tiu konversacio? La mesaĝoj es
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Ĉu vi certas, ke vi volas forigi ĉi tion el viaj fluoj?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Ĉu vi certas, ke vi volas forĵeti ĉi tiun malneton?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Ĉu vi certas, ke vi volas forĵeti ĉi tiun afiŝon?"
@@ -1364,7 +1369,7 @@ msgstr "Ĉu vi tajpas en <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Arto"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Arta aŭ ne-erotika nudeco."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Nordobrilo"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Aŭtomate ludi videaĵojn kaj GIF-ojn"
@@ -1404,11 +1409,13 @@ msgstr "Disponebla"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Reen"
@@ -1578,7 +1585,7 @@ msgstr "Blogo"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky ne povas konfirmi la aŭtentecon de la donita dato."
@@ -1623,7 +1630,7 @@ msgstr "Uzokondiĉoj de Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky elektos aron de rekomenditaj kontoj de homoj en via reto."
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr "Foliumi proprajn fluojn"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "Foliumi pli da kontoj"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Foliumi pli da fluoj sur la paĝo Esplori"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Foliumi pli da proponoj"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Foliumi pli da proponoj sur la paĝo Esplori"
@@ -1770,8 +1777,8 @@ msgstr "Fotilo"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Fotilo"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Nuligi serĉon"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Ne eblas interagi kun blokita uzanto"
@@ -1901,9 +1908,9 @@ msgstr "Ŝanĝoj konservitaj"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Babilejoj"
@@ -1989,7 +1996,7 @@ msgstr "Elektu metodon por konfirmi vian domajnon"
msgid "Choose Feeds"
msgstr "Elektu fluojn"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Elektu por mi"
@@ -2096,6 +2103,7 @@ msgstr "🐮 Dek bovinoj 🐮"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "🐮 Dek bovinoj 🐮"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,7 +2176,8 @@ msgstr "Fermi la GIF-dialogujon"
msgid "Close image"
msgstr "Fermi bildon"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr "Fermi bildmontrilon"
@@ -2190,7 +2199,7 @@ msgstr "Fermi bonvenon-fenestron"
msgid "Closes password update alert"
msgstr "Fermas la averton pri pasvorta ĝisdatigo"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Fermas afiŝan redaktilon kaj forĵetas afiŝan malneton"
@@ -2242,12 +2251,12 @@ msgstr "Finu la lernilon kaj komencu uzi vian konton"
msgid "Complete the challenge"
msgstr "Plenumi la defion"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Krei novan afiŝon"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Krei afiŝojn maksimume {0, plural, one {# signon}other {# signojn}} longajn"
@@ -2255,7 +2264,11 @@ msgstr "Krei afiŝojn maksimume {0, plural, one {# signon}other {# signojn}} lon
msgid "Compose reply"
msgstr "Krei respondon"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Densigado de videaĵo..."
@@ -2263,7 +2276,6 @@ msgstr "Densigado de videaĵo..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Konfiguru enhavan filtradon por kategorio: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Agordita en <0>agordoj de kontrolado0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2329,7 +2341,7 @@ msgstr "Kontakti subtenejon"
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:64
#: src/screens/Settings/FindContactsSettings.tsx:156
msgid "Contact sync is not available on this device, as the app is unable to access your contacts."
-msgstr ""
+msgstr "Kontakta sinkronigo ne estas disponebla sur ĉi tiu aparato, ĉar la apo ne eblas aliri viajn kontaktojn."
#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:95
msgid "Contact us"
@@ -2343,7 +2355,7 @@ msgstr "Kontaktoj importitaj"
msgid "Contacts removed"
msgstr "Kontaktoj forigitaj"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Enhavo kaj aŭdvidaĵoj"
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "Averto de enhavo"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Avertoj de enhavo"
@@ -2401,7 +2413,7 @@ msgstr "Fono de kuntekstmenuo, alklaku por fermi la menuon."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Daŭrigi"
@@ -2420,7 +2432,7 @@ msgstr "Daŭrigi fadenon..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "Ne eblis foriri el babilejo"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Ne eblis ŝargi fluon"
@@ -2614,7 +2626,7 @@ msgstr "Ne eblis alŝuti kontaktojn. {0}"
#: src/components/contacts/screens/GetContacts.tsx:164
msgid "Could not upload contacts. You need to re-verify your phone number to proceed"
-msgstr ""
+msgstr "Ne eblis alŝuti kontaktojn. Vi bezonas rekonfirmi vian telefononumeron por daŭrigi"
#: src/components/InternationalPhoneCodeSelect.tsx:80
msgid "Country code"
@@ -2643,8 +2655,8 @@ msgstr "Krei QR-kodon por startpako"
msgid "Create a starter pack"
msgstr "Krei startpakon"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Krei startpakon"
@@ -2654,12 +2666,12 @@ msgstr "Krei startpakon por mi"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Krei plian"
msgid "Create moderation list"
msgstr "Krei la kontrol-liston"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Krei novan konton"
@@ -2772,7 +2784,7 @@ msgstr "Naskiĝdato"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Malaktivigi konton"
@@ -2871,7 +2883,7 @@ msgstr "Forigi mian konton"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Forigi afiŝon"
@@ -2981,7 +2993,7 @@ msgstr "Malebligi citafiŝojn de ĉi tiu afiŝo"
msgid "Disable replies entirely"
msgstr "Malebligi respondojn entute"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Malŝalti subtekstojn"
@@ -2996,8 +3008,11 @@ msgstr "Malŝaltita"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Forĵeti"
@@ -3006,11 +3021,12 @@ msgstr "Forĵeti"
msgid "Discard changes?"
msgstr "Ĉu forĵeti ŝanĝojn?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Ĉu forĵeti malneton?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Ĉu forĵeti afiŝon?"
@@ -3035,9 +3051,9 @@ msgstr "Ignori"
#: src/components/contacts/FindContactsBannerNUX.tsx:76
msgid "Dismiss banner"
-msgstr ""
+msgstr "Fermi rubandon"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Ignori eraron"
@@ -3049,11 +3065,16 @@ msgstr "Ignori enkondukon"
msgid "Dismiss interests"
msgstr "Forĵeti interesojn"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Ignori ĉi tiun sekcion"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Ignori ĉi tiun proponon"
@@ -3121,8 +3142,8 @@ msgstr "Ne maltrankvilu! Ĉiuj ekzistantaj mesaĝoj kaj agordoj estas konservita
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Duoble tuŝetu aŭ longe premu la mesaĝon por aldoni reagon"
msgid "Double tap to close the dialog"
msgstr "Duoble tuŝeti por fermi la dialogujon"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Duoble tuŝeti por ŝati"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Elŝuti Bluesky-apon"
@@ -3164,6 +3185,13 @@ msgstr "Elŝuti CAR-dosieron"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "Malnetoj"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Demetu bildojn por aldoni"
@@ -3285,13 +3313,13 @@ msgstr "Redakti interagajn agordojn de afiŝo"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Redakti profilon"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Redakti profilon"
@@ -3413,7 +3441,7 @@ msgstr "Ŝalti ŝprucosciigojn"
msgid "Enable quote posts of this post"
msgstr "Ebligi citafiŝojn de ĉi tiu afiŝo"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Ŝalti subtekstojn"
@@ -3421,13 +3449,13 @@ msgstr "Ŝalti subtekstojn"
msgid "Enable this source only"
msgstr "Ŝalti nur ĉi tiun fonton"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Videbligi popularajn temojn"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Videbligi popularajn videaĵojn en via fluo Discover"
@@ -3464,7 +3492,7 @@ msgstr "Entajpu vorton aŭ kradvorton"
msgid "Enter code"
msgstr "Entajpu kodon"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Ŝalti plenekranon"
@@ -3501,7 +3529,7 @@ msgstr "Entajpu vian pasvorton"
msgid "Enter your username and password"
msgstr "Entajpu vian uzantnomon kaj pasvorton"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Ŝaltas plenekranon"
@@ -3509,7 +3537,7 @@ msgstr "Ŝaltas plenekranon"
msgid "Entertainment"
msgstr "Amuzo"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Eraro"
@@ -3570,7 +3598,7 @@ msgstr "Ekskluzivi uzantojn, kiujn vi sekvas"
msgid "Excludes users you follow"
msgstr "Ekskluzivas uzantojn, kiujn vi sekvas"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Malŝalti plenekranon"
@@ -3578,11 +3606,7 @@ msgstr "Malŝalti plenekranon"
msgid "Exits account deletion process"
msgstr "Eliri el la procezo de kontoforigo"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Eliri el la bildmontro"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Etendi alternativan tekston"
@@ -3598,11 +3622,11 @@ msgstr "Etendi aŭ maletendi la tutan afiŝon, al kiu vi respondas"
msgid "Expand post text"
msgstr "Etendi afiŝan tekston"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Etendas aŭ maletendas la tekston de la afiŝo"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Espektas uri-on gvidantan al rikordo"
@@ -3639,7 +3663,7 @@ msgstr "Detalaj seksumaj bildoj."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Esplori"
@@ -3657,8 +3681,8 @@ msgstr "Eksporti miajn datumojn"
msgid "Export My Data"
msgstr "Eksporti miajn datumojn"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Eksteraj aŭdvidaĵoj"
@@ -3730,7 +3754,7 @@ msgstr "Malsukcesis forigi afiŝon, bonvolu reprovi"
msgid "Failed to delete starter pack"
msgstr "Malsukcesis forigi startpakon"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "Malsukcesis sekvi ĉiujn proponitajn kontojn, bonvolu reprovi"
@@ -3744,7 +3768,7 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:581
msgid "Failed to launch SMS app"
-msgstr ""
+msgstr "Malsukcesis lanĉi SMS-apon"
#: src/screens/Messages/ChatList.tsx:282
#: src/screens/Messages/Inbox.tsx:209
@@ -3829,6 +3853,10 @@ msgstr "Malsukcesis forigi konfirmon"
msgid "Failed to resolve location. Please try again."
msgstr "Malsukcesis trovi la lokon. Bonvolu reprovi."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "Malsukcesis konservi malneton"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Fluo"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Fluo de {0}"
@@ -3941,7 +3970,7 @@ msgstr "Fluo ne disponebla"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Prikomentado"
@@ -3958,7 +3987,7 @@ msgstr "Prikomentado sendita al operatoro de la fluo"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Fluoj"
@@ -4008,6 +4037,10 @@ msgstr "Filtri de kiuj vi ricevos sciigojn"
msgid "Finalizing"
msgstr "Finante"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Finfine! Vidu afiŝojn kiuj gravas al vi. Konservu ilin por reviziti iam ajn."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Trovi miajn amikojn"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Trovi homojn por sekvi"
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Sekvi"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Sekvi {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Sekvi {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Sekvi konton"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Sekvi konton"
msgid "Follow all"
msgstr "Sekvi ĉiujn"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Eksekvu ĉiujn kontojn"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Sekvi reciproke"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Ĉiuj kontoj eksekvitaj!"
@@ -4195,8 +4228,8 @@ msgstr "Sekvantoj, kiujn vi konas"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Sekvas"
msgid "Following {0}"
msgstr "Sekvas {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Sekvas {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Preferoj de la fluo pri sekvatoj"
@@ -4264,7 +4297,7 @@ msgstr "Por sekurecaj kialoj, vi ne povos vidi ĉi tion denove. Se vi perdas ĉi
msgid "For the best experience, we recommend using the theme font."
msgstr "Por la plej bona ĝuo, ni rekomendas uzi la tiparon de la etoso."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Por vi"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "De <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Generi startpakon"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Akiri helpon"
@@ -4376,10 +4409,15 @@ msgstr "Esti sciigota kiam iu afiŝos"
msgid "Get started"
msgstr "Enkonduko"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Donu vizaĝon al via profilo"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Reen"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Maldeca aŭdvidaĵo"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Helpo"
@@ -4632,9 +4670,9 @@ msgstr "Kaŝita listo"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4652,7 +4690,7 @@ msgstr "Kaŝi"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:138
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:145
msgid "Hide all events"
-msgstr ""
+msgstr "Kaŝi ĉiujn evetojn"
#: src/components/dialogs/Embed.tsx:128
msgid "Hide customization options"
@@ -4684,7 +4722,7 @@ msgstr "Kaŝi ĉi tiun karton"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:126
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:133
msgid "Hide this event"
-msgstr ""
+msgstr "Kaŝi ĉi tiun eventon"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:771
msgid "Hide this post?"
@@ -4717,8 +4755,8 @@ msgstr "Kaŝi la liston de uzantoj"
msgid "Hide verification badges"
msgstr "Kaŝi konfirmajn ŝildojn"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Kaŝas la enhavon"
@@ -4760,9 +4798,9 @@ msgstr "Momenton! Ni iom post iom donas aliron al la videaĵo, kaj vi ankoraŭ a
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Hejmo"
@@ -4819,7 +4857,7 @@ msgstr "Mi komprenas"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "Mi estas ĉe Bluesky kiel {0} - venu trovi min! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Se alternativa teksto estas longa, baskulas ĝian malvolvon"
@@ -4872,7 +4910,7 @@ msgstr "Se vi volas limigi kiu povos ricevi sciigojn pri agado de via konto, vi
msgid "If you're a developer, you can host your own server."
msgstr "Se vi estas programisto, vi povas gastigi vian propran servilon."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Se vi provas ŝanĝi vian identigilon aŭ retpoŝtadreson, faru tion antaŭ ol malaktivigi vian konton."
@@ -4996,6 +5034,10 @@ msgstr "Agordoj pri interagado"
msgid "Introducing activity notifications"
msgstr "Ni prezentas \"agadaj sciigoj\""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr "<0>{0} 0>estas sola ĉi-momente! Aldoni pli da homoj al via startpako
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Vi estas sola ĉi-momente! Aldoni pli da homoj al via startpako serĉante supre."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID de laboro: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Informadi min"
msgid "KWS website"
msgstr "Retejo de KWS"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Etikedita de {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Etikedita de la aŭtoro."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Etikedoj"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Etikedoj aldonitaj"
@@ -5218,8 +5260,8 @@ msgstr "Eksciu pli pri importado de kontaktoj"
msgid "Learn more about self hosting your PDS."
msgstr "Eksciu pli pri gastigado de via PDS."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Eksciu pli pri la kontrolado farita al ĉi tiu enhavo"
@@ -5231,7 +5273,7 @@ msgstr "Eksciu pli pri tiuj ŝanĝoj kaj kiel konigi viajn opiniojn al ni <0>leg
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Eksciu pli pri tiuj ŝanĝoj kaj kiel konigi viajn opiniojn al ni legante nian blogafiŝon."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Eksciu pli pri ĉi tiu averto"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "Eksciu pli en viaj <0>kontaj agordoj0>."
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Eksciu pli."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Foriri"
@@ -5286,7 +5328,7 @@ msgstr "Elirante el Bluesky"
msgid "left to go."
msgstr "restas."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Lasu min elekti"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Ŝati"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Ŝati ({0, plural, one {# ŝato} other {# ŝatoj}})"
@@ -5380,7 +5422,7 @@ msgstr "Ŝatoj de viaj reafiŝoj"
msgid "Likes of your reposts notifications"
msgstr "Sciigoj pri ŝatoj de viaj reafiŝoj"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Ŝatoj de ĉi tiu afiŝo"
@@ -5474,7 +5516,7 @@ msgstr "Listo malsilentigita"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Listoj"
@@ -5496,10 +5538,20 @@ msgstr "TUJELSENDAS"
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Ŝargi pli"
msgid "Load more suggested feeds"
msgstr "Ŝargi pliajn proponitajn fluojn"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Ŝargi novajn sciigojn"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Emblemo farita de @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Emblemo farita de <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Faru ĝin por mi"
msgid "Make sure this is where you intend to go!"
msgstr "Certiĝu, ke vi volas iri tien!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Administri la konservitajn fluojn"
@@ -5638,7 +5690,16 @@ msgstr "Eble poste"
msgid "Media"
msgstr "Aŭdvidaĵoj"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Aŭdvidaĵoj, kiuj povas esti maltrankviligaj aŭ nekonvenaj por kelkaj spektantoj."
@@ -5653,7 +5714,7 @@ msgstr "menciitaj uzantoj"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Mencioj"
@@ -5716,6 +5777,10 @@ msgstr "Sciigoj aliaj"
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "Pliaj lingvoj..."
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Filmoj"
msgid "Music"
msgstr "Muziko"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Iri al startpako"
msgid "Navigates to the next screen"
msgstr "Iras al la sekva ekrano"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Iras al via profilo"
@@ -5983,6 +6049,7 @@ msgstr "Nova retpoŝtadreso"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Nova funkcio"
@@ -6018,12 +6085,12 @@ msgstr "Novaj mesaĝoj"
msgid "New password"
msgstr "Nova pasvorto"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Nova afiŝo"
@@ -6085,7 +6152,7 @@ msgstr "Novaĵoj"
msgid "Next"
msgstr "Sekva"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Sekva bildo"
@@ -6114,6 +6181,10 @@ msgstr "Ankoraŭ neniu propra fluo"
msgid "No DNS Panel"
msgstr "Ne estas DNS-panelo"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Neniu eksvalidiĝo agordita"
@@ -6136,7 +6207,7 @@ msgstr "Sen bildo"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Ankoraŭ neniu ŝato"
@@ -6150,7 +6221,7 @@ msgstr "Neniu listo"
msgid "No longer following {0}"
msgstr "Vi ne plu sekvas {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "Ankoraŭ neniu aŭdvidaĵo"
@@ -6195,7 +6266,7 @@ msgstr "Ankoraŭ neniu afiŝo"
msgid "No quotes yet"
msgstr "Ankoraŭ neniu citaĵo"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "Ankoraŭ neniu respondo"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Sen rezulto"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Sen rezultoj"
@@ -6238,7 +6309,7 @@ msgstr "Sen rezultoj."
msgid "No search results found for \"{search}\"."
msgstr "Neniu serĉrezulto trovita por \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "Anoraŭ neniu startpako"
@@ -6247,7 +6318,7 @@ msgstr "Anoraŭ neniu startpako"
msgid "No thanks"
msgstr "Ne, dankon"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr "Sekvata de neniu el viaj sekvatoj"
msgid "Not Found"
msgstr "Netrovita"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Noto pri kundivido"
@@ -6321,7 +6396,7 @@ msgstr "Ankoraŭ nenio konservita"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Sciigaj agordoj"
@@ -6349,10 +6424,10 @@ msgstr "Sciigaj sonoj"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Sciigoj"
@@ -6368,8 +6443,8 @@ msgstr "nun"
msgid "Now"
msgstr "Nun"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Nudeco"
@@ -6390,7 +6465,7 @@ msgstr "Ho ve!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "Bone"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Bone"
@@ -6417,23 +6492,23 @@ msgstr "ĉe<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Restarigi la lernilon"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Al unu aŭ pli da GIF-oj mankas alt-teksto."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Al unu aŭ pli da bildoj mankas alternativa teksto."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "Unu aŭ pli el viaj elektitaj dosieroj ne estas subtenata."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "Unu aŭ pli el viaj elektitaj dosieroj estas tro grandaj. Maksimuma grando estas 100 MB."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Al unu aŭ pli da videaĵoj mankas alternativa teksto."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ups, io misfunkciis!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ups!"
msgid "Open avatar creator"
msgstr "Malfermi la profilbildan kreilon"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "Malfermi la opciojn pri konversacio"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "Malfermi malneton"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Malfermi flankmenuon"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Malfermi emoĝi-elektilon"
@@ -6557,7 +6636,7 @@ msgstr "Malfermi sisteman protokolon"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Malfermas dialogujon por aldoni averton pri enhavo al via afiŝo"
@@ -6589,25 +6668,25 @@ msgstr "Malfermas dialogujon por ŝanĝi la identigilon"
msgid "Opens composer"
msgstr "Malfermas afiŝ-kreilon"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "Malfermas aparatan galerion por elekti ĝis {MAX_IMAGES, plural, other {# bildojn}}, aŭ unuopan videaĵon aŭ GIF-on."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Malfermas emoĝi-elektilon"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Malfermas procezon de kreado de nova Bluesky-konto"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Malfermas procezon de ensalutado al via ekzistanta Bluesky-konto"
@@ -6620,7 +6699,7 @@ msgstr "Malfermas GIF-elektilan dialogujon"
msgid "Opens helpdesk in browser"
msgstr "Malfermas la helpocentron en retumilo"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "Malfermas la bildo-elektilon"
@@ -6640,10 +6719,14 @@ msgstr "Malfermas formularon por restarigi la pasvorton"
msgid "Opens post language settings"
msgstr "Malfermi agordojn de afiŝaj lingvoj"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "OTA stato: Neniu disponebla"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Alia"
@@ -6763,13 +6846,13 @@ msgstr "Pasvorto ĝisdatigita"
msgid "Password updated!"
msgstr "Pasvorto ĝisdatigita!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Paŭzigi"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Paŭzigi videaĵon"
@@ -6810,7 +6893,7 @@ msgstr "Aldoni/Forigi personon"
#: src/components/contacts/components/InviteInfo.tsx:59
msgid "Personalize the message"
-msgstr ""
+msgstr "Tajlori la mesaĝon"
#: src/lib/interests.ts:68
msgid "Pets"
@@ -6829,7 +6912,7 @@ msgstr "Telefononumero konfirmita"
msgid "Photography"
msgstr "Fotografio"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Bildoj destinitaj por adoltoj."
@@ -6874,9 +6957,9 @@ msgstr "Alpinglitaj fluoj"
msgid "Pinned to your feeds"
msgstr "Alpinglita al viaj fluoj"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Ludi"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Ludi {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Ludi videaĵon"
@@ -6893,11 +6976,11 @@ msgstr "Ludi videaĵon"
msgid "Play Video"
msgstr "Ludi videaĵon"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Ludas aŭ paŭzigas la GIF-on"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Ludas aŭ paŭzigas la videaĵon"
@@ -6909,7 +6992,7 @@ msgstr "Ludas la GIF-on"
msgid "Plays the video"
msgstr "Ludas la videaĵon"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Bonvolu aldoni ĉiujn avertajn etikedojn de la enhavo, kiuj aplikeblas al la aŭdvidaĵo, kiun vi afiŝas."
@@ -7066,31 +7149,31 @@ msgstr "Bonvolu tajpi vian mesaĝon sube:"
msgid "Politics"
msgstr "Politiko"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornografio"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Afiŝo"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Afiŝi"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Afiŝi foton"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Afiŝi videaĵon"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Afiŝi ĉiujn"
@@ -7215,9 +7298,9 @@ msgstr "Premu por vidi sekvantojn de ĉi tiu konto kiun vi ankaŭ sekvas"
#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:119
msgid "Preview"
-msgstr ""
+msgstr "Antaŭmontro"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Antaŭa bildo"
@@ -7257,8 +7340,8 @@ msgstr "Agordoj de privateco kaj sekureco"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Regularo pri privateco"
@@ -7266,7 +7349,11 @@ msgstr "Regularo pri privateco"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Pritraktado de videaĵo..."
@@ -7280,10 +7367,10 @@ msgstr "Pritraktado..."
msgid "profile"
msgstr "profilo"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profilo"
@@ -7298,29 +7385,29 @@ msgstr ""
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:162
msgid "Psst! You can edit who can interact with this post."
-msgstr ""
+msgstr "Psst! Vi povas redakti, kiu povas interagi kun ĉi tiu afiŝo."
#: src/view/com/lists/MyLists.tsx:77
msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Publikaj kaj kundivideblaj listoj por bloki aŭ silentigi uzantojn amase."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Publikigi afiŝon"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Publikigi afiŝojn"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Publikigi respondojn"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Publikigi respondon"
@@ -7360,6 +7447,7 @@ msgstr "Sciigoj pri citaĵoj"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Citi afiŝon"
@@ -7385,7 +7473,7 @@ msgstr "Citafiŝoj malebligitaj"
msgid "Quotes"
msgstr "Citaĵoj"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Citaĵoj de ĉi tiu afiŝo"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr "Legu blogafiŝon"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Legi malpli"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Legi pli"
@@ -7720,13 +7808,13 @@ msgstr "Respondoj malebligitaj"
msgid "Replies to this post are disabled."
msgstr "Respondoj por ĉi tiu afiŝo estis malebligitaj."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Respondi"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Respondi ({0, plural, one {# respondo} other {# respondoj}})"
@@ -7892,7 +7980,7 @@ msgstr "Reafiŝita de vi"
msgid "Reposts"
msgstr "Reafiŝoj"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Reafiŝoj de ĉi tiu afiŝo"
@@ -7996,14 +8084,14 @@ msgstr "Reprovas la lastan agon, kiu eraris"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Reveni al la antaŭa paĝo"
msgid "Returns to home page"
msgstr "Revenas al hejmpaĝo"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Revenas al antaŭa paĝo"
@@ -8063,7 +8151,7 @@ msgstr "Revenas al la antaŭa paŝo"
msgid "Save"
msgstr "Konservi"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Konservi"
@@ -8076,9 +8164,26 @@ msgstr "Konservi naskiĝdaton"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Konservi ŝanĝojn"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "Ĉu konservi ŝanĝojn?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "Konservi malneton"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "Ĉu konservi malneton?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Konservi al miaj fluoj"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Konservitaj"
@@ -8155,7 +8260,7 @@ msgstr "Rulumi al la supro"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Serĉi"
@@ -8164,7 +8269,7 @@ msgstr "Serĉi"
msgid "Search @{0}'s posts"
msgstr "Serĉi afiŝojn de @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Serĉi per nomo aŭ intereso"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Serĉi fluojn"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "Serĉi \"{interestsDisplayName}\""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "Serĉi \"{interestsDisplayName}\" (aktiva)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Serĉi afiŝojn"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Serĉi profilojn"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Serĉi..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Serĉas profilojn"
@@ -8283,12 +8388,12 @@ msgstr "Vidi afiŝojn pri #{tag} de uzanto"
msgid "See jobs at Bluesky"
msgstr "Vidu laborpostenojn ĉe Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Vidi pli"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "Vidi pli da proponataj profiloj"
@@ -8456,7 +8561,7 @@ msgstr "Elektu vian preferatan lingvon por tradukoj en via fluo."
msgid "Select your preferred notification channels"
msgstr "Elektu viajn preferajn sciigajn kanalojn"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "Elektado de pluraj aŭdvidaĵaj specoj ne estas subtenata."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Sendi retmesaĝon"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Sendi prikomentadon"
@@ -8566,7 +8671,7 @@ msgstr "Agordas retpoŝtadreson por restarigi pasvorton"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Agordoj"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Agordoj konservitaj"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Seksuma ago aŭ erotika nudeco."
@@ -8634,7 +8739,7 @@ msgstr "Seksume sugesta"
msgid "Share"
msgstr "Konigi"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Konigi"
@@ -8712,13 +8817,13 @@ msgstr "Konigu vian plej ŝatatan fluon!"
msgid "Shared Preferences Tester"
msgstr "Testanto de komunaj preferoj"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Montri"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Montri alternativan tekston"
@@ -8820,7 +8925,7 @@ msgstr "Montri averton kaj elfiltri el fluoj"
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Montri informojn pri kiam ĉi tiu afiŝo estis kreita"
@@ -8828,8 +8933,8 @@ msgstr "Montri informojn pri kiam ĉi tiu afiŝo estis kreita"
msgid "Shows other accounts you can switch to"
msgstr "Montras aliajn kontojn al kiuj vi povas ŝanĝi"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Montras la enhavon"
@@ -8842,14 +8947,14 @@ msgstr "Montras la enhavon"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Ensaluto devigita"
msgid "Signed in as @{0}"
msgstr "Ensalutinta kiel @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Similaj kontoj"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr "Preterpasi enkondukon kaj komenci uzi vian konton"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Preterpasi al sekva paŝo"
@@ -8967,7 +9068,7 @@ msgstr "Programado"
msgid "Some of your verifications are invalid."
msgstr "Iuj de viaj konfirmoj estas nevalidaj."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Kelkaj aliaj fluoj, kiuj eble plaĉos al vi"
@@ -8994,7 +9095,7 @@ msgstr "Io misfunkciis"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Io misokazis, bonvolu reprovi"
@@ -9020,7 +9121,7 @@ msgstr "Io misfunkciis. Bonvolu reprovi."
msgid "Something wrong? Let us know."
msgstr "Ĉu io misfunkciis? Sciigu nin."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Pordonu, ni ne eblis ŝargi kontajn proponojn nune."
@@ -9113,7 +9214,11 @@ msgstr "Startpakoj"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Starterpako ebligas al vi konigi viajn plej ŝatatajn fluojn kaj homojn kun viaj amikoj."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "Aboni al @{0} por uzi tiujn etikedojn:"
msgid "Subscribe to account activity"
msgstr "Aboni al agado de la konto"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Aboni al etikedilo"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Aboni al ĉi tiu etikedilo"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Proponitaj kontoj"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Proponitaj por vi"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Maldeca"
@@ -9240,7 +9345,7 @@ msgstr "Subteno"
#: src/components/contacts/screens/PhoneInput.tsx:235
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
-msgstr ""
+msgstr "Subteno por ĉi tiu funkcio en via lando ankoraŭ ne estis ebligita. Bonvolu rekontroli poste."
#: src/screens/Settings/Settings.tsx:127
#: src/screens/Settings/Settings.tsx:141
@@ -9294,7 +9399,7 @@ msgstr "Tuŝetu por pliaj informoj"
#: src/screens/Signup/StepInfo/index.tsx:334
msgid "Tap here to confirm your location with GPS."
-msgstr ""
+msgstr "Tuŝetu ĉi tie por konfirmi vian lokon per GPS."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164
msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky"
@@ -9354,8 +9459,8 @@ msgstr "Kondiĉoj"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Uzokondiĉoj"
@@ -9403,12 +9508,12 @@ msgstr "Tiu uzantnomo jam estas uzata"
msgid "That's all, folks!"
msgstr "Jen ĉio, uloj!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Tio estas ĉio!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Post malbloki, la konto povos interagi kun vi."
@@ -9447,7 +9552,7 @@ msgstr "La fluo Discover"
msgid "The Discover feed now knows what you like"
msgstr "La fluo Discover scias, kion plaĉas al vi"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Estas pli bone uzi la aplikaĵon. Elŝutu Bluesky nun kaj ni revenos tien, kie vi haltis."
@@ -9465,7 +9570,7 @@ msgstr "La jenaj etikedoj estis aplikitaj al via enhavo."
#: src/components/live/GoLiveDialog.tsx:160
msgid "The following services are enabled for your account: {allowedServices}"
-msgstr ""
+msgstr "La jenaj servoj estas ŝaltitaj por via konto: {allowedServices}"
#: src/screens/ModerationInteractionSettings/index.tsx:42
msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer."
@@ -9527,7 +9632,7 @@ msgstr "Etosa"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Ne estas templimo por konta malaktivigo, revenu iam ajn."
@@ -9711,6 +9816,10 @@ msgstr "Ĉi tiu enhavo ne estas videbla sen Bluesky-konto."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Ĉi tiu konversacio estas kun forigita aŭ malaktivigita konto. Premu por opcioj"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Ĉi tiu retpoŝtadreso jam estas ligita al via konto."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Ĉi tiu fluo malplenas! Eble vi devas sekvi pli da uzantoj aŭ ŝanĝi viajn lingvajn agordojn."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Ĉi tiu fluo malplenas."
@@ -9798,7 +9907,7 @@ msgstr "Ĉi tiu listo malplenas."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Ĉi tiu kontrolservo neatingeblas. Vidu pli da detaloj sube. Se ĉi tiu problemo daŭras, kontaktu nin."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Ĉi tiu afiŝo asertas, ke ĝi estis kreita je <0>{0}0>, sed ĝi estis unue vidita ĉe Bluesky je <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr "Ĉi tiu afiŝo estis forigita de ĝia aŭtoro"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Ĉi tiu afiŝo estos kaŝota el fluoj kaj fadenoj. Tio ne povas esti malfarita."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "La aŭtoro de ĉi tiu afiŝo malŝaltis citafiŝojn."
@@ -9834,7 +9943,7 @@ msgstr "Ĉi tiu respondo estos ordigota en kaŝitan sekcion ĉe la subo de via f
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Ĉi tiu servo ne havigis uzokondiĉojn aŭ regularon pri privateco."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "Ĉi tio forigos vian afiŝon el ĉi tiu citafiŝo por ĉiuj uzantoj kaj
msgid "Thread options"
msgstr "Fadenaj agordoj"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Fadenaj preferoj"
@@ -9951,7 +10060,7 @@ msgstr "Hodiaŭ"
msgid "Toggle to enable or disable adult content"
msgstr "Baskuligi por ebligi aŭ malebligi poradoltan enhavon"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Baskulas la sonon"
@@ -9988,8 +10097,8 @@ msgstr "Temo"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Traduki"
@@ -10091,15 +10200,15 @@ msgstr "Nedisponeblaj informoj pri fluo"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Malbloki"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Malbloki"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Malbloki konton"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Ĉu malbloki konton?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Malfari"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Malfari"
@@ -10142,7 +10255,7 @@ msgstr "Malfari reafiŝon"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Malfari reafiŝon ({0, plural, one {# reafiŝo} other {# reafiŝoj}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Ne sekvi {0}"
@@ -10151,7 +10264,7 @@ msgstr "Ne sekvi {0}"
msgid "Unfollow account"
msgstr "Ne sekvi konton"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Ĉesas sekvi la uzanton"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Ne plu ŝati"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Ne plu ŝati ({0, plural, one {# ŝato} other {# ŝatoj}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Malsilentigi liston"
msgid "Unmute thread"
msgstr "Malsilentigi fadenon"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Malsilentigi videaĵon"
@@ -10276,7 +10389,7 @@ msgstr "Listo depinglita"
msgid "Unsnooze email reminder"
msgstr "Maldormeti retmesaĝan sciigon"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Malaboni"
@@ -10285,7 +10398,7 @@ msgstr "Malaboni"
msgid "Unsubscribe from list"
msgstr "Malaboni de listo"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Malaboni de ĉi tiu etikedilo"
@@ -10293,7 +10406,7 @@ msgstr "Malaboni de ĉi tiu etikedilo"
msgid "Unsubscribed from list"
msgstr "Malabonita de listo"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Nesubtenata videaĵa tipo: {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "Alŝuti el la dosieroj"
msgid "Upload from Library"
msgstr "Alŝuti el la biblioteko"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Alŝutado de bildoj..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Alŝutado de ligila miniaturo..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Alŝutado de videaĵo..."
@@ -10389,8 +10506,8 @@ msgstr "Uzi defaŭltan provizanton"
msgid "Use in-app browser"
msgstr "Uzi en-apan retumilon"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Uzi en-apan retumilon por malfermi ligilojn"
@@ -10445,6 +10562,10 @@ msgstr "Uzanto blokas vin"
msgid "User list by {0}"
msgstr "Uzanta listo de {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Listo de uzantoj de vi"
@@ -10597,8 +10718,8 @@ msgstr "Konfirmado..."
msgid "Version {0}"
msgstr "Versio {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Videaĵo"
@@ -10614,20 +10735,24 @@ msgstr "Videaĵo-fluo"
msgid "Video from {0}: {text}"
msgstr "Videaĵo de {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "Vídeaĵo de {0}. Tuŝetu por ludi aŭ paŭzigi la videaĵon"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Videoludoj"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Videaĵo estas paŭzigita"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Videaĵo estas ludata"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Videaĵo netrovita."
@@ -10635,11 +10760,11 @@ msgstr "Videaĵo netrovita."
msgid "Video settings"
msgstr "Agordoj pri videaĵoj"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Videaĵo alŝutita"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Videaĵo: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Videaĵo: {0}"
msgid "Videos"
msgstr "Videaĵoj"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "Videaĵoj devas esti malpli ol 3 minute longaj."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Vidi"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Vidi la profilbildon de {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Vidi la profilon de {0}"
@@ -10708,7 +10833,7 @@ msgstr "Vidi pli"
msgid "View more trending videos"
msgstr "Vidi pli da furoraj videaĵoj"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "Vidi afiŝon"
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr "Viziti retejon"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Viziti viajn sciigajn agordojn"
@@ -10845,7 +10970,7 @@ msgstr ""
#: src/components/contacts/components/InviteInfo.tsx:66
msgid "We don't store your friends' phone numbers or send any messages"
-msgstr ""
+msgstr "Ni ne konservas telefononumerojn de viaj amikoj kaj sendas neniujn mesaĝojn"
#: src/screens/SignupQueued.tsx:160
msgid "We estimate {estimatedTime} until your account is ready."
@@ -10893,7 +11018,7 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:67
msgid "We were unable to load your birthdate preferences. Please try again."
-msgstr ""
+msgstr "Ni ne povis ŝargi viajn preferojn pri naskiĝdato. Bonvolu provi denove."
#: src/screens/Moderation/index.tsx:449
msgid "We were unable to load your configured labelers at this time."
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Ni havas problemojn pravalorizante la procezon de garantio pri aĝo por via konto. Bonvolu <0>kontakti subtenejon0> por asistado."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Ni havas retajn problemojn, provu denove"
@@ -10968,7 +11093,7 @@ msgstr "Ni bedaŭras, sed ni ne povis ŝargi viajn silentigitajn vortojn nuntemp
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Bedaŭrinde, via serĉo malsukcesis. Bonvolu reprovi post kelkaj minutoj."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Ni bedaŭras! La afiŝo al kiu vi respondas estis forigita."
@@ -10977,7 +11102,7 @@ msgstr "Ni bedaŭras! La afiŝo al kiu vi respondas estis forigita."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Ni bedaŭras! Ni ne povas trovi la paĝon, kiun vi serĉis."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Ni bedaŭras! Vi povas aboni nur dudek etikedilojn kaj vi atingis vian limon de dudek."
@@ -11018,10 +11143,9 @@ msgstr "Kiuj estas viaj interesoj?"
msgid "What do you want to call your starter pack?"
msgstr "Kiel vi volas nomi vian startpakon?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Kio okazas?"
@@ -11097,6 +11221,14 @@ msgstr "Kial ĉi tiu uzanto estu reviziita?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Ĉu vi volas bloki ĉi tiun uzanton kaj/aŭ forigi ĉi tiun konversacion?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "Ĉu vi volas konservi ĉi tion kiel malneto antaŭ ol vidi viajn malnetojn?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "Ĉu vi volas konservi ĉi tion kiel malneto por redakti ĝin poste?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Tajpu mesaĝon"
msgid "Write a post"
msgstr "Tajpu afiŝon"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Tajpu afiŝon"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Tajpu vian respondon"
@@ -11133,8 +11265,8 @@ msgstr "www.miatujelsendo.tv"
msgid "Yes"
msgstr "Jes"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Jes, malaktivigi"
@@ -11188,7 +11320,7 @@ msgstr "Vi estas en vico."
msgid "You are Live"
msgstr "Vi tujelsendas"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Vi ne plu tujelsendas"
@@ -11200,7 +11332,7 @@ msgstr "Vi ne rajtas alŝuti videaĵojn."
msgid "You are not following anyone yet"
msgstr "Vi ankoraŭ sekvas neniun"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Vi nun tujelsendas!"
@@ -11231,7 +11363,7 @@ msgstr "Vi ankaŭ povas dumtempe malaktivigi vian konton anstataŭe kaj reaktivi
#: src/components/contacts/screens/GetContacts.tsx:249
msgid "You can always opt out and delete your data"
-msgstr ""
+msgstr "Vi ĉiam povas supozi permeson kaj forigi viajn datumojn"
#: src/lib/hooks/useNotificationHandler.ts:104
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
@@ -11255,11 +11387,11 @@ msgstr "Vi nun povas elekti ricevi sciigojn kiam specifaj homoj afiŝos. Se esta
msgid "You can now sign in with your new password."
msgstr "Vi nun povas ensaluti per via nova pasvorto."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "Vi povas elekti nur unu GIF-on samtempe."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "Vi povas elekti nur unu videaĵon samtempe."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Vi povas reaktivigi vian konton por daŭrigi ensaluton. Via profilo kaj afiŝoj videblos al aliaj uzantoj."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "Vi povas elekti ĝis {MAX_IMAGES, plural, other {# bildojn}} entute."
@@ -11317,7 +11449,7 @@ msgstr "Vi blokis ĉi tiun uzanton"
msgid "You have blocked this user. You cannot view their content."
msgstr "Vi blokis ĉi tiun uzanton. Vi ne povas vidi ties enhavon."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Vi tute malŝaltis sciigojn pri respondoj, citaĵoj kaj mencioj, do ĉi tiu langeto ne plu ĝisdatigos. Por ŝanĝi tion, vizitu viajn <0>sciigajn agordojn0>."
@@ -11376,6 +11508,14 @@ msgstr "Vi sukcese konfirmis vian retpoŝtadreson. Vi povas fermi ĉi tiun dialo
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Vi dumtempe atingis la limon por videaĵaj alŝutoj. Bonvolu reprovi poste."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "Vi havas nekonservitajn ŝanĝojn al ĉi tiu malneto, ĉu vi volas konservi ilin?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "Vi havas nekonservitajn ŝanĝojn. Ĉu vi volas konservi ilin antaŭ ol vidi viajn malnetojn?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Vi ankoraŭ kreis neniun startpakon!"
@@ -11431,13 +11571,13 @@ msgstr "Vi devas esti {0}-jaraĝa aŭ pli maljuna por krei konton en via regiono
#: src/screens/Signup/StepInfo/index.tsx:315
msgid "You must be {MIN_ACCESS_AGE} years of age or older to create an account."
-msgstr ""
+msgstr "Vi devas esti {MIN_ACCESS_AGE}-jaraĝa aŭ pli maljuna por krei konton."
#: src/components/dialogs/BirthDateSettings.tsx:178
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Vi devas aĝi almenaŭ 13 jarojn por uzi Bluesky. Legu niajn <0>uzokondiĉojn0> por pliaj informoj."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Vi devas sekvi almenaŭ sep aliajn homojn por generi startpakon."
@@ -11449,7 +11589,7 @@ msgstr "Vi devas finigi vian garantion pri aĝo por aliri ĉi tiun ekranon."
msgid "You must grant access to your photo library to save a QR code"
msgstr "Vi devas permesi aliron al via bildbiblioteko por konservi QR-kodon"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "Vi devas permesi aliron al via aŭdvida biblioteko."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Vi estas en vico"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Vi estas ensalutinta per apa pasvorto. Bonvolu ensaluti per via ĉefa pasvorto por daŭrigi malaktivigi vian konton."
@@ -11589,7 +11729,7 @@ msgstr "Vi atingis vian tagan limon por videaĵ-alŝutoj (tro da bajtoj)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Vi atingis vian tagan limon por videaĵ-alŝutoj (tro da videaĵoj)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Vi elĉerpis videaĵojn por spekti. Ĉu eble estas bona tempo fari paŭzon?"
@@ -11625,7 +11765,7 @@ msgstr "Via apelacio estas sendita. Se via apelacio sukcesos, vi ricevos retmesa
msgid "Your birth date"
msgstr "Via naskiĝdato"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Via retumilo ne subtenas la videaĵ-formon. Bonvolu provi uzante alian retumilon."
@@ -11655,7 +11795,7 @@ msgstr "Via nuna identigilo, <0>{0}0>, estos aŭtomate rezervita por vi. Vi po
#: src/screens/Moderation/index.tsx:213
msgid "Your declared age is under 18. Some settings below may be disabled. If this was a mistake, you may edit your birthdate in your <0>account settings0>."
-msgstr ""
+msgstr "Via deklarita aĝo estas pli juna ol 18. Kelkaj agordoj sube eble estas malebligitaj. Se tio estis eraro, vi povas ŝanĝi vian naskiĝdaton en viaj <0>kontaj agordoj0>."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:251
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:255
@@ -11692,8 +11832,8 @@ msgstr "Via tuta identigilo estos <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Viaj interesoj"
@@ -11717,7 +11857,7 @@ msgstr "Datumoj pri via loko ne estas spurataj kaj ne forlasos vian aparaton."
#: src/screens/Signup/StepInfo/index.tsx:365
msgid "Your location has been updated."
-msgstr ""
+msgstr "Via loko estis ĝisdatigita."
#: src/components/dialogs/MutedWords.tsx:374
msgid "Your muted words"
@@ -11731,11 +11871,11 @@ msgstr "Via pasvorto estis sukcese ŝanĝita! Bonvolu ekuzi vian novan pasvorton
msgid "Your password must be at least 8 characters long."
msgstr "Via pasvorto bezonas almenaŭ 8 signojn."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "Via afiŝo estis sendita"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "Viaj afiŝoj estis senditaj"
@@ -11752,11 +11892,11 @@ msgstr "Via profilbildo"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "Via profilbildo ĉirkaŭita per samcentraj cirkloj de profilbildoj de aliaj uzantoj"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Via profilo, afiŝoj, fluoj kaj listoj ne plu videblos por aliaj uzantoj de Bluesky. Vi povas reaktivigi vian konton iam ajn per ensaluto."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "Via respondo estis sendita"
diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po
index b91052fe29..3439b8beff 100644
--- a/src/locale/locales/es/messages.po
+++ b/src/locale/locales/es/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: es\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# republicación} other {# republicaciones}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# segundo} other {# segundos}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# elemento sin leer} other {# elementos sin leer}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# elemento sin leer} other {# elementos sin leer}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# mes} other {# meses}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {seguidor} other {seguidores}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {siguiendo} other {siguiendo}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {me gusta} other {me gusta}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {me gusta} other {me gusta}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {publicación} other {publicaciones}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {cita} other {citas}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {republicación} other {republicaciones}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr "{0} reaccionó con {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} reaccionó con {1} a {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
@@ -432,7 +436,7 @@ msgstr "Se han unido {joinedAllTimeCount, plural, other {# usuarios}}."
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# minuto} other {# minutos}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# notificacion no leída} other {# notificaciones no leídas}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "Se ha incluido a <0>{0}, 0><1>{1}, 1>y {2, plural, one {# más} other {# más}} a tu paquete de inicio"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {seguidor} other {seguidores}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {siguiendo} other {siguiendo}}"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Agregar {0} más para continuar"
msgid "Add {displayName} to starter pack"
msgstr "Añadir {displayName} al paquete de inicio"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Añadir una advertencia de contenido"
@@ -754,11 +763,11 @@ msgstr "Añadir un texto alternativo (opcional)"
msgid "Add another account"
msgstr "Añadir otra cuenta"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Añadir otra publicación"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "Añadir contraseña de app"
msgid "Add emoji reaction"
msgstr "Añadir reacción con emoji"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr "Detalles adicionales (máximo 1000 caracteres)"
msgid "Additional details (limit 300 characters)"
msgstr "Detalles adicionales (máximo 300 caracteres)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Solo para adultos"
@@ -879,10 +888,10 @@ msgstr "Solo para adultos"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Contenido para adultos"
@@ -894,8 +903,8 @@ msgstr "El contenido para adultos solo se puede activar a través de la web en <
msgid "Adult content is disabled."
msgstr "El contenido para adultos está desactivado."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Etiquetas de contenido para adultos"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@ejemplo.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Todas"
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Ya has iniciado sesión como @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Texto alternativo"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Texto alternativo"
@@ -1059,7 +1068,7 @@ msgstr "Te hemos enviado un correo electrónico a {0} con un código de confirma
msgid "An error has occurred"
msgstr "Se ha producido un error"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Se produjo un error"
@@ -1067,7 +1076,7 @@ msgstr "Se produjo un error"
msgid "An error occurred while compressing the video."
msgstr "Se produjo un error al comprimir el video."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr "Error al recuperar el feed."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Se produjo un error al generar tu paquete de inicio. ¿Quieres intentarlo de nuevo?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "Se produjo un error al cargar el video. Vuelve a intentarlo."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Se produjo un error mientras cargaba el video. Vuelve a intentarlo."
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Animales"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF animado"
@@ -1306,12 +1315,12 @@ msgstr "Aplicar feeds recomendados predeterminados"
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Archivado desde {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Publicación archivada"
@@ -1332,11 +1341,11 @@ msgstr "¿Quieres eliminar este paquete de inicio?"
msgid "Are you sure you want to discard your changes?"
msgstr "¿Quieres descartar tus cambios?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "¿Quieres salir de esta conversación?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "¿Quieres salir de esta conversación? Los mensajes se eliminarán para ti, pero no para la otra persona."
@@ -1344,11 +1353,7 @@ msgstr "¿Quieres salir de esta conversación? Los mensajes se eliminarán para
msgid "Are you sure you want to remove this from your feeds?"
msgstr "¿Quieres eliminar esto de tus feeds?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "¿Quieres descartar este borrador?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "¿Quieres descartar esta publicación?"
@@ -1364,7 +1369,7 @@ msgstr "¿Estás escribiendo en <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Arte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Desnudez artística o no erótica."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Reproducir videos y GIFs automáticamente"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Atrás"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky no puede confirmar la autenticidad de la fecha declarada."
@@ -1623,7 +1630,7 @@ msgstr "Términos de servicio de Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky elegirá un conjunto de cuentas recomendadas de personas en su red."
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Ver más feeds en la página Explorar"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Explorar más sugerencias"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Busca más sugerencias en la página Explorar"
@@ -1770,8 +1777,8 @@ msgstr "Cámara"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Cámara"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Cancelar búsqueda"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "No se puede interactuar con un usuario bloqueado"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Chat"
@@ -1989,7 +1996,7 @@ msgstr "Elige el método de verificación del dominio"
msgid "Choose Feeds"
msgstr "Elija Feeds"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Elige para mi"
@@ -2096,6 +2103,7 @@ msgstr "Tacatá 🐴 tacatá 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Tacatá 🐴 tacatá 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Cerrar la ventana de GIF"
msgid "Close image"
msgstr "Cerrar la imagen"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Cerrar el visor de imagen"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Cierra la alerta de actualización de contraseña"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Cierra la ventana de redacción y descarta el borrador"
@@ -2242,12 +2251,12 @@ msgstr "Completa la incorporación y comienza a usar tu cuenta"
msgid "Complete the challenge"
msgstr "Completa el desafío"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Escribir nueva publicación"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Escribir publicaciones de hasta {0, plural, other {# caracteres}}"
@@ -2255,7 +2264,11 @@ msgstr "Escribir publicaciones de hasta {0, plural, other {# caracteres}}"
msgid "Compose reply"
msgstr "Escribir la respuesta"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Comprimiendo video..."
@@ -2263,7 +2276,6 @@ msgstr "Comprimiendo video..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Configuración de filtrado de contenido para la categoría: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Configurado en <0>ajustes de moderación0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Contenido y medios"
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "Advertencia de Contenido"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Advertencias de contenido"
@@ -2401,7 +2413,7 @@ msgstr "Fondo del menú contextual, haga clic para cerrar el menú."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Continuar"
@@ -2420,7 +2432,7 @@ msgstr "Continuar hilo..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "No se pudo salir de este chat"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "No se pudo cargar este feed"
@@ -2643,8 +2655,8 @@ msgstr "Crear un código QR para paquete de inicio"
msgid "Create a starter pack"
msgstr "Crea un paquete de inicio"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "Crea un paquete de inicio para mí"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Crea otro"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Crear una cuenta nueva"
@@ -2772,7 +2784,7 @@ msgstr "Fecha de nacimiento"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Desactivar cuenta"
@@ -2871,7 +2883,7 @@ msgstr "Eliminar mi cuenta"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Borrar la publicación"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Desactivar subtítulos"
@@ -2996,8 +3008,11 @@ msgstr "Deshabilitado"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Descartar"
@@ -3006,11 +3021,12 @@ msgstr "Descartar"
msgid "Discard changes?"
msgstr "¿Descartar cambios?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "¿Descartar borrador?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "¿Descartar publicación?"
@@ -3037,7 +3053,7 @@ msgstr "Descartar"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Descartar error"
@@ -3049,11 +3065,16 @@ msgstr "Descartar la guía de introducción"
msgid "Dismiss interests"
msgstr "Descartar intereses"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Ocultar esta sección"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Toca dos veces o presiona durante un instante el mensaje para añadir un
msgid "Double tap to close the dialog"
msgstr "Doble toque para cerrar el diálogo"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Pulsa dos veces para indicar que te gusta"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Descargar Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Descargar archivo CAR"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Arrastra para agregar imágenes"
@@ -3285,13 +3313,13 @@ msgstr "Editar ajustes de interacción de la publicación"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Editar el perfil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Editar el perfil"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Activar los subtítulos"
@@ -3421,13 +3449,13 @@ msgstr "Activar los subtítulos"
msgid "Enable this source only"
msgstr "Habilitar solo esta fuente"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Activar las tendencias"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Activar los videos populares en el feed Discover"
@@ -3464,7 +3492,7 @@ msgstr "Ingresa una palabra o etiqueta"
msgid "Enter code"
msgstr "Ingresa el código"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Entrar en la pantalla completa"
@@ -3501,7 +3529,7 @@ msgstr "Ingresa tu contraseña"
msgid "Enter your username and password"
msgstr "Ingresa tu nombre de usuario y contraseña"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Entra en pantalla completa"
@@ -3509,7 +3537,7 @@ msgstr "Entra en pantalla completa"
msgid "Entertainment"
msgstr "Ocio"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Error"
@@ -3570,7 +3598,7 @@ msgstr "Excluir a los usuarios que sigues"
msgid "Excludes users you follow"
msgstr "Excluye a los usuarios que sigues"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Salir de pantalla completa"
@@ -3578,11 +3606,7 @@ msgstr "Salir de pantalla completa"
msgid "Exits account deletion process"
msgstr "Salir del proceso de eliminación de cuenta"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Salir de la vista de imagen"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Expandir el texto alternativo"
@@ -3598,11 +3622,11 @@ msgstr "Expandir o colapsar la publicación completa a la que estás respondiend
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Amplía o reduce el texto de la publicación"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Se esperaba que el uri resolviera a un registro"
@@ -3639,7 +3663,7 @@ msgstr "Imágenes sexuales explícitas."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Explorar"
@@ -3657,8 +3681,8 @@ msgstr "Exportar mis datos"
msgid "Export My Data"
msgstr "Exportar Mis Datos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Medios externos"
@@ -3730,7 +3754,7 @@ msgstr "Error al eliminar la publicación, vuelve a intentarlo"
msgid "Failed to delete starter pack"
msgstr "Error al eliminar el paquete de inicio"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr "Error al eliminar la verificación"
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Feed"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Feed por {0}"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Comentarios"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Feeds"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr "Finalizando"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Buscar a gente para seguir"
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Seguir"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Seguir {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Seguir {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Seguir esta cuenta"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Seguir esta cuenta"
msgid "Follow all"
msgstr "Seguir a todos"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Seguir también"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "Seguidores que conoces"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Siguiendo"
msgid "Following {0}"
msgstr "Siguiendo {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Siguiendo {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Preferencias del feed de cuentas que sigues"
@@ -4264,7 +4297,7 @@ msgstr "Por razones de seguridad, no podrás volver a verla. Si pierdes esta con
msgid "For the best experience, we recommend using the theme font."
msgstr "Para una mejor experiencia, recomendamos que uses la fuente del tema."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Para ti"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "De <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Genera un paquete de inicio"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Obtiene ayuda"
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr "Comenzar"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Ponle cara a tu perfil"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Volver"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Contenido explícito"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Ayuda"
@@ -4632,9 +4670,9 @@ msgstr "Lista oculta"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Ocultar lista de usuarios"
msgid "Hide verification badges"
msgstr "Ocultar las marcas de verificación"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Oculta el contenido"
@@ -4760,9 +4798,9 @@ msgstr "¡Espera! Estamos dando acceso a videos gradualmente, y aún estás en l
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Inicio"
@@ -4819,7 +4857,7 @@ msgstr "Lo entiendo"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Si el texto alternativo es largo, alterna el estado expandido del texto alternativo."
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr "Si eres desarrollador/a, puedes alojar tu propio servidor."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Si estás intentando cambiar tu nombre de usuario o correo electrónico, hazlo antes de desactivar tu cuenta."
@@ -4996,6 +5034,10 @@ msgstr "Ajustes de interacción"
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "¡Solo estás tú por ahora! Agrega más personas a tu paquete de inicio buscando arriba."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "Tarea ID: {0}"
@@ -5122,20 +5164,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Etiquetado por {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Etiquetado por el autor."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Etiquetas"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Etiquetas añadidas"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "Más información sobre cómo autoalojar tu PDS."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Más información sobre la moderación aplicada a este contenido"
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Más información sobre esta advertencia"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Aprender más."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Dejar"
@@ -5286,7 +5328,7 @@ msgstr "Salir de Bluesky"
msgid "left to go."
msgstr "quedan."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Déjame escoger"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Me gusta"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Like ({0, plural, one {# me gusta} other {# me gusta}})"
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "\"Me gusta\" en esta publicación"
@@ -5474,7 +5516,7 @@ msgstr "La lista ya no está silenciada"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Listas"
@@ -5496,10 +5538,20 @@ msgstr ""
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Cargar más"
msgid "Load more suggested feeds"
msgstr "Cargar más feeds sugeridos"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Cargar notificaciones nuevas"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo de @sawaratsuki.bsky.social0>"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo de <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Haz uno para mi"
msgid "Make sure this is where you intend to go!"
msgstr "¡Asegúrate de que es aquí a donde pretendes ir!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Gestiona los feeds guardados"
@@ -5638,7 +5690,16 @@ msgstr "En otro momento"
msgid "Media"
msgstr "Multimedia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Medios que pueden ser perturbadores o inapropiados para algunos públicos."
@@ -5653,7 +5714,7 @@ msgstr "usuarios mencionados"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Menciones"
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Cine"
msgid "Music"
msgstr "Música"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Ir al paquete de inicio"
msgid "Navigates to the next screen"
msgstr "Navega a la siguiente pantalla"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Navega a tu perfil"
@@ -5983,6 +6049,7 @@ msgstr "Nueva dirección de correo electrónico"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Nueva característica"
@@ -6018,12 +6085,12 @@ msgstr "Nuevos mensajes"
msgid "New password"
msgstr "Nueva contraseña"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Nueva publicación"
@@ -6085,7 +6152,7 @@ msgstr "Noticias"
msgid "Next"
msgstr "Siguiente"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Imagen nueva"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "Sin panel de DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6136,7 +6207,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Todavía no tiene \"me gusta\""
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "Ya no sigues a {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "No hay citas aún"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Sin resultado"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Sin resultados"
@@ -6238,7 +6309,7 @@ msgstr "No hay resultados."
msgid "No search results found for \"{search}\"."
msgstr "No se encontraron resultados para \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "No gracias"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr "No lo sigue nadie a quien estés siguiendo"
msgid "Not Found"
msgstr "No encontrado"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Nota sobre compartir"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Ajustes de notificaciones"
@@ -6349,10 +6424,10 @@ msgstr "Sonidos de notificación"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Notificaciones"
@@ -6368,8 +6443,8 @@ msgstr "ahora"
msgid "Now"
msgstr "Ahora"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Desnudez"
@@ -6390,7 +6465,7 @@ msgstr "¡Qué problema!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "Aceptar"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Está bien"
@@ -6417,23 +6492,23 @@ msgstr "en<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Reiniciar introducción"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Falta el texto alternativo en uno o más GIF."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Falta el texto alternativo en una o varias imágenes."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Falta el texto alternativo en uno o más videos."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "¡Uy, algo ha salido mal!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "¡Uy!"
msgid "Open avatar creator"
msgstr "Abrir el creador de avatares"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "Abrir las opciones de conversación"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Abrir el menú lateral"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Abrir el selector de emojis"
@@ -6557,7 +6636,7 @@ msgstr "Abrir el registro del sistema"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Abre un diálogo para agregar una advertencia de contenido a tu publicación"
@@ -6589,25 +6668,25 @@ msgstr "Abre el diálogo de cambio del nombre de usuario"
msgid "Opens composer"
msgstr "Abrir la ventana de redacción"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Abre el selector de emojis"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Abre el flujo para crear una nueva cuenta de Bluesky"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Abre el flujo para iniciar sesión en tu cuenta existente de Bluesky"
@@ -6620,7 +6699,7 @@ msgstr "Abre el diálogo de selección de GIF."
msgid "Opens helpdesk in browser"
msgstr "Abre el centro de ayuda en el navegador"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "Abre el formulario de restablecimiento de contraseña"
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "Estado de las actualizaciones: Ninguna disponible"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Otro"
@@ -6763,13 +6846,13 @@ msgstr "Contraseña actualizada"
msgid "Password updated!"
msgstr "¡Contraseña actualizada!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pausar"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Pausar video"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "Fotografía"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Imágenes destinadas a adultos."
@@ -6874,9 +6957,9 @@ msgstr "Feeds anclados"
msgid "Pinned to your feeds"
msgstr "Tus feeds anclados"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Reproducir"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Reproducir {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Reproducir video"
@@ -6893,11 +6976,11 @@ msgstr "Reproducir video"
msgid "Play Video"
msgstr "Reproducir Video"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Reproduce o pausa el GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Reproduce o pausa el video"
@@ -6909,7 +6992,7 @@ msgstr "Reproducir GIF"
msgid "Plays the video"
msgstr "Reproduce el video"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Añade las etiquetas de advertencia sobre el contenido multimedia que vas a publicar."
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "Política"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornografía"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Publicar"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Publicar"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Publicar Todo"
@@ -7217,7 +7300,7 @@ msgstr "Presiona para ver los seguidores de esta cuenta que también sigues."
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Imagen previa"
@@ -7257,8 +7340,8 @@ msgstr "Ajustes de privacidad y seguridad"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Política de privacidad"
@@ -7266,7 +7349,11 @@ msgstr "Política de privacidad"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Procesando video..."
@@ -7280,10 +7367,10 @@ msgstr "Procesando..."
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Perfil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Listas públicas y compartibles para bloquear o silenciar a usuarios en grupo."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Publicar la publicación"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Publicar las publicaciones"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Publicar las respuestas"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Publicar la respuesta"
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Citar la publicación"
@@ -7385,7 +7473,7 @@ msgstr "Citas deshabilitadas"
msgid "Quotes"
msgstr "Citas"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Citas de esta publicación"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr "Leer la publicación del blog (en inglés)"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Ver menos"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Ver más"
@@ -7720,13 +7808,13 @@ msgstr "Respuestas deshabilitadas"
msgid "Replies to this post are disabled."
msgstr "Las respuestas en esta publicación estan deshabilitadas."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Responder"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Responder ({0, plural, one {# respuesta} other {# respuestas}})"
@@ -7892,7 +7980,7 @@ msgstr "Republicado por ti"
msgid "Reposts"
msgstr "Republicaciones"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Republicaciones de esta publicación"
@@ -7996,14 +8084,14 @@ msgstr "Reintenta la última acción, que presentó un error"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Volver a la página anterior"
msgid "Returns to home page"
msgstr "Volver a la página de inicio"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Volver a la página anterior"
@@ -8063,7 +8151,7 @@ msgstr "Vuelve al paso anterior"
msgid "Save"
msgstr "Guardar"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Guardar"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Guardar cambios"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Guardar en mis feeds"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "Desplazar hacia arriba"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Buscar"
@@ -8164,7 +8269,7 @@ msgstr "Buscar"
msgid "Search @{0}'s posts"
msgstr "Buscar en las publicaciones de @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Buscar por nombre o interés"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Buscar feeds"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Buscar en sus publicaciones"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Buscar perfiles"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Buscar..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Busca perfiles"
@@ -8283,12 +8388,12 @@ msgstr "Ver las publicaciones sobre #{tag} de esta cuenta"
msgid "See jobs at Bluesky"
msgstr "Ver empleos en Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "Elige a qué idioma deseas traducir las publicaciones de tu feed."
msgid "Select your preferred notification channels"
msgstr "Elegir los canales de notificación que prefieres"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Enviar correo"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Enviar comentarios"
@@ -8566,7 +8671,7 @@ msgstr "Establece el correo electrónico para restablecer la contraseña"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Ajustes"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Ajustes guardados"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Actividad sexual o desnudez erótica."
@@ -8634,7 +8739,7 @@ msgstr "Sexualmente sugestivo"
msgid "Share"
msgstr "Compartir"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Compartir"
@@ -8712,13 +8817,13 @@ msgstr "¡Comparte tu feed favorito!"
msgid "Shared Preferences Tester"
msgstr "Probador de Preferencias Compartidas"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Ver"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Ver texto alternativo"
@@ -8820,7 +8925,7 @@ msgstr "Mostrar advertencia y filtrar de los feeds"
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Muestra información sobre la fecha de creación de esta publicación"
@@ -8828,8 +8933,8 @@ msgstr "Muestra información sobre la fecha de creación de esta publicación"
msgid "Shows other accounts you can switch to"
msgstr "Muestra otras cuentas a las que puedes cambiar"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Muestra el contenido"
@@ -8842,14 +8947,14 @@ msgstr "Muestra el contenido"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Se requiere iniciar sesión"
msgid "Signed in as @{0}"
msgstr "Sesión iniciada como @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Cuentas similares"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "Programación"
msgid "Some of your verifications are invalid."
msgstr "Algunas de tus verificaciones no son válidas."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Otros feeds que podrían gustarte"
@@ -8994,7 +9095,7 @@ msgstr "Se produjo un error"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Se produjo un error. Por favor, inténtalo de nuevo"
@@ -9020,7 +9121,7 @@ msgstr "Se produjo un error. Inténtalo de nuevo."
msgid "Something wrong? Let us know."
msgstr "¿Algo va mal? Avísanos."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "Paquetes de inicio"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Los paquetes de inicio te permiten compartir fácilmente tus feeds y personas favoritas con tus amigos."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "Suscríbete a @{0} para usar estas etiquetas:"
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Suscribirse al etiquetador"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Suscribirse a este etiquetador"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Cuentas sugeridas"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Sugerido para ti"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Sugestivo"
@@ -9354,8 +9459,8 @@ msgstr "Condiciones"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Términos de servicio"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "¡Eso es todo, amigos!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "¡Se acabó!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "La cuenta podrá interactuar contigo tras desbloquearla."
@@ -9447,7 +9552,7 @@ msgstr "El feed de Descubrir"
msgid "The Discover feed now knows what you like"
msgstr "El feed de Descubrir ahora sabe lo que te gusta"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "La experiencia es mejor en la aplicación. Descarga Bluesky ahora y continuaremos donde lo dejaste."
@@ -9527,7 +9632,7 @@ msgstr "Tema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "No hay límite de tiempo para la desactivación de la cuenta, vuelve cuando quieras."
@@ -9711,6 +9816,10 @@ msgstr "Este contenido no se puede ver sin una cuenta de Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Esta conversación es con una cuenta eliminada o desactivada. Presiona para ver opciones"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "¡Este feed está vacío! Es posible que necesites seguir a más usuarios o ajustar la configuración de idioma."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Este feed está vacío."
@@ -9798,7 +9907,7 @@ msgstr "Esta lista está vacía"
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Este servicio de moderación no está disponible. Consulta más detalles a continuación. Si el problema persiste, contáctanos."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Esta publicación declara haber sido creada en <0>{0}0>, pero fue vista por primera vez por Bluesky en <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Esta publicación será ocultada de los feeds y hilos. Esto no se puede deshacer."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "El autor de esta publicación ha deshabilitado las citas."
@@ -9834,7 +9943,7 @@ msgstr "Esta respuesta se colocará en una sección oculta al final de tu hilo.
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Este servicio no ha proporcionado términos de servicio ni una política de privacidad."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "Esto eliminará tu publicación de esta cita para todos los usuarios y l
msgid "Thread options"
msgstr "Opciones de hilos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Preferencias de hilos"
@@ -9951,7 +10060,7 @@ msgstr "Hoy"
msgid "Toggle to enable or disable adult content"
msgstr "Alternar para habilitar o deshabilitar contenido para adultos"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Activa/desactiva el sonido"
@@ -9988,8 +10097,8 @@ msgstr "Tema"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Traducir"
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Desbloquear"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Desbloquear"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Desbloquear la cuenta"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "¿Desbloquear la cuenta?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "Deshacer la republicación"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Deshacer la republicación ({0, plural, one {# republicación} other {# republicaciones}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Dejar de seguir a {0}"
@@ -10151,7 +10264,7 @@ msgstr "Dejar de seguir a {0}"
msgid "Unfollow account"
msgstr "Dejar de seguir esta cuenta"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Deja de seguir al usuario"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "No me gusta"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "No me gusta ({0, plural, one {# me gusta} other {# me gusta}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Dejar de silenciar la lista"
msgid "Unmute thread"
msgstr "Dejar de silenciar el hilo"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Activar el sonido del video"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr "Dejar de posponer el recordatorio de correo electrónico"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Darse de baja"
@@ -10285,7 +10398,7 @@ msgstr "Darse de baja"
msgid "Unsubscribe from list"
msgstr "Darse de baja de la lista"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Darse de baja de este etiquetador"
@@ -10293,7 +10406,7 @@ msgstr "Darse de baja de este etiquetador"
msgid "Unsubscribed from list"
msgstr "Dado de baja de la lista"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "Subir desde tus archivos"
msgid "Upload from Library"
msgstr "Subir desde la biblioteca"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Subiendo imágenes..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Subiendo miniatura del enlace..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Subiendo video..."
@@ -10389,8 +10506,8 @@ msgstr "Utilizar el proveedor predeterminado"
msgid "Use in-app browser"
msgstr "Usar el navegador integrado"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Usar el navegador integrado para abrir los enlaces"
@@ -10445,6 +10562,10 @@ msgstr "Usuario te bloquea"
msgid "User list by {0}"
msgstr "Lista de usuarios por {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Lista de usuarios por ti"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr "Versión {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Video"
@@ -10614,20 +10735,24 @@ msgstr "Feed de videos"
msgid "Video from {0}: {text}"
msgstr "Video de {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Videojuegos"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Video en pausa"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Reproduciendo video"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Video no encontrado."
@@ -10635,11 +10760,11 @@ msgstr "Video no encontrado."
msgid "Video settings"
msgstr "Configuración del video"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Video subido"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Video: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videos"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Ver el avatar de {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Ver el perfil de {0}"
@@ -10708,7 +10833,7 @@ msgstr "Ver más"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr "Visitar el sitio"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Entra a tus ajustes de notificación"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Estamos teniendo problemas de red, inténtalo de nuevo"
@@ -10968,7 +11093,7 @@ msgstr "Lo sentimos, pero no pudimos cargar tus palabras silenciadas en este mom
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Lo sentimos, pero no se ha podido completar tu búsqueda. Inténtalo de nuevo en unos minutos."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "¡Lo sentimos! Se ha eliminado la publicación a la que estás respondiendo."
@@ -10977,7 +11102,7 @@ msgstr "¡Lo sentimos! Se ha eliminado la publicación a la que estás respondie
msgid "We're sorry! We can't find the page you were looking for."
msgstr "¡Lo sentimos! No encontramos la página que buscabas."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "¡Lo sentimos! Solo puedes suscribirte a veinte etiquetadores, y has alcanzado tu límite de veinte."
@@ -11018,10 +11143,9 @@ msgstr "¿Qué te interesa?"
msgid "What do you want to call your starter pack?"
msgstr "¿Cómo quieres llamar a tu paquete de inicio?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "¿Qué hay de nuevo?"
@@ -11097,6 +11221,14 @@ msgstr "¿Por qué crees que este usuario debe ser revisado?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Escribe un mensaje"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Escribe una publicación"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Escribe una respuesta"
@@ -11133,8 +11265,8 @@ msgstr "www.midirecto.tv"
msgid "Yes"
msgstr "Sí"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Sí, desactivar"
@@ -11188,7 +11320,7 @@ msgstr "Estás en cola."
msgid "You are Live"
msgstr "Estás emitiendo en directo"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Ya no estás emitiendo en directo"
@@ -11200,7 +11332,7 @@ msgstr "No tienes permiso para subir videos."
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "¡Estás en directo!"
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Ahora puedes iniciar sesión con tu nueva contraseña."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Puedes reactivar tu cuenta para continuar iniciando sesión. Tu perfil y publicaciones serán visibles para otros usuarios."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "Has bloqueado a este usuario"
msgid "You have blocked this user. You cannot view their content."
msgstr "Has bloqueado a este usuario. No puedes ver su contenido."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Has desactivado las notificaciones de respuestas, citas y menciones, por lo que esta pestaña no se actualizará más. Para cambiarlo, ve a los <0>Ajustes de notificaciones0>."
@@ -11376,6 +11508,14 @@ msgstr "Has verificado tu dirección de correo electrónico correctamente. Puede
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Has alcanzado temporalmente el límite de carga de videos. Inténtalo de nuevo más tarde."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "¡Aún no has creado un paquete de inicio!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Debes seguir al menos a siete personas más para generar un paquete de inicio."
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "Debes otorgar acceso a tu biblioteca de fotos para guardar un código QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Ya estás en cola"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Has iniciado sesión con una contraseña de app. Utiliza tu contraseña principal para continuar con la desactivación tu cuenta."
@@ -11589,7 +11729,7 @@ msgstr "Has alcanzado tu límite diario de carga de videos (demasiados bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Has alcanzado tu límite diario de carga de videos (demasiados videos)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Has visto todos los videos que había. ¿Qué te parece si hacemos una pausa?"
@@ -11625,7 +11765,7 @@ msgstr "Hemos recibido tu apelación. Si se acepta, te avisaremos por correo ele
msgid "Your birth date"
msgstr "Tu fecha de nacimiento"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Tu navegador no soporta este formato de video. Por favor, inténtalo con uno diferente."
@@ -11692,8 +11832,8 @@ msgstr "Tu nombre de usuario completo será <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Tus intereses"
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr "La contraseña debe tener al menos 8 caracteres."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Tu perfil, publicaciones, feeds y listas dejarán de ser visibles para otros usuarios de Bluesky. Puedes reactivar tu cuenta en cualquier momento iniciando sesión."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/eu/messages.po b/src/locale/locales/eu/messages.po
index e83028c1ef..b19128964b 100644
--- a/src/locale/locales/eu/messages.po
+++ b/src/locale/locales/eu/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: eu\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Basque\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {berpost #} other {# berpost}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {segundu #} other {# segundu}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {Elementu bat} other {# elementu}} irakurri gabe"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {Elementu bat} other {# elementu}} irakurri gabe"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, other {# hilabete}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, one {post 1 gehiago} other {# post gehiago}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {jarraitzaile} other {jarraitzaile}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {jarraitzen} other {jarraitzen}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {gogoko} other {gogoko}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {gogoko} other {gogoko}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {post} other {post}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {aipamen} other {aipamen}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {berpost} other {berpost}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {gordea} other {gordeta}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (Kontua)"
@@ -189,11 +193,11 @@ msgstr "{0} erreakzioantu du {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} erreakzioantu du {1} {2}-i"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, {1} -ren feeda, {2} -k gustoko du"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, {1}-ren zerrenda"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {# erabiltzaile}} elkartu dira!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {minutu #} other {# minutu}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {Elementu bat} other {# elementu}} irakurri gabe"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>eta {2, plural, one {beste #} other {beste #}} zure abio multzoan daude"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {jarraitzaile} other {jarraitzaile}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {jarraitzen} other {jarraitzen}}"
@@ -580,6 +584,11 @@ msgstr "Argitalpen baten pantaila-argazkia, partekatzeko botoiaren ondoan botoi
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Jarraitu botoiaren ondoan kanpai ikono bat duen profil orri baten pantaila-argazkia, jarduera berrien jakinarazpenen funtzioa adierazten duena."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Gehitu {0} gehiago jarraitzeko"
msgid "Add {displayName} to starter pack"
msgstr "Gehitu {displayName} abio multzora"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Gehitu eduki abisu bat"
@@ -754,11 +763,11 @@ msgstr "Gehitu aukerazko testua (hautazkoa)"
msgid "Add another account"
msgstr "Gehitu beste kontu bat"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Gehitu beste post bat"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Gehitu beste post bat harira"
@@ -776,12 +785,12 @@ msgstr "Gehitu Aplikazio Pasahitza"
msgid "Add emoji reaction"
msgstr "Gehitu emoji erreakzioa"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Gehitu irudia"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Gehitu multimedia postari"
@@ -871,7 +880,7 @@ msgstr "Xehetasun gehiago (1000 karaktere gehienez)"
msgid "Additional details (limit 300 characters)"
msgstr "Xehetasun gehiago (300 karaktere gehienez)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Heldua"
@@ -879,10 +888,10 @@ msgstr "Heldua"
msgid "Adult content"
msgstr "Eduki heldua"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Eduki heldua"
@@ -894,8 +903,8 @@ msgstr "Eduki heldua <0>bsky.app0> Web bidez bakarrik gaitu daiteke."
msgid "Adult content is disabled."
msgstr "Eduki heldua desgaitua dago."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Eduki Heldu etiketak"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "ane@adibidea.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Guztiak"
@@ -1017,7 +1026,7 @@ msgstr "Dagoeneko kontu bat daukazu?"
msgid "Already signed in as @{0}"
msgstr "Dagoeneko izena emanda @{0} bezala"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "AUKERAZKO TESTUA"
msgid "Alt text"
msgstr "Aukerazko testua"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Aukerazko Testua"
@@ -1059,7 +1068,7 @@ msgstr "Mezu elektroniko bat bidali da {0} helbidera. Behean sar dezakezun berre
msgid "An error has occurred"
msgstr "Errore bat gertatu da"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Errore bat gertatu da"
@@ -1067,7 +1076,7 @@ msgstr "Errore bat gertatu da"
msgid "An error occurred while compressing the video."
msgstr "Errore bat gertatu da bideoa konprimitzean."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "Errore bat gertatu da iradokitako kontuak eskuratzean."
@@ -1076,7 +1085,7 @@ msgstr "Errore bat gertatu da iradokitako kontuak eskuratzean."
msgid "An error occurred while fetching the feed."
msgstr "Errore bat gertatu da feeda eskuratzerakoan."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Errore bat gertatu da zure abio multzoa sortzean. Berriro saiatu nahi duzu?"
@@ -1088,7 +1097,7 @@ msgstr "Errore bat gertatu da iradokizuna ezkutatzean. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "Errore bat gertatu da bideoa kargatzean. Mesedez, saiatu berriro geroago."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Errore bat gertatu da bideoa kargatzean. Mesedez, saiatu berriro."
@@ -1181,7 +1190,7 @@ msgstr "Animalien ongizatea"
msgid "Animals"
msgstr "Animaliak"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF animatuak"
@@ -1306,12 +1315,12 @@ msgstr "Aplikatu gomendatutako feed lehenetsiak"
msgid "Apply Pull Request"
msgstr "Aplikatu Tira Eskaera"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "{0}-tik artxibatuta"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Gordetako posta"
@@ -1332,11 +1341,11 @@ msgstr "Ziur zaude abio multzo hau ezabatu nahi duzula?"
msgid "Are you sure you want to discard your changes?"
msgstr "Ziur zaude zure aldaketak baztertu nahi dituzula?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Ziur zaude elkarrizketa hau utzi nahi duzula?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Ziur zaude elkarrizketa hau utzi nahi duzula? Zure mezuak ezabatuko dira zuretzako, baina ez beste parte-hartzaileentzat."
@@ -1344,11 +1353,7 @@ msgstr "Ziur zaude elkarrizketa hau utzi nahi duzula? Zure mezuak ezabatuko dira
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Ziur zaude hau zure feedetatik ezabatu nahi duzula?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Ziur zaude zirriborro hau baztertu nahi duzula?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Ziur zaude post hau baztertu nahi duzula?"
@@ -1364,7 +1369,7 @@ msgstr "<0>{suggestedLanguageName}0>-z idazten ari zara?"
msgid "Art"
msgstr "Artea"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Biluztasun artistikoa edo ez erotikoa"
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Bideo eta GIF erreprodukzio automatikoa"
@@ -1404,11 +1409,13 @@ msgstr "Eskuragarri"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Atzera"
@@ -1578,7 +1585,7 @@ msgstr "Blog-a"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky-k ezin du baieztatu erreklamatutako dataren benetakotasuna."
@@ -1623,7 +1630,7 @@ msgstr "Bluesky Sozial Zerbitzu Baldintzak"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Bluesky-k zure kontaktuak datu kodetu gisa gordetzen ditu. Kontaktuak kentzeak datu horiek berehala ezabatuko ditu."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky-k zure sareko pertsonen artean gomendatutako kontu multzo bat aukeratuko du."
@@ -1664,20 +1671,20 @@ msgstr "Guneko arauak haustea"
msgid "Browse custom feeds"
msgstr "Arakatu feed pertsonalizatuak"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "Arakatu kontu gehiago"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Nabigatu feed gehiagotatik Arakatu orrian"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Nabigatu proposamen gehiagotatik"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Nabigatu proposamen gehiagotatik Arakatu orrian"
@@ -1770,8 +1777,8 @@ msgstr "Kamera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Utzi bilaketa"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Ezin da blokeatutako erabiltzaile batekin elkarreragin"
@@ -1901,9 +1908,9 @@ msgstr "Aldaketak gordeta"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Txateatu"
@@ -1989,7 +1996,7 @@ msgstr "Aukeratu domeinua egiaztatzeko metodoa"
msgid "Choose Feeds"
msgstr "Aukeratu Feedak"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Aukeratu niretzat"
@@ -2096,6 +2103,7 @@ msgstr "Klip 🐴 klop 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Klip 🐴 klop 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,7 +2176,8 @@ msgstr "Itxi GIF elkarrizketa-koadroa"
msgid "Close image"
msgstr "Itxi irudia"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr "Itxi irudi ikuslea"
@@ -2190,7 +2199,7 @@ msgstr "Itxi ongietorri modala"
msgid "Closes password update alert"
msgstr "Pasahitzak eguneratzeko alerta ixten du"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Post-konpositorea ixten du eta post-zirriborroa baztertzen du"
@@ -2242,12 +2251,12 @@ msgstr "Osatu sartzea eta hasi zure kontua erabiltzen"
msgid "Complete the challenge"
msgstr "Osatu erronka"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Idatzi post berria"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Idatzi {0, plural, other {# karaktere}} gehienezko postak"
@@ -2255,7 +2264,11 @@ msgstr "Idatzi {0, plural, other {# karaktere}} gehienezko postak"
msgid "Compose reply"
msgstr "Idatzi erantzuna"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Bideoa konprimitzen..."
@@ -2263,7 +2276,6 @@ msgstr "Bideoa konprimitzen..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Konfiguratu edukia iragazteko ezarpena kategoriarako: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "Konfiguratu zuzeneko gertaeraren bannerra"
@@ -2272,8 +2284,8 @@ msgstr "Konfiguratu zuzeneko gertaeraren bannerra"
msgid "Configured in <0>moderation settings0>."
msgstr "<0>Moderazio-ezarpenetan0> konfiguratuta."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "Kontaktuak inportatu dira"
msgid "Contacts removed"
msgstr "Kontaktuak kendu dira"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Edukiak eta Media"
@@ -2389,7 +2401,7 @@ msgstr "Autolesioak sustatzen edo irudikatzen dituen edukia"
msgid "Content Warning"
msgstr "Edukien Abisua"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Edukien abisuak"
@@ -2401,7 +2413,7 @@ msgstr "Testuinguru-menuaren atzeko planoa, egin klik menua ixteko."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Jarraitu"
@@ -2420,7 +2432,7 @@ msgstr "Jarraitu haria..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "Ezin izan dira bat datozen guztiak jarraitu. {0}"
msgid "Could not leave chat"
msgstr "Ezin izan da txata utzi"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Ezin izan da feeda kargatu"
@@ -2643,8 +2655,8 @@ msgstr "Sortu QR kodea abio multzo baterako"
msgid "Create a starter pack"
msgstr "Sortu abio multzo bat"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Sortu Abio Multzo bat"
@@ -2654,12 +2666,12 @@ msgstr "Sortu niretzat abio multzo bat"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Sortu beste bat"
msgid "Create moderation list"
msgstr "Sortu moderazio-zerrenda"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Sortu kontu berria"
@@ -2772,7 +2784,7 @@ msgstr "Jaiotze data"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Desaktibatu kontua"
@@ -2871,7 +2883,7 @@ msgstr "Ezabatu nire kontua"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Ezabatu posta"
@@ -2981,7 +2993,7 @@ msgstr "Desgaitu post honen aipamen postak"
msgid "Disable replies entirely"
msgstr "Desgaitu erantzunak erabat"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Desgaitu azpitituluak"
@@ -2996,8 +3008,11 @@ msgstr "Desgaituta"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Baztertu"
@@ -3006,11 +3021,12 @@ msgstr "Baztertu"
msgid "Discard changes?"
msgstr "Aldaketak baztertu?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Zirriborroa baztertu?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Posta baztertu?"
@@ -3037,7 +3053,7 @@ msgstr "Baztertu"
msgid "Dismiss banner"
msgstr "Baztertu bannerra"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Baztertu errorea"
@@ -3049,11 +3065,16 @@ msgstr "Baztertu hasteko gida"
msgid "Dismiss interests"
msgstr "Baztertu interesak"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "Baztertu zuzeneko gertaeraren bannerra"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Baztertu atal hau"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Baztertu iradokizun hau"
@@ -3121,8 +3142,8 @@ msgstr "Ez kezkatu! Mezu eta ezarpen guztiak gordeta daude eta heldua zarela egi
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Kolpetxo bikoitza edo luze sakatu erreakzio bat gehitzeko"
msgid "Double tap to close the dialog"
msgstr "Sakatu birritan elkarrizketa-koadroa ixteko"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Kolpetxo bikoitza gogoko emateko"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Deskargatu Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Deskargatu CAR fitxategia"
msgid "Doxxing"
msgstr "Doxxing-a"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "Zirriborroak"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Jausi irudiak gehitzeko"
@@ -3285,13 +3313,13 @@ msgstr "Editatu posten interakzio-ezarpenak"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Editatu profila"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Editatu Profila"
@@ -3413,7 +3441,7 @@ msgstr "Gaitu push jakinarazpenak"
msgid "Enable quote posts of this post"
msgstr "Gaitu post honen aipamen postak"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Gaitu azpitituluak"
@@ -3421,13 +3449,13 @@ msgstr "Gaitu azpitituluak"
msgid "Enable this source only"
msgstr "Gaitu iturri hau soilik"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Gaitu joera-gaiak"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Gaitu joera bideoak zure Aurkitu feedean"
@@ -3464,7 +3492,7 @@ msgstr "Sartu hitz edo etiketa bat"
msgid "Enter code"
msgstr "Sartu kodea"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Sartu pantaila osoan"
@@ -3501,7 +3529,7 @@ msgstr "Sartu zure pasahitza"
msgid "Enter your username and password"
msgstr "Sartu zure erabiltzaile-izena eta pasahitza"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Pantaila osora sartzen da"
@@ -3509,7 +3537,7 @@ msgstr "Pantaila osora sartzen da"
msgid "Entertainment"
msgstr "Entretenimendua"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Errorea"
@@ -3570,7 +3598,7 @@ msgstr "Baztertu jarraitzen dituzun erabiltzaileak"
msgid "Excludes users you follow"
msgstr "Jarraitzen dituzun erabiltzaileak baztertzen ditu"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Irten pantaila osotik"
@@ -3578,11 +3606,7 @@ msgstr "Irten pantaila osotik"
msgid "Exits account deletion process"
msgstr "Kontua ezabatzeko prozesutik irteten da"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Irudiaren ikuspegitik irteten da"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Zabaldu aukerazko testua"
@@ -3598,11 +3622,11 @@ msgstr "Zabaldu edo tolestu erantzuten ari zaren post osoa"
msgid "Expand post text"
msgstr "Zabaldu postaren testua"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Postaren testua zabaldu edo tolesten du"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Erregistro batean ebaztea espero zen uri-a"
@@ -3639,7 +3663,7 @@ msgstr "Sexu-irudi esplizituak."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Arakatu"
@@ -3657,8 +3681,8 @@ msgstr "Esportatu nire datuak"
msgid "Export My Data"
msgstr "Esportatu Nire Datuak"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Kanpoko multimedia"
@@ -3730,7 +3754,7 @@ msgstr "Ezin izan da posta ezabatu. Mesedez, saiatu berriro"
msgid "Failed to delete starter pack"
msgstr "Ezin izan da abio multzoa ezabatu"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "Ezin izan dira iradokitako kontu guztiak jarraitu, mesedez, saiatu berriro"
@@ -3829,6 +3853,10 @@ msgstr "Ezin izan da egiaztapena kendu"
msgid "Failed to resolve location. Please try again."
msgstr "Ezin izan da kokapena ebatzi. Mesedez, saiatu berriro."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "Ezin izan da zirriborroa gorde"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Feeda"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "{0}-ren feeda"
@@ -3941,7 +3970,7 @@ msgstr "Feeda ez dago erabilgarri"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Feedbacka"
@@ -3958,7 +3987,7 @@ msgstr "Iritzia feedaren operadoreari bidali zaio"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Feedak"
@@ -4008,6 +4037,10 @@ msgstr "Iragazi noren jakinarazpenak jasotzen dituzun"
msgid "Finalizing"
msgstr "Amaitzen"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Azkenean! Jarrai itzazu zuretzako garrantzitsuak diren postak. Gorde itzazu edozein unetan berriro ikusteko."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Bilatu nire lagunak"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Aurkitu jarraitzeko jendea"
@@ -4098,19 +4131,19 @@ msgstr "Fokua kodearen sarreran"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Jarraitu"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Jarraitu {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Jarraitu {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Jarraitu kontua"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Jarraitu kontua"
msgid "Follow all"
msgstr "Jarraitu denak"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Jarraitu kontu guztiak"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Jarraitu bueltan"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Kontu guztiak jarraituta!"
@@ -4195,8 +4228,8 @@ msgstr "Ezagutzen dituzun jarraitzaileak"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Jarraitzen"
msgid "Following {0}"
msgstr "Jarraitzen {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "{handle}-ri jarraitzen"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Jarraitzen dituzun feeden hobespenak"
@@ -4264,7 +4297,7 @@ msgstr "Segurtasun arrazoiengatik, ezingo duzu hau berriro ikusi. Aplikazioaren
msgid "For the best experience, we recommend using the theme font."
msgstr "Esperientzia onena lortzeko, gaiaren letra-tipoa erabiltzea gomendatzen dizugu."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Zuretzat"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "<0/>-tik"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Abio multzo bat sortu"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Laguntza"
@@ -4376,10 +4409,15 @@ msgstr "Jaso jakinarazpena norbaitek posteatzen duenean"
msgid "Get started"
msgstr "Hasi"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Eman aurpegia zure profilari"
@@ -4394,12 +4432,12 @@ msgstr "Indarkeriaren gorazarrea"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Itzuli"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "Zure kontuan desgaituta dago zuzeneko emanaldia"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Multimedia Grafikoa"
@@ -4592,7 +4630,7 @@ msgstr "Bluesky-k 7 egunez gordetzen du gehiegikeria saihesteko, eta gero ezabat
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Laguntza"
@@ -4632,9 +4670,9 @@ msgstr "Ezkutuko zerrenda"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Ezkutatu erabiltzaile zerrenda"
msgid "Hide verification badges"
msgstr "Ezkutatu egiaztapen-bereizgarriak"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Edukia ezkutatzen du"
@@ -4760,9 +4798,9 @@ msgstr "Eutsi! Pixkanaka bideorako sarbidea ematen ari gara, eta ilaran zain zau
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Hasiera"
@@ -4819,7 +4857,7 @@ msgstr "Ulertzen dut"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "Bluesky-n nago {0} gisa - zatoz nire bila! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Autazko testua luzea bada, autazko testuaren hedapen egoera aldatzen du"
@@ -4872,7 +4910,7 @@ msgstr "Zure kontuaren jardueraren jakinarazpenak nork jaso ditzakeen mugatu nah
msgid "If you're a developer, you can host your own server."
msgstr "Garatzailea bazara, zure zerbitzari propioa osta dezakezu."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Zure handle edo posta elektronikoa aldatzen saiatzen ari bazara, egin hori desaktibatu aurretik."
@@ -4996,6 +5034,10 @@ msgstr "Interakzio ezarpenak"
msgid "Introducing activity notifications"
msgstr "Jarduera-jakinarazpenak aurkeztea"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "Kontaktuen bidez lagunak aurkitzea aurkeztea"
@@ -5089,7 +5131,7 @@ msgstr "Oraintxe <0>{0}0> bakarrik dago! Gehitu jende gehiago zure abio multzo
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Oraintxe bakarrik zaude! Gehitu jende gehiago zure abio multzoari goiko bilaketan."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "Lan ID: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Mantendu nazazu informatuta"
msgid "KWS website"
msgstr "KWS webgunea"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "{0}-k etiketatua."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Egileak etiketatua."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Etiketak"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Etiketak gehitu dira"
@@ -5218,8 +5260,8 @@ msgstr "Lortu informazio gehiago kontaktuak inportatzeari buruz"
msgid "Learn more about self hosting your PDS."
msgstr "Gehiago ikasi zure PDS auto-hostatzeari buruz."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Gehiago ikasi eduki honi aplikatutako moderazioari buruz"
@@ -5231,7 +5273,7 @@ msgstr "Aldaketa hauei buruz gehiago jakiteko eta zure iritziak gurekin nola par
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Aldaketa hauei buruz gehiago jakiteko eta zure iritziak gurekin nola partekatu jakiteko, gure blog-eko argitalpena irakurri."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Gehiago ikasi abisu honi buruz"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "Informazio gehiago zure <0>kontuaren ezarpenetan.0>"
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Ikasi gehiago."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Utzi"
@@ -5286,7 +5328,7 @@ msgstr "Bluesky uzten"
msgid "left to go."
msgstr "joateko utzi."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Utzidazu aukeratzen"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Gogoko"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Gogoko ({0, plural, one {gogoko #} other {# gogoko}})"
@@ -5380,7 +5422,7 @@ msgstr "Zure berposten gustokoak"
msgid "Likes of your reposts notifications"
msgstr "Zure berpost jakinarazpenen gustokoak"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Gogoko post honetan"
@@ -5474,7 +5516,7 @@ msgstr "Zerrenda desmutututa"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Zerrendak"
@@ -5496,10 +5538,20 @@ msgstr "ZUZENEAN"
msgid "Live event happening now: {0}"
msgstr "Zuzeneko gertaera orain gertatzen ari da: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "Zuzeneko gertaera ezkutatua"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "Zuzeneko gertaera aukerak"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "Zuzeneko gertaera ez ezkutatua"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "Zuzeneko gertaerak noizean behin agertzen dira zerbait zirraragarria gertatzen ari denean. Nahi izanez gero, gertaera zehatz hau edo kokapen honetako gertaera guztiak ezkutatu ditzakezu zure aplikazioaren interfazean."
@@ -5524,11 +5576,11 @@ msgstr "Kargatu gehiago"
msgid "Load more suggested feeds"
msgstr "Kargatu iradokitako feed gehiago"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Kargatu jakinarazpen berriak"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "@sawaratsuki.bsky.social-ren logotipoa"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "<0>@sawaratsuki.bsky.social0>-ren logotipoa"
@@ -5600,8 +5652,8 @@ msgstr "Egin bat niretzat"
msgid "Make sure this is where you intend to go!"
msgstr "Ziurtatu hori dela joan nahi duzun tokia!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Kudeatu gordetako feedak"
@@ -5638,7 +5690,16 @@ msgstr "Agian beranduago"
msgid "Media"
msgstr "Multimedia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "{0}-n gordetako multimedia"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "Beste gailu batean gordetako multimedia"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Publiko batzuentzat kezkagarriak edo desegokiak izan daitezkeen multimediak."
@@ -5653,7 +5714,7 @@ msgstr "aipatutako erabiltzaileak"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Aipamenak"
@@ -5716,6 +5777,10 @@ msgstr "Hainbat jakinarazpen"
msgid "Misleading"
msgstr "Engainagarria"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "Falta diren multimediak"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "Hizkuntza gehiago..."
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Pelikulak"
msgid "Music"
msgstr "Musika"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Joan abio multzora"
msgid "Navigates to the next screen"
msgstr "Hurrengo pantailara nabigatzen da"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Zure profilera nabigatzen du"
@@ -5983,6 +6049,7 @@ msgstr "E-posta helbide berria"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Ezaugarri Berria"
@@ -6018,12 +6085,12 @@ msgstr "Mezu berriak"
msgid "New password"
msgstr "Pasahitz berria"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Post berria"
@@ -6085,7 +6152,7 @@ msgstr "Berriak"
msgid "Next"
msgstr "Hurrengoa"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Hurrengo irudia"
@@ -6114,6 +6181,10 @@ msgstr "Ez dago oraindik feed pertsonalizaturik"
msgid "No DNS Panel"
msgstr "DNS Panelik gabe"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "Oraindik ez dago zirriborrorik"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Iraungitze-datarik ez"
@@ -6136,7 +6207,7 @@ msgstr "Irudirik ez"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Ez dago gogokorik oraindik"
@@ -6150,7 +6221,7 @@ msgstr "Ez dago zerrendarik"
msgid "No longer following {0}"
msgstr "Jada ez da {0} jarraitzen"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "Oraindik ez dago multimediarik"
@@ -6195,7 +6266,7 @@ msgstr "Oraindik ez dago postik"
msgid "No quotes yet"
msgstr "Oraindik ez dago aipamenik"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "Erantzunik ez oraindik"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Ez dago emaitzarik"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Ez dago emaitzarik"
@@ -6238,7 +6309,7 @@ msgstr "Ez dago emaitzarik."
msgid "No search results found for \"{search}\"."
msgstr "Ez da aurkitu \"{search}\" bilaketaren emaitzarik."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "Ez dago oraindik Abio Multzorik"
@@ -6247,7 +6318,7 @@ msgstr "Ez dago oraindik Abio Multzorik"
msgid "No thanks"
msgstr "Ez, eskerrik asko"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "Oraindik ez dago bideo postik"
@@ -6298,6 +6369,10 @@ msgstr "Ez dio jarraitzen zuk jarraitzen diozun inork"
msgid "Not Found"
msgstr "Ez da aurkitu"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Partekatzeari buruzko oharra"
@@ -6321,7 +6396,7 @@ msgstr "Ez da ezer gorde oraindik"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Jakinarazpen-ezarpenak"
@@ -6349,10 +6424,10 @@ msgstr "Jakinarazpen Soinuak"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Jakinarazpenak"
@@ -6368,8 +6443,8 @@ msgstr "orain"
msgid "Now"
msgstr "Orain"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Biluztasuna"
@@ -6390,7 +6465,7 @@ msgstr "Ai ez!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "Ados"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Ados"
@@ -6417,23 +6492,23 @@ msgstr "<0><1/><2><3/>2>0>-n"
msgid "Onboarding reset"
msgstr "Sartzea berrezarri"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "GIF bati edo gehiagori aukerazko testua falta zaio."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Irudi bati edo gehiagori aukerazko testua falta zaio."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "Hautatutako fitxategi bat edo gehiago ez dira onartzen."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "Hautatutako fitxategi bat edo gehiago handiegiak dira. Gehienezko tamaina 100 MB da."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Bideo bati edo gehiagori aukerazko testua falta zaio."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Arazoren bat izan da!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ups!"
msgid "Open avatar creator"
msgstr "Ireki abatar sortzailea"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "Ireki kamera"
@@ -6485,12 +6560,16 @@ msgstr "Ireki kamera"
msgid "Open conversation options"
msgstr "Ireki elkarrizketa aukerak"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "Ireki zirriborroa"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Ireki marrazki menua"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Ireki emoji-hautatzailea"
@@ -6557,7 +6636,7 @@ msgstr "Ireki sistemaren erregistroa"
msgid "Opens {0} feed"
msgstr "{0} feeda irekitzen du"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Zure postari eduki-abisua gehitzeko elkarrizketa-koadro bat irekitzen du"
@@ -6589,25 +6668,25 @@ msgstr "Handle aldaketa elkarrizketa-koadroa irekitzen du"
msgid "Opens composer"
msgstr "Konpositorea irekitzen du"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "Ireki kamera gailua"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "Gailuaren galeria irekitzen du gehienez {MAX_IMAGES, plural, other {# irudi}}, edo bideo edo GIF bakarra hautatzeko."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Emoji-hautatzailea irekitzen du"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Fluxua irekitzen du Bluesky kontu berri bat sortzeko"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Fluxua irekitzen du lehendik duzun Bluesky kontuan saioa hasteko"
@@ -6620,7 +6699,7 @@ msgstr "GIF hautatzeko elkarrizketa-koadroa irekitzen du"
msgid "Opens helpdesk in browser"
msgstr "Laguntza-zerbitzua arakatzailean irekitzen du"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "Irudi-hautatzailea irekitzen du"
@@ -6640,10 +6719,14 @@ msgstr "Pasahitza berrezartzeko formularioa irekitzen du"
msgid "Opens post language settings"
msgstr "Postaren hizkuntza ezarpenak irekitzen ditu"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "Post-konpositorea irekitzen du"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "Zirriborro hau konpositorean irekitzen du"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "OTA egoera: Ez dago bat ere eskuragarri"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Beste bat"
@@ -6763,13 +6846,13 @@ msgstr "Pasahitza eguneratu da"
msgid "Password updated!"
msgstr "Pasahitza eguneratuta!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pausa"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Pausatu bideoa"
@@ -6829,7 +6912,7 @@ msgstr "Telefono zenbakia egiaztatuta"
msgid "Photography"
msgstr "Argazkia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Helduentzako pentsatutako irudiak."
@@ -6874,9 +6957,9 @@ msgstr "Ainguratutako Feedak"
msgid "Pinned to your feeds"
msgstr "Ainguratua zure feedetara"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Erreproduzitu"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Erreproduzitu {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Erreproduzitu bideoa"
@@ -6893,11 +6976,11 @@ msgstr "Erreproduzitu bideoa"
msgid "Play Video"
msgstr "Erreproduzitu Bideoa"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "GIF-a erreproduzitu edo pausatzen du"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Bideoa erreproduzitu edo pausatzen du"
@@ -6909,7 +6992,7 @@ msgstr "GIF-a erreproduzitzen du"
msgid "Plays the video"
msgstr "Bideoa erreproduzitzen du"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Gehitu posteatzen ari zaren multimediari dagozkion eduki-abisuak."
@@ -7066,31 +7149,31 @@ msgstr "Mesedez, idatzi zure mezua jarraian:"
msgid "Politics"
msgstr "Politika"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornografia"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Posteatu"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Posteatu"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Argazki bat posteatu"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Bideo bat posteatu"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Posteatu Dena"
@@ -7217,7 +7300,7 @@ msgstr "Sakatu zuk ere jarraitzen duzun kontu honen jarraitzaileak ikusteko"
msgid "Preview"
msgstr "Aurrebista"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Aurreko irudia"
@@ -7257,8 +7340,8 @@ msgstr "Pribatutasun eta Segurtasun ezarpenak"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Pribatutasun Politika"
@@ -7266,7 +7349,11 @@ msgstr "Pribatutasun Politika"
msgid "Privacy violation of a minor"
msgstr "Adingabe baten pribatutasun urraketa"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Bideoa prozesatzen..."
@@ -7280,10 +7367,10 @@ msgstr "Prozesatzen..."
msgid "profile"
msgstr "profila"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profila"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Erabiltzaileen zerrenda publiko eta partekagarriak mututzeko edo blokeatzeko modu masiboan."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Argitaratu posta"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Argitaratu postak"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Argitaratu erantzunak"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Argitaratu erantzuna"
@@ -7360,6 +7447,7 @@ msgstr "Aipamen jakinarazpenak"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Posta aipatu"
@@ -7385,7 +7473,7 @@ msgstr "Post aipamenak desgaituta daude"
msgid "Quotes"
msgstr "Aipamenak"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Post honen aipamenak"
@@ -7424,11 +7512,11 @@ msgstr "irakurri bilaketa-iragazkiak nola erabili"
msgid "Read blog post"
msgstr "Irakurri blogeko posta"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Irakurri gutxiago"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Irakurri gehiago"
@@ -7720,13 +7808,13 @@ msgstr "Erantzunak desgaituta daude"
msgid "Replies to this post are disabled."
msgstr "Mezu honen erantzunak desgaituta daude."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Erantzun"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Erantzuna ({0, plural, one {erantzun #} other {# erantzun}})"
@@ -7892,7 +7980,7 @@ msgstr "Zuk berpostatua"
msgid "Reposts"
msgstr "Berpostak"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Berpostatu post hau"
@@ -7996,14 +8084,14 @@ msgstr "Azken ekintza berriro saiatzen da, errorea izan duena"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Itzuli aurreko orrialdera"
msgid "Returns to home page"
msgstr "Hasierako orrira itzultzen da"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Aurreko orrialdera itzultzen da"
@@ -8063,7 +8151,7 @@ msgstr "Aurreko urratsera itzultzen da"
msgid "Save"
msgstr "Gorde"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Gorde"
@@ -8076,9 +8164,26 @@ msgstr "Gorde jaiotze data"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Gorde aldaketak"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "Gorde aldaketak?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "Gorde zirriborroa"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "Gorde zirriborroa?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Gorde nire feedetan"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Gordeta"
@@ -8155,7 +8260,7 @@ msgstr "Joan gora"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Bilatu"
@@ -8164,7 +8269,7 @@ msgstr "Bilatu"
msgid "Search @{0}'s posts"
msgstr "Bilatu @{0}-ren postak"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Bilatu izenaren edo interesaren arabera"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Bilatu feedak"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "Bilatu \"{interestsDisplayName}\""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "Bilatu \"{interestsDisplayName}\" (aktiboa)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Bilatu postak"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Bilatu profilak"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Bilatu..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Profilak bilatzen ditu"
@@ -8283,12 +8388,12 @@ msgstr "Ikusi erabiltzailearen #{tag} postak"
msgid "See jobs at Bluesky"
msgstr "Ikusi Bluesky-n lanpostuak"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Ikusi gehiago"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "Ikusi iradokitako profil gehiago"
@@ -8456,7 +8561,7 @@ msgstr "Aukeratu zure feedean itzulpenak egiteko nahi duzun hizkuntza."
msgid "Select your preferred notification channels"
msgstr "Hautatu zure gogoko jakinarazpen kanalak"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "Ez da onartzen hainbat euskarri mota hautatzea."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Bidali Mezu Elektronikoa"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Bidali iritzia"
@@ -8566,7 +8671,7 @@ msgstr "Pasahitza berrezartzeko posta elektronikoa ezartzen du"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Ezarpenak"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Ezarpenak gorde dira"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Sexu-jarduera edo biluztasun erotikoa."
@@ -8634,7 +8739,7 @@ msgstr "Sexu Lizuna"
msgid "Share"
msgstr "Partekatu"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Partekatu"
@@ -8712,13 +8817,13 @@ msgstr "Partekatu zure feed gogokoena!"
msgid "Shared Preferences Tester"
msgstr "Partekatutako Hobespenen Probatzailea"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Erakutsi"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Erakutsi aukerazko testua"
@@ -8820,7 +8925,7 @@ msgstr "Erakutsi feedetako abisua eta iragazkia"
msgid "Show when you’re live"
msgstr "Erakutsi zuzenean zaudenean"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Post hau noiz sortu zenari buruzko informazioa erakusten du"
@@ -8828,8 +8933,8 @@ msgstr "Post hau noiz sortu zenari buruzko informazioa erakusten du"
msgid "Shows other accounts you can switch to"
msgstr "Alda ditzakezun beste kontu batzuk erakusten ditu"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Edukia erakusten du"
@@ -8842,14 +8947,14 @@ msgstr "Edukia erakusten du"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Saioa hasi behar da"
msgid "Signed in as @{0}"
msgstr "@{0} gisa hasi duzu saioa"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Antzeko kontuak"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "Saltatu kontaktuak partekatzea eta jarraitu aplikaziora"
msgid "Skip introduction and start using your account"
msgstr "Saltatu sarrera eta hasi zure kontua erabiltzen"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Hurrengo urratsera joan"
@@ -8967,7 +9068,7 @@ msgstr "Software Garatzailea"
msgid "Some of your verifications are invalid."
msgstr "Zure egiaztapenetako batzuk baliogabeak dira."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Gustatuko litzaizukeen beste feed batzuk"
@@ -8994,7 +9095,7 @@ msgstr "Zerbait gaizki joan da"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Arazoren bat izan da. Mesedez, saiatu berriro"
@@ -9020,7 +9121,7 @@ msgstr "Arazoren bat izan da. Mesedez, saiatu berriro."
msgid "Something wrong? Let us know."
msgstr "Zerbait gaizki? Jakinaraziguzu."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Barkatu, ezin ditugu kontu-iradokizunak kargatu une honetan."
@@ -9113,7 +9214,11 @@ msgstr "Abio Multzoak"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Abio multzoek zure gogoko feedak eta jendea zure lagunekin erraz partekatzeko aukera ematen dizu."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "Abio multzoek zure gogoko feedak eta jendea zure lagunekin partekatzeko aukera ematen dizu."
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "Abio Multzoek zure gogoko feedak eta jendea zure lagunekin partekatzeko aukera ematen dizu."
@@ -9181,11 +9286,11 @@ msgstr "Harpidetu @{0}-ra etiketa hauek erabiltzeko:"
msgid "Subscribe to account activity"
msgstr "Harpidetu kontuaren jarduerara"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Harpidetu Etiketatzailera"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Harpidetu etiketatzaile honetara"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Iradokitako Kontuak"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Zuretzat proposatua"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Lizuna"
@@ -9354,8 +9459,8 @@ msgstr "Baldintzak"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Zerbitzu-Baldintzak"
@@ -9403,12 +9508,12 @@ msgstr "Erabiltzaile-izen hori dagoeneko hartuta dago"
msgid "That's all, folks!"
msgstr "Hori da guztia, lagunok!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Hori da dena!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Kontua zurekin elkarreragin ahal izango du desblokeatu ondoren."
@@ -9447,7 +9552,7 @@ msgstr "Ezagutu feeda"
msgid "The Discover feed now knows what you like"
msgstr "Ezagutu feedak badaki zer gustatzen zaizun"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Esperientzia hobea da aplikazioan. Deskargatu Bluesky orain eta utzi zenuen lekuan hartuko dugu berriro."
@@ -9527,7 +9632,7 @@ msgstr "Gaia"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "Muga bat dago zure jaiotze data aldatzeko maiztasunean. Baliteke egun bat edo bi itxaron behar izatea berriro eguneratu aurretik."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Ez dago kontua desaktibatzeko denbora-mugarik, itzuli edonoiz."
@@ -9711,6 +9816,10 @@ msgstr "Eduki hau ezin da ikusi Bluesky konturik gabe."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Elkarrizketa ezabatuta edo desaktibatuta dagoen kontu batekin da. Sakatu aukerak ikusteko"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "Zirriborro hau betiko ezabatuko da."
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Helbide elektroniko hau zure kontuarekin lotuta dago dagoeneko."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Feed hau hutsik dago! Baliteke erabiltzaile gehiago jarraitu behar izatea edo hizkuntza-ezarpenak doitzea."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Feed hau hutsik dago."
@@ -9798,7 +9907,7 @@ msgstr "Zerrenda hau hutsik dago."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Moderazio-zerbitzu hau ez dago erabilgarri. Ikus behean xehetasun gehiagorako. Arazo honek jarraitzen badu, jarri gurekin harremanetan."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Post honek <0>{0}0>-n sortu dela dio, baina Bluesky-k <1>{1}1>-n ikusi zuen lehen aldiz."
@@ -9818,7 +9927,7 @@ msgstr "Post hau egileak ezabatu du"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Post hau feed eta harietatik ezkutatuta egongo da. Hau ezin da desegin."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Post honen egileak aipamenak desgaitu ditu."
@@ -9834,7 +9943,7 @@ msgstr "Erantzun hau zure hariaren beheko aldean ezkutuko atal batean ordenatuko
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Zerbitzu honek ez du zerbitzu-baldintzarik edo pribatutasun-politikarik eman."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "Zerbitzu hau ez da onartzen Zuzeneko funtzioa beta bertsioan dagoen bitartean. Onartutako zerbitzuak: {formatted}."
@@ -9900,8 +10009,8 @@ msgstr "Honek zure posta aipatutako post honetatik kenduko du erabiltzaile guzti
msgid "Thread options"
msgstr "Hariaren aukerak"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Hariaren hobespenak"
@@ -9951,7 +10060,7 @@ msgstr "Gaur"
msgid "Toggle to enable or disable adult content"
msgstr "Aldatu helduentzako edukia gaitzeko edo desgaitzeko"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Soinua aktibatu/desaktibatzen du"
@@ -9988,8 +10097,8 @@ msgstr "Gaia"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Itzuli"
@@ -10091,15 +10200,15 @@ msgstr "Feedaren informazioa ez dago erabilgarri"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Desblokeatu"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Desblokeatu"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Desblokeatu kontua"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Kontua Desblokeatu?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Desegin"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Desegin"
@@ -10142,7 +10255,7 @@ msgstr "Desegin berposta"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Desegin berposta ({0, plural, one {berpost #} other {# berpost}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "{0} jarraitzen utzi"
@@ -10151,7 +10264,7 @@ msgstr "{0} jarraitzen utzi"
msgid "Unfollow account"
msgstr "Utzi kontua jarraitzeari"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Erabiltzailea jarraitzeari uzten dio"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Ez gogoko"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Ez gogoko ({0, plural, one {gogoko #} other {# gogoko}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Desmututu zerrenda"
msgid "Unmute thread"
msgstr "Haria ez mututu"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Bideoa ez mututu"
@@ -10276,7 +10389,7 @@ msgstr "Zerrenda ainguratik kenduta"
msgid "Unsnooze email reminder"
msgstr "Utzi e-posta bidezko gogorarazpena atzeratzeari"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Harpidetza kendu"
@@ -10285,7 +10398,7 @@ msgstr "Harpidetza kendu"
msgid "Unsubscribe from list"
msgstr "Harpidetza kendu zerrendatik"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Harpidetza kendu etiketatzaile honi"
@@ -10293,7 +10406,7 @@ msgstr "Harpidetza kendu etiketatzaile honi"
msgid "Unsubscribed from list"
msgstr "Zerrendatik harpidetza kenduta"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Bideo mota bateraezina: {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "Kargatu Fitxategietatik"
msgid "Upload from Library"
msgstr "Kargatu Liburutegitik"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Irudiak kargatzen..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Estekaren miniatura kargatzen..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Bideoa kargatzen..."
@@ -10389,8 +10506,8 @@ msgstr "Erabili hornitzaile lehenetsia"
msgid "Use in-app browser"
msgstr "Erabili aplikazioko arakatzailea"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Erabili aplikazioko arakatzailea estekak irekitzeko"
@@ -10445,6 +10562,10 @@ msgstr "Erabiltzaileak Zu blokeatu zaitu"
msgid "User list by {0}"
msgstr "{0}-ren erabiltzaile zerrenda"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr "{0}-ren Erabiltzaile Zerrenda"
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Zure erabiltzaile zerrenda"
@@ -10597,8 +10718,8 @@ msgstr "Egiaztatzen..."
msgid "Version {0}"
msgstr "{0} bertsioa"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Bideoa"
@@ -10614,20 +10735,24 @@ msgstr "Bideo Feeda"
msgid "Video from {0}: {text}"
msgstr "{0}-ren bideoa: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "{0}-ren bideoa. Sakatu bideoa erreproduzitzeko edo pausatzeko"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Bideo-jokoak"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Bideoa geldirik dago"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Bideoa erreproduzitzen ari da"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Ez da bideoa aurkitu."
@@ -10635,11 +10760,11 @@ msgstr "Ez da bideoa aurkitu."
msgid "Video settings"
msgstr "Bideo ezarpenak"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Bideoa kargatuta"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Bideoa: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Bideoa: {0}"
msgid "Videos"
msgstr "Bideoak"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "Bideoek 3 minutu baino gutxiago iraun behar dute."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Ikusi"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Ikusi {0}-ren abatarra"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Ikusi {0}-ren profila"
@@ -10708,7 +10833,7 @@ msgstr "Ikusi gehiago"
msgid "View more trending videos"
msgstr "Joera-bideo gehiago ikusi"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "Ikusi posta"
@@ -10788,7 +10913,7 @@ msgstr "Eduki bortitza edo mehatxagarria"
msgid "Visit site"
msgstr "Webgunea bisitatu"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Bisitatu jakinarazpenen ezarpenak"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Arazoak ditugu zure kontuaren adinaren berme prozesua abiarazteko. Mesedez, <0>jarri harremanetan laguntza-zerbitzuarekin0> laguntza jasotzeko."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Sare arazoak ditugu, saiatu berriro"
@@ -10968,7 +11093,7 @@ msgstr "Sentitzen dugu, baina momentu honetan ezin izan ditugu kargatu zure mutu
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Sentitzen dugu, baina ezin izan da bilaketa osatu. Mesedez, saiatu berriro minutu batzuk barru."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Sentitzen dugu! Erantzuten ari zaren posta ezabatu da."
@@ -10977,7 +11102,7 @@ msgstr "Sentitzen dugu! Erantzuten ari zaren posta ezabatu da."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Sentitzen dugu! Ezin dugu aurkitu bilatzen ari zaren orria."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Sentitzen dugu! Hogei etiketatzailetara baino ezin duzu harpidetu, eta hogeiren mugara iritsi zara."
@@ -11018,10 +11143,9 @@ msgstr "Zeintzuk dira zure interesak?"
msgid "What do you want to call your starter pack?"
msgstr "Nola deitu nahi diozu zure abio multzoari?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Zer da?"
@@ -11097,6 +11221,14 @@ msgstr "Zergatik berrikusi behar da erabiltzaile hau?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Erabiltzaile hau blokeatu eta/edo elkarrizketa hau ezabatu nahi duzu?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "Zure zirriborroak ikusi aurretik zirriborro gisa gorde nahi al duzu hau?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "Zirriborro gisa gorde nahi duzu geroago editatzeko?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Idatzi mezu bat"
msgid "Write a post"
msgstr "Idatzi post bat"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Idatzi posta"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Idatzi zure erantzuna"
@@ -11133,8 +11265,8 @@ msgstr "www.mylivestream.tv"
msgid "Yes"
msgstr "Bai"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Bai, desaktibatu"
@@ -11188,7 +11320,7 @@ msgstr "Ilaran zaude."
msgid "You are Live"
msgstr "Zuzenean zaude"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Jada ez zaude zuzenean"
@@ -11200,7 +11332,7 @@ msgstr "Ezin dituzu bideoak kargatu."
msgid "You are not following anyone yet"
msgstr "Ez zara inor jarraitzen ari oraindik"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Orain zuzenean zaude!"
@@ -11255,11 +11387,11 @@ msgstr "Orain pertsona zehatzek posteatzen dutenean jakinarazpenak jasotzea auke
msgid "You can now sign in with your new password."
msgstr "Orain pasahitz berriarekin saioa hasi dezakezu."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "GIF bakarra hauta dezakezu aldi berean."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "Bideo bakarra hauta dezakezu aldi berean."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Zure kontua berriro aktiba dezakezu saioa hasten jarraitzeko. Zure profila eta postak beste erabiltzaileek ikusgai izango dituzte."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "Guztira gehienez {MAX_IMAGES, plural, other {# irudi}} hauta ditzakezu."
@@ -11317,7 +11449,7 @@ msgstr "Erabiltzaile hau blokeatu duzu"
msgid "You have blocked this user. You cannot view their content."
msgstr "Erabiltzaile hau blokeatu duzu. Ezin duzu bere edukia ikusi."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Erabat desgaitu dituzu erantzun eta aipamen jakinarazpenak, beraz, fitxa hau ez da gehiago eguneratuko. Hori doitzeko, joan zure <0>jakinarazpenen ezarpenetara0>."
@@ -11376,6 +11508,14 @@ msgstr "Zure helbide elektronikoa behar bezala egiaztatu duzu. Leiho hau itxi de
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Bideoak kargatzeko mugara iritsi zara aldi baterako. Mesedez, saiatu berriro geroago."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "Zirriborro honetan gorde gabeko aldaketak dituzu, gorde nahi dituzu?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "Gorde gabeko aldaketak dituzu. Zirriborroak ikusi aurretik gorde nahi dituzu?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Ez duzu oraindik abio multzorik sortu!"
@@ -11437,7 +11577,7 @@ msgstr "Kontu bat sortzeko, {MIN_ACCESS_AGE} urte edo gehiago izan behar dituzu.
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Gutxienez 13 urte izan behar dituzu Bluesky erabiltzeko. Irakurri gure <0>Zerbitzu Baldintzak0> informazio gehiago lortzeko."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Gutxienez beste zazpi pertsona jarraitu behar dituzu abio multzo bat sortzeko."
@@ -11449,7 +11589,7 @@ msgstr "Adinaren bermea bete behar duzu pantaila honetara sartzeko."
msgid "You must grant access to your photo library to save a QR code"
msgstr "Zure argazki liburutegirako sarbidea eman behar duzu QR kodea gordetzeko"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "Zure multimedia liburutegirako sarbidea baimendu behar duzu."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Ilaran zaude"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Aplikazioaren pasahitz batekin hasi duzu saioa. Mesedez, hasi saioa zure pasahitz nagusiarekin zure kontua desaktibatzen jarraitzeko."
@@ -11589,7 +11729,7 @@ msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (byte gehiegi)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (bideo gehiegi)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Ikusteko bideorik gabe geratu zara. Agian momentu ona da atsedena hartzeko?"
@@ -11625,7 +11765,7 @@ msgstr "Zure apelazioa bidali da. Zure apelazioa onartzen bada, mezu elektroniko
msgid "Your birth date"
msgstr "Zure jaiotze-data"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Zure arakatzaileak ez du bideo formatua onartzen. Mesedez, saiatu beste arakatzaile batekin."
@@ -11692,8 +11832,8 @@ msgstr "Zure handle osoa <0>@{0}0> da"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Zure interesak"
@@ -11731,11 +11871,11 @@ msgstr "Zure pasahitza behar bezala aldatu da! Mesedez, erabili zure pasahitz be
msgid "Your password must be at least 8 characters long."
msgstr "Pasahitzak 8 karaktereko luzera izan behar du gutxienez."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "Zure posta bidali da"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "Zure postak bidali dira"
@@ -11752,11 +11892,11 @@ msgstr "Zure profileko argazkia"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "Zure profileko argazkia beste erabiltzaileen profileko argazkien zirkulu zentrokidez inguratuta"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Zure profila, postak, feedak eta zerrendak ez dira ikusgai egongo beste Bluesky erabiltzaileentzat. Zure kontua edonoiz aktiba dezakezu saioa hasita."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "Zure erantzuna bidali da"
diff --git a/src/locale/locales/fi/messages.po b/src/locale/locales/fi/messages.po
index 957bcae090..e8f874a716 100644
--- a/src/locale/locales/fi/messages.po
+++ b/src/locale/locales/fi/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: fi\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# uudelleenjulkaisu} other {# uudelleenjulkaisua}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# sekunti} other {# sekuntia}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {seuraaja} other {seuraajaa}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {seurattu} other {seurattua}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {tykkäys} other {tykkäystä}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {tykkäys} other {tykkäystä}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {julkaisu} other {julkaisua}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {lainaus} other {lainausta}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {uudelleenjulkaisu} other {uudelleenjulkaisua}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr ""
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
@@ -432,7 +436,7 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1} 1>ja {2, plural, one {# muu} other {# muuta}} sisältyvät aloituspakettiisi"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {seuraaja} other {seuraajaa}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {seurattu} other {seurattua}}"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Lisää vielä {0} jatkaaksesi"
msgid "Add {displayName} to starter pack"
msgstr "Lisää {displayName} aloituspakettiin"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Lisää sisältövaroitus"
@@ -754,11 +763,11 @@ msgstr "Lisää tekstivastine (valinnainen)"
msgid "Add another account"
msgstr "Lisää toinen tili"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Lisää toinen julkaisu"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "Lisää sovellussalasana"
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Aikuinen"
@@ -879,10 +888,10 @@ msgstr "Aikuinen"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Aikuissisältö"
@@ -894,8 +903,8 @@ msgstr "Aikuissisällön voi ottaa käyttöön vain selainsovelluksen <0>bsky.ap
msgid "Adult content is disabled."
msgstr "Aikuissisältö on poissa käytöstä."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Aikuissisällön merkinnät"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Kaikki"
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Kirjautuneena jo sisään käyttäjänä @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Tekstivastine"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Tekstivastine"
@@ -1059,7 +1068,7 @@ msgstr "Osoitteeseen {0} on lähetetty sähköpostiviesti. Siinä on vahvistusko
msgid "An error has occurred"
msgstr "On tapahtunut virhe"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Tapahtui virhe"
@@ -1067,7 +1076,7 @@ msgstr "Tapahtui virhe"
msgid "An error occurred while compressing the video."
msgstr "Videota pakattaessa tapahtui virhe."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Aloituspakettiasi luotaessa tapahtui virhe. Haluatko yrittää uudelleen?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "Videota ladattaessa tapahtui virhe. Yritä myöhemmin uudelleen."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Videota ladattaesa tapahtui virhe. Yritä uudelleen."
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Eläimet"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "Animoitu GIF"
@@ -1306,12 +1315,12 @@ msgstr "Käytä oletusarvoisia suositeltuja syötteitä"
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Arkistoitu ajankohdasta {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Arkistoitu julkaisu"
@@ -1332,11 +1341,11 @@ msgstr "Haluatko varmasti poistaa tämän aloituspaketin?"
msgid "Are you sure you want to discard your changes?"
msgstr "Haluatko varmasti hylätä tekemäsi muutokset?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Haluatko varmasti poistua tästä keskustelusta? Viestisi poistuvat sinulta mutta eivät toiselta keskusteluun osallistuneelta."
@@ -1344,11 +1353,7 @@ msgstr "Haluatko varmasti poistua tästä keskustelusta? Viestisi poistuvat sinu
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Haluatko varmasti poistaa tämän syötteistäsi?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Haluatko varmasti hylätä tämän luonnoksen?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Haluatko varmasti hylätä tämän julkaisun?"
@@ -1364,7 +1369,7 @@ msgstr "Kirjoitatko kielellä <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Taide"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Taiteellinen tai ei-eroottinen alastomuus."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Toista videot ja GIF-animaatiot automaattisesti"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Takaisin"
@@ -1578,7 +1585,7 @@ msgstr "Blogi"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky ei voi vahvistaa väitetyn päivämäärän oikeellisuutta."
@@ -1623,7 +1630,7 @@ msgstr ""
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky valitsee joukon suositeltuja tilejä verkostosi käyttäjistä."
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Selaa lisää syötteitä Explore-sivulla"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Selaa lisää ehdotuksia"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Selaa lisää ehdotuksia Explore-sivulla"
@@ -1770,8 +1777,8 @@ msgstr "Kamera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Peruuta haku"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Estetyn käyttäjän kanssa ei voi olla vuorovaikutuksessa"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Chatti"
@@ -1989,7 +1996,7 @@ msgstr "Valitse verkkotunnuksen vahvistusmenetelmä"
msgid "Choose Feeds"
msgstr "Valitse syötteet"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Valitse puolestani"
@@ -2096,6 +2103,7 @@ msgstr "Kopoti 🐴 kopoti 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Kopoti 🐴 kopoti 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Sulje GIF-valintaikkuna"
msgid "Close image"
msgstr "Sulje kuva"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Sulje kuvankatselu"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Sulkee salasanan päivityshälytyksen"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2242,12 +2251,12 @@ msgstr "Suorita käyttöönotto loppuun ja aloita tilisi käyttö"
msgid "Complete the challenge"
msgstr "Suorita haaste loppuun"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Laadi uusi julkaisu"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2264,11 @@ msgstr ""
msgid "Compose reply"
msgstr "Laadi vastaus"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Pakataan videota…"
@@ -2263,7 +2276,6 @@ msgstr "Pakataan videota…"
msgid "Configure content filtering setting for category: {name}"
msgstr "Määritä sisällönsuodatusasetus luokalle {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Määritetään <0>moderointiasetuksissa0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Sisältö ja media"
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "Sisältövaroitus"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Sisältövaroitukset"
@@ -2401,7 +2413,7 @@ msgstr "Kontekstivalikon tausta-alue. Napsauta sulkeaksesi valikon."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Jatka"
@@ -2420,7 +2432,7 @@ msgstr "Jatka ketjua…"
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "Chatista ei voitu poistua"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Syötettä ei voitu ladata"
@@ -2643,8 +2655,8 @@ msgstr "Luo QR-koodi aloituspaketille"
msgid "Create a starter pack"
msgstr "Luo aloituspaketti"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "Luo aloituspaketti minulle"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Luo toinen"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Luo uusi tili"
@@ -2772,7 +2784,7 @@ msgstr "Syntymäaika"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Poista tili käytöstä"
@@ -2871,7 +2883,7 @@ msgstr "Poista tilini"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Poista julkaisu"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Poista tekstitykset käytöstä"
@@ -2996,8 +3008,11 @@ msgstr "Poissa käytöstä"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Hylkää"
@@ -3006,11 +3021,12 @@ msgstr "Hylkää"
msgid "Discard changes?"
msgstr "Hylätäänkö muutokset?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Hylätäänkö luonnos?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Hylätäänkö julkaisu?"
@@ -3037,7 +3053,7 @@ msgstr "Hylkää"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Hylkää virhe"
@@ -3049,11 +3065,16 @@ msgstr "Hylkää aloitusopas"
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr ""
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr "Kaksoisnapauta sulkeaksesi valintaikkunan"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Lataa Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Lataa CAR-tiedosto"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Raahaa tähän lisätäksesi kuvia"
@@ -3285,13 +3313,13 @@ msgstr "Muokkaa julkaisun vuorovaikutusasetuksia"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Muokkaa profiilia"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Muokkaa profiilia"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Ota tekstitykset käyttöön"
@@ -3421,13 +3449,13 @@ msgstr "Ota tekstitykset käyttöön"
msgid "Enable this source only"
msgstr "Ota käyttöön vain tämä lähde"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Ota trendaavat aiheet käyttöön"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr ""
@@ -3464,7 +3492,7 @@ msgstr "Syötä sana tai tunniste"
msgid "Enter code"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Siirry koko näytön tilaan"
@@ -3501,7 +3529,7 @@ msgstr ""
msgid "Enter your username and password"
msgstr "Syötä käyttäjätunnuksesi ja salasanasi"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr ""
@@ -3509,7 +3537,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Virhe"
@@ -3570,7 +3598,7 @@ msgstr "Sulje pois seuraamasi käyttäjät"
msgid "Excludes users you follow"
msgstr "Sulkee pois seuraamasi käyttäjät"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Poistu koko näytön tilasta"
@@ -3578,11 +3606,7 @@ msgstr "Poistu koko näytön tilasta"
msgid "Exits account deletion process"
msgstr "Keskeyttää tilin poistoprosessin"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Poistuu kuvan katselutilasta"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Laajenna tekstivastine"
@@ -3598,11 +3622,11 @@ msgstr "Laajenna tai pienennä julkaisu, johon olit vastaamassa"
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Odotettiin URIn resolvoituvan tietueeseen"
@@ -3639,7 +3663,7 @@ msgstr "Siveettömän seksuaaliset kuvat."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
@@ -3657,8 +3681,8 @@ msgstr "Vie tietoni"
msgid "Export My Data"
msgstr "Vie tietoni"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Ulkoinen media"
@@ -3730,7 +3754,7 @@ msgstr "Julkaisun poistaminen epäonnistui, yritä uudelleen"
msgid "Failed to delete starter pack"
msgstr "Aloituspaketin poistaminen epäonnistui"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Syöte"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Syöte käyttäjältä {0}"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Palaute"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Syötteet"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr "Viimeistely"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Etsi käyttäjiä seurattavaksi"
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Seuraa"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Seuraa tiliä {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr ""
@@ -4133,7 +4166,7 @@ msgstr "Seuraa tiliä"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Seuraa tiliä"
msgid "Follow all"
msgstr "Seuraa kaikkia"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Seuraa takaisin"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "Tuntemasi seuraajat"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Seuratut"
msgid "Following {0}"
msgstr "Seurataan käyttäjää {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Seuratut-syötteen asetukset"
@@ -4264,7 +4297,7 @@ msgstr "Turvallisuussyistä et voi tarkastella tätä enää uudelleen. Jos kado
msgid "For the best experience, we recommend using the theme font."
msgstr "Parhaan käyttökokemuksen saavuttamiseksi suosittelemme käyttämään teemafonttia."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Syötteestä <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Generoi aloituspaketti"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Näytä ohje"
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Anna profiilillesi kasvot"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Palaa takaisin"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Graafinen media"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Ohje"
@@ -4632,9 +4670,9 @@ msgstr "Piilotettu lista"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Piilota käyttäjäluettelo"
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr ""
@@ -4760,9 +4798,9 @@ msgstr "Odottakaa! Annamme vähitellen pääsyn videoon, ja olet yhä odotusjono
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Koti"
@@ -4819,7 +4857,7 @@ msgstr "Ymmärrän"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Jos tekstivastine on pitkä, laajentaa tai pienentää sen"
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Jos yrität vaihtaa käyttäjätunnuksesi tai sähköpostiosoitteesi, tee se ennen kuin poistat tilin käytöstä."
@@ -4996,6 +5034,10 @@ msgstr ""
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Vain sinä olet nyt tässä! Lisää muita käyttäjiä aloituspakettiisi yllä olevalla haulla."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "Työpaikan tunnus: {0}"
@@ -5122,20 +5164,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Merkinnyt {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Tekijän merkitsemä."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Merkinnät"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Merkinnät lisätty"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "Lue lisää PDS:n itse hostaamisesta."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr ""
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Lue lisää tästä varoituksesta"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Lue lisää."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Poistu"
@@ -5286,7 +5328,7 @@ msgstr "Poistutaan Blueskysta"
msgid "left to go."
msgstr "jäljellä."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Anna minun valita"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Tykkää"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Tykkää ({0, plural, one {# tykkäys} other {# tykkäystä}})"
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Tämän julkaisun tykkäykset"
@@ -5474,7 +5516,7 @@ msgstr "Listan mykistys poistettu"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Listat"
@@ -5496,10 +5538,20 @@ msgstr ""
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Lue lisää"
msgid "Load more suggested feeds"
msgstr "Lataa lisää ehdotettuja syötteitä"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Lataa uusia ilmoituksia"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo käyttäjältä @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo käyttäjältä <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Tee minulle sellainen"
msgid "Make sure this is where you intend to go!"
msgstr "Varmista, että olet menossa oikeaan paikkaan!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Hallinnoi tallennettuja syötteitä"
@@ -5638,7 +5690,16 @@ msgstr ""
msgid "Media"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Media, joka voi olla häiritsevää tai sopimatonta joillekin yleisöille."
@@ -5653,7 +5714,7 @@ msgstr "mainitut käyttäjät"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Maininnat"
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Elokuvat"
msgid "Music"
msgstr "Musiikki"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Siirtyy seuraavalle näytölle"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Siirtyy profiiliisi"
@@ -5983,6 +6049,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
@@ -6018,12 +6085,12 @@ msgstr "Uusia viestejä"
msgid "New password"
msgstr "Uusi salasana"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Uusi julkaisu"
@@ -6085,7 +6152,7 @@ msgstr "Uutiset"
msgid "Next"
msgstr "Seuraava"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Seuraava kuva"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "Ei DNS-paneelia"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6136,7 +6207,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Ei vielä tykkäyksiä"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "Et enää seuraa käyttäjää {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "Ei vielä lainauksia"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Ei tulosta"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Ei tuloksia"
@@ -6238,7 +6309,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr "Ei tuloksia haulle ”{search}”."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "Ei kiitos"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr ""
msgid "Not Found"
msgstr "Ei löydy"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Huomio jakamisesta"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Ilmoitusasetukset"
@@ -6349,10 +6424,10 @@ msgstr "Ilmoitusasäänet"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Ilmoitukset"
@@ -6368,8 +6443,8 @@ msgstr "nyt"
msgid "Now"
msgstr "Nyt"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Alastomuus"
@@ -6390,7 +6465,7 @@ msgstr "Voi ei!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Selvä"
@@ -6417,23 +6492,23 @@ msgstr "palvelussa<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Käyttöönoton nollaus"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Ainakin yhdeltä GIF-animaatiolta puuttuu tekstivastine."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Ainakin yhdeltä kuvalta puuttuu tekstivastine."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Ainakin yhdeltä videolta puuttuu tekstivastine."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Hups, jokin meni vikaan!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Hups!"
msgid "Open avatar creator"
msgstr "Avaa profiilikuvan luontityökalu"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "Avaa keskustelun valinnat"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Avaa alavalikko"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Avaa emojinvalitsin"
@@ -6557,7 +6636,7 @@ msgstr "Avaa järjestelmäloki"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Avaa valintaikkunan sisältövaroituksen lisäämiseksi julkaisuusi"
@@ -6589,25 +6668,25 @@ msgstr ""
msgid "Opens composer"
msgstr "Avaa editorin"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Avaa vaiheet uuden Bluesky-tilin luomiseksi"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Avaa vaiheet olemassa olevaan Bluesky-tiliisi kirjautumiseksi"
@@ -6620,7 +6699,7 @@ msgstr "Avaa GIF-valintaikkunan"
msgid "Opens helpdesk in browser"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "Avaa salasanan palautuslomakkeen"
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Jokin muu"
@@ -6763,13 +6846,13 @@ msgstr "Salasana päivitetty"
msgid "Password updated!"
msgstr "Salasana päivitetty!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pysäytä"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Pysäytä video"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "Valokuvaus"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Aikuisille tarkoitetut kuvat."
@@ -6874,9 +6957,9 @@ msgstr "Kiinnitetyt syötteet"
msgid "Pinned to your feeds"
msgstr "Kiinnitetty syötteisiisi"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Toista"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Toista {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Toista video"
@@ -6893,11 +6976,11 @@ msgstr "Toista video"
msgid "Play Video"
msgstr "Toista video"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr ""
@@ -6909,7 +6992,7 @@ msgstr "Toistaa GIF-animaation"
msgid "Plays the video"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "Politiikka"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Porno"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Julkaise"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Julkaise"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Julkaise kaikki"
@@ -7217,7 +7300,7 @@ msgstr "Paina näyttääksesi tämän tilin seuraajat, joita seuraat myös itse"
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Edellinen kuva"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Tietosuojakäytäntö"
@@ -7266,7 +7349,11 @@ msgstr "Tietosuojakäytäntö"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Käsitellään videota…"
@@ -7280,10 +7367,10 @@ msgstr "Käsitellään…"
msgid "profile"
msgstr "profiili"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profiili"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Julkisia, jaettavia listoja käyttäjistä, joita voi mykistää tai estää massoittain."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Lainaa julkaisua"
@@ -7385,7 +7473,7 @@ msgstr "Lainausjulkaisut poissa käytöstä"
msgid "Quotes"
msgstr "Lainaukset"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Tämän julkaisun lainaukset"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr ""
@@ -7720,13 +7808,13 @@ msgstr "Vastaaminen poissa käytöstä"
msgid "Replies to this post are disabled."
msgstr "Tähän julkaisuun vastaaminen on poissa käytöstä."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Vastaa"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Vastaa ({0, plural, one {# vastaus} other {# vastausta}})"
@@ -7892,7 +7980,7 @@ msgstr "Uudelleenjulkaisit"
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Tämän julkaisun uudelleenjulkaisut"
@@ -7996,14 +8084,14 @@ msgstr "Yrittää uudelleen viimeisintä toimintoa, joka epäonnistui"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Palaa edelliselle sivulle"
msgid "Returns to home page"
msgstr "Palaa kotinäkymään"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Palaa edelliselle sivulle"
@@ -8063,7 +8151,7 @@ msgstr ""
msgid "Save"
msgstr "Tallenna"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Tallenna"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Tallenna muutokset"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Tallenna syötteisiini"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "Vieritä alkuun"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Haku"
@@ -8164,7 +8269,7 @@ msgstr "Haku"
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Hae nimellä tai kiinnostuksen kohteella"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Hae syötteitä"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Hae profiileja"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,12 +8388,12 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr "Katso Blueskyn työpaikat"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "Valitse käännösten kieli syötteessäsi."
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Lähetä sähköpostiviesti"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Lähetä palautetta"
@@ -8566,7 +8671,7 @@ msgstr "Asettaa sähköpostiosoitteen salasanan palautusta varten"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Asetukset"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Erotiikka tai muu aikuisviihde."
@@ -8634,7 +8739,7 @@ msgstr "Seksuaalisesti vihjaileva"
msgid "Share"
msgstr "Jaa"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Jaa"
@@ -8712,13 +8817,13 @@ msgstr "Jaa suosikkisyötteesi!"
msgid "Shared Preferences Tester"
msgstr "Jaettujen asetusten testeri"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Näytä"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Näytä tekstivastine"
@@ -8820,7 +8925,7 @@ msgstr "Näytä varoitus ja suodata syötteistä"
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr ""
@@ -8828,8 +8933,8 @@ msgstr ""
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
@@ -8842,14 +8947,14 @@ msgstr ""
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Sisäänkirjautuminen vaaditaan"
msgid "Signed in as @{0}"
msgstr "Kirjautunut sisään käyttäjänä @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Samankaltaisia tilejä"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "Ohjelmistokehitys"
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Muita syötteitä, joista saattaisit pitää"
@@ -8994,7 +9095,7 @@ msgstr "Jokin meni vikaan"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Jokin meni vikaan, yritä uudelleen"
@@ -9020,7 +9121,7 @@ msgstr "Jokin meni vikaan. Yritä uudelleen."
msgid "Something wrong? Let us know."
msgstr "Onko jokin vialla? Kerro meille."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "Aloituspaketit"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Aloituspakettien avulla voit jakaa helposti suosikkisyötteesi ja -käyttäjäsi kavareillesi."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "Tilaa @{0} käyttääksesi näitä merkintöjä:"
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Tilaa merkitsijä"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Tilaa tämä merkitsijä"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Ehdotuksia sinulle"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Vihjaileva"
@@ -9354,8 +9459,8 @@ msgstr "Ehdot"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Käyttöehdot"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "Siinä kaikki, ihmiset!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Tili voi olla vuorovaikutuksessa kanssasi, kun poistat eston."
@@ -9447,7 +9552,7 @@ msgstr "Discover-syöte"
msgid "The Discover feed now knows what you like"
msgstr "Discover-syöte tietää nyt, mistä pidät"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Kokemus on parempi sovelluksessa. Lataa Bluesky nyt, niin jatkamme siitä, mihin jäit."
@@ -9527,7 +9632,7 @@ msgstr "Teema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Tilin käytöstä poistamiseen ei ole aikarajaa. Palaa takaisin milloin tahansa."
@@ -9711,6 +9816,10 @@ msgstr "Tämä sisältö ei ole nähtävissä ilman Bluesky-tiliä."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Tämä syöte on tyhjä! Sinun on ehkä seurattava useampia käyttäjiä tai säädettävä kieliasetuksiasi."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Tämä syöte on tyhjä."
@@ -9798,7 +9907,7 @@ msgstr "Tämä lista on tyhjä."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Tämä moderointipalvelu ei ole saatavilla. Katso lisätietoja alta. Jos ongelma jatkuu, ota yhteys meihin."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Tämä julkaisu väittää olevansa luotu <0>{0}0>, mutta ensi kerran se on nähty Blueskyssa <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Tämä julkaisu piilotetaan syötteistä ja ketjuista. Tätä ei voi kumota."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Tämän julkaisun tekijä on poistanut lainausjulkaisut käytöstä."
@@ -9834,7 +9943,7 @@ msgstr "Tämä vastaus sijoitetaan piilotettuun osaan ketjusi loppuun, ja ilmoit
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Tämä palvelu ei ole toimittanut käyttöehtoja tai tietosuojakäytäntöä."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "Tämä poistaa julkaisusi tästä lainausjulkaisusta kaikilta käyttäji
msgid "Thread options"
msgstr "Ketjun valinnat"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Ketjun asetukset"
@@ -9951,7 +10060,7 @@ msgstr "Tänään"
msgid "Toggle to enable or disable adult content"
msgstr "Vaihda ottaaksesi aikuisille tarkoitetun sisällön käyttöön tai poistaaksesi sen käytöstä"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr ""
@@ -9988,8 +10097,8 @@ msgstr "Aihe"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Käännä"
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Poista esto"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Poista esto"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Poista tilin esto"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Poistetaanko tilin esto?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "Kumoa uudelleenjulkaisu"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Kumoa uudelleenjulkaisu ({0, plural, one {# uudelleenjulkaisu} other {# uudelleenjulkaisua}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Lopeta käyttäjän {0} seuraaminen"
@@ -10151,7 +10264,7 @@ msgstr "Lopeta käyttäjän {0} seuraaminen"
msgid "Unfollow account"
msgstr "Lopeta tilin seuraaminen"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr ""
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Älä tykkää"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Älä tykkää ({0, plural, one {# tykkäys} other {# tykkäystä}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr ""
msgid "Unmute thread"
msgstr "Poista ketjun mykistys"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Poista videon mykistys"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Peruuta tilaus"
@@ -10285,7 +10398,7 @@ msgstr "Peruuta tilaus"
msgid "Unsubscribe from list"
msgstr "Peruuta listan tilaus"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Peruuta merkitsijän tilaus"
@@ -10293,7 +10406,7 @@ msgstr "Peruuta merkitsijän tilaus"
msgid "Unsubscribed from list"
msgstr "Listan tilaus peruutettu"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "Lataa tiedostoista"
msgid "Upload from Library"
msgstr "Lataa kirjastosta"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Ladataan kuvia palveluun…"
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Ladataan linkin pikkukuvaa palveluun…"
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Ladataan videota palveluun…"
@@ -10389,8 +10506,8 @@ msgstr "Käytä oletustoimittajaa"
msgid "Use in-app browser"
msgstr "Käytä sovelluksen sisäistä selainta"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Avaa linkit sovelluksen sisäisellä selaimella"
@@ -10445,6 +10562,10 @@ msgstr "Käyttäjä on estänyt sinut"
msgid "User list by {0}"
msgstr "Käyttäjälista käyttäjältä {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Oma käyttäjälistasi"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr ""
@@ -10614,20 +10735,24 @@ msgstr ""
msgid "Video from {0}: {text}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Videopelit"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Videota ei löydy."
@@ -10635,11 +10760,11 @@ msgstr "Videota ei löydy."
msgid "Video settings"
msgstr "Videon asetukset"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Video ladattu palveluun"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr ""
@@ -10647,23 +10772,23 @@ msgstr ""
msgid "Videos"
msgstr "Videot"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Näytä käyttäjän {0} profiilikuva"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Näytä käyttäjän {0} profiili"
@@ -10708,7 +10833,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Meillä on verkko-ongelmia, yritä uudelleen"
@@ -10968,7 +11093,7 @@ msgstr "Pahoittelut, mutta emme tällä kertaa onnistuneet lataamaan mykistettyj
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Pahoittelut, mutta hakuasi ei voitu suorittaa loppuun. Yritä uudelleen muutaman minuutin kuluttua."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Pahoittelut! Julkaisu, johon olet vastaamassa, on poistettu."
@@ -10977,7 +11102,7 @@ msgstr "Pahoittelut! Julkaisu, johon olet vastaamassa, on poistettu."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Pahoittelut! Emme löydä etsimääsi sivua."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Pahoittelut! Voit tilata vain kaksikymmentä merkitsijää, ja olet saavuttanut kahdenkymmenen rajasi."
@@ -11018,10 +11143,9 @@ msgstr "Mitkä ovat kiinnostuksenkohteesi?"
msgid "What do you want to call your starter pack?"
msgstr "Millä nimellä haluat kutsua aloituspakettiasi?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Mitä kuuluu?"
@@ -11097,6 +11221,14 @@ msgstr "Miksi tämä käyttäjä tulisi arvioida?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Kirjoita viesti"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Kirjoita julkaisu"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Kirjoita vastauksesi"
@@ -11133,8 +11265,8 @@ msgstr ""
msgid "Yes"
msgstr "Kyllä"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Kyllä, poista käytöstä"
@@ -11188,7 +11320,7 @@ msgstr "Olet jonossa."
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11200,7 +11332,7 @@ msgstr "Sinun ei ole mahdollista ladata videoita palveluun."
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Voit nyt kirjautua sisään uudella salasanallasi."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Voit palauttaa tilisi käyttöön jatkaaksesi sisäänkirjautumista. Profiilisi ja julkaisusi tulevat näkyviin muille käyttäjille."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "Olet estänyt tämän käyttäjän"
msgid "You have blocked this user. You cannot view their content."
msgstr "Olet estänyt tämän käyttäjän. Et voi nähdä hänen sisältöään."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Olet väliaikaisesti saavuttanut videolatausten rajoituksen. Yritä myöhemmin uudelleen."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Et ole luonut vielä aloituspakettia!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Sinun on seurattava ainakin seitsemää muuta käyttäjää, jotta voit luoda aloituspaketin."
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "Sinun on myönnettävä pääsy kuvakirjastoosi tallentaaksesi QR-koodin"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Olet jonossa"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -11589,7 +11729,7 @@ msgstr "Olet saavuttanut päiväkohtaisen videolatausten rajoituksen (liian mont
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Olet saavuttanut päiväkohtaisen videolatausten rajoituksen (liian monta videota)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
@@ -11625,7 +11765,7 @@ msgstr ""
msgid "Your birth date"
msgstr "Syntymäaikasi"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Selaimesi ei tue tätä videotiedostomuotoa. Kokeile eri selainta."
@@ -11692,8 +11832,8 @@ msgstr "Koko tuleva käyttäjätunnuksesi on <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr ""
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Profiilisi, julkaisusi, syötteesi ja listasi eivät enää näy muille Blueskyn käyttäjille. Voit palauttaa tilisi käyttöön milloin tahansa kirjautumalla sisään."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po
index 9214ada1ee..001b6097be 100644
--- a/src/locale/locales/fr/messages.po
+++ b/src/locale/locales/fr/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: fr\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# repost} other {# reposts}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# seconde} other {# secondes}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# élément non lu} other {# éléments non lus}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# élément non lu} other {# éléments non lus}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# mois} other {# mois}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, one {un autre post} other {# autres posts}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {abonné·e} other {abonné·e·s}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {abonnement} other {abonnements}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {a aimé} other {ont aimé}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {a aimé} other {ont aimé}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {post} other {posts}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citation} other {citations}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {repost} other {reposts}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {conservé} other {conservés}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (compte)"
@@ -189,11 +193,11 @@ msgstr "{0} a réagi avec {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} a réagi avec {1} à {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, un fil d’actu de {1}, aimé par {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, une liste de {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {# personnes se sont}} inscrites !"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# minute} other {# minutes}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# élément non lu} other {# éléments non lus}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1} 1>et {2, plural, one {# autre} other {# autres}} sont inclus dans votre kit de démarrage"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {abonné·e} other {abonné·e·s}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {abonnement} other {abonnements}}"
@@ -580,6 +584,11 @@ msgstr "Une capture d’écran d’un post avec un nouveau bouton à côté de c
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Une capture d’écran d’une page de profil avec une icône de cloche à côté du bouton de suivi, indiquant la nouvelle fonctionnalité de notification d’activité."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Ajouter {0} autres pour continuer"
msgid "Add {displayName} to starter pack"
msgstr "Ajouter {displayName} au kit de démarrage"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Ajouter un avertissement sur le contenu"
@@ -754,11 +763,11 @@ msgstr "Ajouter un texte alt (facultatif)"
msgid "Add another account"
msgstr "Ajouter un autre compte"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Ajouter un autre post"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Ajouter un autre post au fil de discussion"
@@ -776,12 +785,12 @@ msgstr "Ajouter un mot de passe d’application"
msgid "Add emoji reaction"
msgstr "Ajouter une réaction émoji"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Ajouter une image"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Ajouter un média au post"
@@ -871,7 +880,7 @@ msgstr "Détails supplémentaires (1000 caractères maximum)"
msgid "Additional details (limit 300 characters)"
msgstr "Détails supplémentaires (300 caractères maximum)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Adulte"
@@ -879,10 +888,10 @@ msgstr "Adulte"
msgid "Adult content"
msgstr "Contenu pour adultes"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Contenu pour adultes"
@@ -894,8 +903,8 @@ msgstr "Le contenu pour adultes ne peut être activé que via le Web sur <0>bsky
msgid "Adult content is disabled."
msgstr "Le contenu pour adultes est désactivé."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Étiquettes de contenu adulte"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Toutes"
@@ -1017,7 +1026,7 @@ msgstr "Vous avez déjà un compte ?"
msgid "Already signed in as @{0}"
msgstr "Déjà connecté·e en tant que @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Texte alt"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Texte alt"
@@ -1059,7 +1068,7 @@ msgstr "Un e-mail a été envoyé à {0}. Il comprend un code de confirmation qu
msgid "An error has occurred"
msgstr "Une erreur s’est produite"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Une erreur s’est produite"
@@ -1067,7 +1076,7 @@ msgstr "Une erreur s’est produite"
msgid "An error occurred while compressing the video."
msgstr "Une erreur s’est produite lors de la compression de la vidéo."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "Une erreur est survenue lors de la récupération des comptes suggérés."
@@ -1076,7 +1085,7 @@ msgstr "Une erreur est survenue lors de la récupération des comptes suggérés
msgid "An error occurred while fetching the feed."
msgstr "Une erreur s’est produite lors de la récupération du fil d’actu."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Une erreur s’est produite lors de la génération de votre kit de démarrage. Vous voulez réessayer ?"
@@ -1088,7 +1097,7 @@ msgstr "Une erreur s’est produite lors du masquage de la suggestion. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "Une erreur s’est produite lors du chargement de la vidéo. Veuillez réessayer plus tard."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Une erreur s’est produite lors du chargement de la vidéo. Veuillez réessayer."
@@ -1181,7 +1190,7 @@ msgstr "Bien-être animal"
msgid "Animals"
msgstr "Animaux"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF animé"
@@ -1306,12 +1315,12 @@ msgstr "Utiliser les fils d’actu recommandés par défaut"
msgid "Apply Pull Request"
msgstr "Appliquer la pull request"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Archive datée du {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Post archivé"
@@ -1332,11 +1341,11 @@ msgstr "Êtes-vous sûr de vouloir supprimer ce kit de démarrage ?"
msgid "Are you sure you want to discard your changes?"
msgstr "Êtes-vous sûr de vouloir abandonner vos changements ?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Êtes-vous sûr de vouloir quitter cette conversation ?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Êtes-vous sûr de vouloir partir de cette conversation ? Vos messages seront supprimés pour vous, mais pas pour l’autre personne."
@@ -1344,11 +1353,7 @@ msgstr "Êtes-vous sûr de vouloir partir de cette conversation ? Vos messages
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Êtes-vous sûr de vouloir supprimer cela de vos fils d’actu ?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Êtes-vous sûr de vouloir abandonner ce brouillon ?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Êtes-vous sûr de vouloir abandonner ce post ?"
@@ -1364,7 +1369,7 @@ msgstr "Écrivez-vous en <0>{suggestedLanguageName}0> ?"
msgid "Art"
msgstr "Art"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Nudité artistique ou non érotique."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurores"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Lire automatiquement les vidéos et les GIFs"
@@ -1404,11 +1409,13 @@ msgstr "Disponible"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Retour"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky ne peut pas confirmer l’authenticité de la date déclarée."
@@ -1623,7 +1630,7 @@ msgstr "Conditions générales de Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Bluesky stocke vos contacts sous forme de données encodées qui seront supprimées immédiatement si vous décidez plus tard de retirer vos contacts."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky choisira un ensemble de comptes recommandés parmi les personnes de votre réseau."
@@ -1664,20 +1671,20 @@ msgstr "Non-respect des règles du site"
msgid "Browse custom feeds"
msgstr "Parcourir les fils d’actu personnalisés"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "Parcourir plus de comptes"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Parcourir d’autres fils d’actu sur la page « Explorer »"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Parcourir d’autres suggestions"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Parcourir d’autres suggestions sur la page « Explorer »"
@@ -1770,8 +1777,8 @@ msgstr "Caméra"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Caméra"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Annuler la recherche"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Impossible d’interagir avec un compte bloqué"
@@ -1901,9 +1908,9 @@ msgstr "Modifications enregistrées"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Discussions"
@@ -1989,7 +1996,7 @@ msgstr "Sélectionnez une méthode de vérification de domaine"
msgid "Choose Feeds"
msgstr "Choisissez des fils d’actu"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Choisir pour moi"
@@ -2096,6 +2103,7 @@ msgstr "Cataclop 🐴 cataclop 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Cataclop 🐴 cataclop 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Fermer le dialogue des GIFs"
msgid "Close image"
msgstr "Fermer l’image"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Fermer la visionneuse d’images"
+msgstr "Ferme l’aperçu d’image"
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr "Fermer la fenêtre de bienvenue"
msgid "Closes password update alert"
msgstr "Ferme la notification de mise à jour du mot de passe"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Ferme la fenêtre de rédaction et abandonne le brouillon de post"
@@ -2242,12 +2251,12 @@ msgstr "Terminez le didacticiel et commencez à utiliser votre compte"
msgid "Complete the challenge"
msgstr "Compléter le défi"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Écrire un nouveau post"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Permet d’écrire des posts de {0, plural, other {# caractères}} maximum"
@@ -2255,7 +2264,11 @@ msgstr "Permet d’écrire des posts de {0, plural, other {# caractères}} maxim
msgid "Compose reply"
msgstr "Rédiger une réponse"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Compression de la vidéo en cours…"
@@ -2263,7 +2276,6 @@ msgstr "Compression de la vidéo en cours…"
msgid "Configure content filtering setting for category: {name}"
msgstr "Configure les paramètres de filtrage de contenu pour la catégorie : {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "Configurer la bannière de direct"
@@ -2272,8 +2284,8 @@ msgstr "Configurer la bannière de direct"
msgid "Configured in <0>moderation settings0>."
msgstr "Configuré dans <0>les paramètres de modération0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "Contacts importés"
msgid "Contacts removed"
msgstr "Contacts retirés"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Contenu et médias"
@@ -2389,7 +2401,7 @@ msgstr "Contenu promouvant ou illustrant de l’automutilation"
msgid "Content Warning"
msgstr "Avertissement sur le contenu"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Avertissements sur le contenu"
@@ -2401,7 +2413,7 @@ msgstr "Menu contextuel en arrière-plan, cliquez pour fermer le menu."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Continuer"
@@ -2420,7 +2432,7 @@ msgstr "Poursuivre le fil de discussion…"
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "Échec du suivi de tous les contacts trouvés. {0}"
msgid "Could not leave chat"
msgstr "Impossible de partir de la discussion"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Impossible de charger le fil d’actu"
@@ -2643,8 +2655,8 @@ msgstr "Créer un code QR pour un kit de démarrage"
msgid "Create a starter pack"
msgstr "Créer un kit de démarrage"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Créer un kit de démarrage"
@@ -2654,12 +2666,12 @@ msgstr "Créer un kit de démarrage pour moi"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Créer un autre"
msgid "Create moderation list"
msgstr "Créer une liste de modération"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Créer un nouveau compte"
@@ -2772,7 +2784,7 @@ msgstr "Date de naissance"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Désactiver le compte"
@@ -2871,7 +2883,7 @@ msgstr "Supprimer mon compte"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Supprimer le post"
@@ -2981,7 +2993,7 @@ msgstr "Empêcher les citations pour ce post"
msgid "Disable replies entirely"
msgstr "Désactiver complètement les réponses"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Désactiver les sous-titres"
@@ -2996,8 +3008,11 @@ msgstr "Désactivé"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Abandonner"
@@ -3006,11 +3021,12 @@ msgstr "Abandonner"
msgid "Discard changes?"
msgstr "Abandonner les changements ?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Abandonner le brouillon ?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Abandonner ce post ?"
@@ -3037,7 +3053,7 @@ msgstr "Ignorer"
msgid "Dismiss banner"
msgstr "Ignorer la bannière"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Ignorer l’erreur"
@@ -3049,11 +3065,16 @@ msgstr "Annuler le guide de démarrage"
msgid "Dismiss interests"
msgstr "Ignorer les centres d’intérêt"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "Ignorer la bannière du direct"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Ignorer cette section"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Ignorer cette suggestion"
@@ -3121,8 +3142,8 @@ msgstr "Pas d’inquiétude ! Tous les messages existants et vos paramètres so
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Tapez deux fois ou appuyez longtemps sur le message pour ajouter une ré
msgid "Double tap to close the dialog"
msgstr "Tapez deux fois pour fermer cette boîte de dialogue"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Tapez deux fois pour aimer"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Télécharger Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Télécharger le fichier CAR"
msgid "Doxxing"
msgstr "Divulgation de données personnelles (doxxing)"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "Brouillons"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Déposer pour ajouter des images"
@@ -3285,13 +3313,13 @@ msgstr "Modifier les paramètres d’interaction du post"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Modifier le profil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Modifier le profil"
@@ -3413,7 +3441,7 @@ msgstr "Activer les alertes (notifs push)"
msgid "Enable quote posts of this post"
msgstr "Autoriser les citations pour ce post"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Activer les sous-titres"
@@ -3421,13 +3449,13 @@ msgstr "Activer les sous-titres"
msgid "Enable this source only"
msgstr "Active cette source uniquement"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Activer les tendances"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Activer les vidéos tendances dans votre fil Discover"
@@ -3464,7 +3492,7 @@ msgstr "Saisir un mot ou un mot-clé"
msgid "Enter code"
msgstr "Entrer le code"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Passer en plein écran"
@@ -3501,7 +3529,7 @@ msgstr "Saisir votre mot de passe"
msgid "Enter your username and password"
msgstr "Entrez votre pseudo et votre mot de passe"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Passe en mode plein écran"
@@ -3509,7 +3537,7 @@ msgstr "Passe en mode plein écran"
msgid "Entertainment"
msgstr "Divertissement"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Erreur"
@@ -3570,7 +3598,7 @@ msgstr "Exclure les comptes que vous suivez"
msgid "Excludes users you follow"
msgstr "Exclut les comptes que vous suivez"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Quitter le plein écran"
@@ -3578,11 +3606,7 @@ msgstr "Quitter le plein écran"
msgid "Exits account deletion process"
msgstr "Sort du processus de suppression du compte"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Sort de la vue de l’image"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Développer le texte alt"
@@ -3598,11 +3622,11 @@ msgstr "Développe ou réduit le post complet auquel vous répondez"
msgid "Expand post text"
msgstr "Développer le post"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Développe ou réduit le texte du post"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "URI attendue pour résoudre un enregistrement"
@@ -3639,7 +3663,7 @@ msgstr "Images sexuelles explicites."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Explorer"
@@ -3657,8 +3681,8 @@ msgstr "Exporter mes données"
msgid "Export My Data"
msgstr "Exporter mes données"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Média externe"
@@ -3730,7 +3754,7 @@ msgstr "Échec de la suppression du post, veuillez réessayer"
msgid "Failed to delete starter pack"
msgstr "Échec de la suppression du kit de démarrage"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "Échec du suivi de tous les comptes suggérés, veuillez réessayer"
@@ -3829,6 +3853,10 @@ msgstr "Échec du retrait de la vérification"
msgid "Failed to resolve location. Please try again."
msgstr "Échec de la géolocalisation. Veuillez réessayer."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "Échec de l’enregistrement du brouillon"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Fil d’actu"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Fil d’actu par {0}"
@@ -3941,7 +3970,7 @@ msgstr "Fil d’actu indisponible"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Commentaires"
@@ -3958,7 +3987,7 @@ msgstr "Commentaires envoyés au fournisseur du fil d’actu"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Fils d’actu"
@@ -4008,6 +4037,10 @@ msgstr "Filtrer de qui vous recevrez des notifications"
msgid "Finalizing"
msgstr "Finalisation"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Enfin ! Gardez une trace des posts qui sont importants pour vous. Conservez-les pour les retrouver à tout moment."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Retrouver mes amis"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Trouver des comptes à suivre"
@@ -4098,19 +4131,19 @@ msgstr "Sélectionner le champ de code"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Suivre"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Suivre {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Suivre {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Suivre le compte"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Suivre le compte"
msgid "Follow all"
msgstr "Suivre tous"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Suivre tous les comptes"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Suivre en retour"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Comptes suivis avec succès !"
@@ -4195,8 +4228,8 @@ msgstr "Abonné·e·s que vous connaissez"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Suivis"
msgid "Following {0}"
msgstr "Suit {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Suit {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Préférences du fil des abonnements"
@@ -4264,7 +4297,7 @@ msgstr "Pour des raisons de sécurité, vous ne pouvez consulter ceci qu’une s
msgid "For the best experience, we recommend using the theme font."
msgstr "Pour une meilleure expérience, nous vous recommandons d’utiliser la police thématique."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Pour vous"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Tiré de <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Générer un kit de démarrage"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Obtenir de l’aide"
@@ -4376,10 +4409,15 @@ msgstr "Recevez des notifications quand quelqu’un poste"
msgid "Get started"
msgstr "C’est parti"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Donner à votre profil un visage"
@@ -4394,12 +4432,12 @@ msgstr "Glorification de la violence"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Retour"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "Votre compte ne peut plus passer en direct actuellement"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Médias crus"
@@ -4592,7 +4630,7 @@ msgstr "Conservé par Bluesky pendant 7 jours pour éviter les abus, puis suppri
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Aide"
@@ -4632,9 +4670,9 @@ msgstr "Liste cachée"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Cacher la liste des comptes"
msgid "Hide verification badges"
msgstr "Masquer les badges de vérification"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Cache ce contenu"
@@ -4760,9 +4798,9 @@ msgstr "Attendez ! Nous donnons progressivement accès à la vidéo et vous fai
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Accueil"
@@ -4819,7 +4857,7 @@ msgstr "Je comprends"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "Je suis {0} sur Bluesky — viens me rejoindre ! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Si le texte alt est trop long, change son mode d’affichage"
@@ -4872,7 +4910,7 @@ msgstr "Si vous voulez restreindre qui peut recevoir des notifications concernan
msgid "If you're a developer, you can host your own server."
msgstr "Si vous êtes développeur, vous pouvez héberger votre propre serveur."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Si vous essayez de changer de pseudo ou d’adresse e-mail, faites-le avant de désactiver votre compte."
@@ -4996,6 +5034,10 @@ msgstr "Paramètres d’interaction"
msgid "Introducing activity notifications"
msgstr "Voici les notifications d’activité"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "Voici la recherche d’amis via les contacts"
@@ -5089,7 +5131,7 @@ msgstr "Il n’y a que <0>{0}0> pour l’instant ! Ajoutez d’autres personn
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Il n’y a que vous pour l’instant ! Ajoutez d’autres personnes à votre kit de démarrage en effectuant une recherche ci-dessus."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID de job : {0}"
@@ -5122,20 +5164,20 @@ msgstr "Tenez-moi au courant"
msgid "KWS website"
msgstr "Site de KWS"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Étiqueté par {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Étiqueté par l’auteur·ice."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Étiquettes"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Étiquettes ajoutées"
@@ -5218,8 +5260,8 @@ msgstr "En savoir plus sur l’import de contacts (en anglais)"
msgid "Learn more about self hosting your PDS."
msgstr "En savoir plus sur l’auto-hébergement de PDS (en anglais)."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "En savoir plus sur la modération appliquée à ce contenu"
@@ -5231,7 +5273,7 @@ msgstr "Apprenez-en plus sur ces changements et sur la manière dont vous pouvez
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Apprenez-en plus sur ces changements et sur la manière dont vous pouvez partager vos réflexions avec nous en lisant notre article de blog (en anglais)."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "En savoir plus sur cet avertissement"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "En savoir plus dans vos <0>paramètres de compte.0>"
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "En savoir plus."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Partir"
@@ -5286,7 +5328,7 @@ msgstr "Vous quittez Bluesky"
msgid "left to go."
msgstr "devant vous dans la file."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Laissez-moi choisir"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Aimer"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Aimer ({0, plural, one {# ont aimé} other {# ont aimé}})"
@@ -5380,7 +5422,7 @@ msgstr "« J’aime » de vos reposts"
msgid "Likes of your reposts notifications"
msgstr "Notifications « J’aime » de vos reposts"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Mentions « J’aime » sur ce post"
@@ -5474,7 +5516,7 @@ msgstr "Liste réaffichée"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Listes"
@@ -5496,10 +5538,20 @@ msgstr "LIVE"
msgid "Live event happening now: {0}"
msgstr "Direct en cours : {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "Direct masqué"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "Options de direct"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "Direct réaffiché"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "Les évènements en direct apparaissent de temps en temps quand quelque chose d’intéressant se passe. Si vous préférez, vous pouvez les masquer de cet endroit de l’app, que ce soit juste pour cet évènement ou pour tous les évènements futurs."
@@ -5524,11 +5576,11 @@ msgstr "Charger plus"
msgid "Load more suggested feeds"
msgstr "Charger d’autres fils d’actu suggérés"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Charger les nouvelles notifications"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo par @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo par <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "En faire un pour moi"
msgid "Make sure this is where you intend to go!"
msgstr "Assurez-vous que c’est bien là que vous avez l’intention d’aller !"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Gérer vos fils d’actu enregistrés"
@@ -5638,7 +5690,16 @@ msgstr "Peut-être plus tard"
msgid "Media"
msgstr "Média"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "Média stocké sur {0}"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "Média stocké sur un autre appareil"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Médias qui peuvent être perturbants ou inappropriés pour certains publics."
@@ -5653,7 +5714,7 @@ msgstr "comptes mentionnés"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Mentions"
@@ -5716,6 +5777,10 @@ msgstr "Notifications diverses"
msgid "Misleading"
msgstr "Trompeur"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "Média manquant"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "Plus de langues…"
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Cinéma"
msgid "Music"
msgstr "Musique"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Accéder au kit de démarrage"
msgid "Navigates to the next screen"
msgstr "Navigue vers le prochain écran"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Navigue vers votre profil"
@@ -5983,6 +6049,7 @@ msgstr "Nouvelle adresse e-mail"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Nouvelle fonctionnalité"
@@ -6018,12 +6085,12 @@ msgstr "Nouveaux messages"
msgid "New password"
msgstr "Nouveau mot de passe"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Nouveau post"
@@ -6085,7 +6152,7 @@ msgstr "Actualités"
msgid "Next"
msgstr "Suivant"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Image suivante"
@@ -6114,6 +6181,10 @@ msgstr "Aucun fil d’actu personnalisé pour l’instant"
msgid "No DNS Panel"
msgstr "Pas de panneau DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "Aucun brouillon pour l’instant"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Pas d’expiration définie"
@@ -6136,7 +6207,7 @@ msgstr "Pas d’image"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Pas encore de mentions « j’aime »"
@@ -6150,7 +6221,7 @@ msgstr "Aucune liste"
msgid "No longer following {0}"
msgstr "Ne suit plus {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "Aucun média pour l’instant"
@@ -6195,7 +6266,7 @@ msgstr "Aucun post pour l’instant"
msgid "No quotes yet"
msgstr "Pas encore de citations"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "Aucune réponse pour l’instant"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Aucun résultat"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Aucun résultat"
@@ -6238,7 +6309,7 @@ msgstr "Aucun résultat."
msgid "No search results found for \"{search}\"."
msgstr "Pas de résultats pour « {search} »."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "Aucun kit de démarrage pour l’instant"
@@ -6247,7 +6318,7 @@ msgstr "Aucun kit de démarrage pour l’instant"
msgid "No thanks"
msgstr "Non merci"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "Aucun post vidéo pour l’instant"
@@ -6298,6 +6369,10 @@ msgstr "Pas suivi par quiconque que vous suivez"
msgid "Not Found"
msgstr "Introuvable"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Note sur le partage"
@@ -6321,7 +6396,7 @@ msgstr "Rien n’a encore été conservé"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Paramètres de notification"
@@ -6349,10 +6424,10 @@ msgstr "Sons de notification"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Notifications"
@@ -6368,8 +6443,8 @@ msgstr "maintenant"
msgid "Now"
msgstr "Maintenant"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Nudité"
@@ -6390,7 +6465,7 @@ msgstr "Oh non !"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "OK"
@@ -6417,23 +6492,23 @@ msgstr "sur<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Réinitialiser le didacticiel"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Un ou plusieurs GIFs n’ont pas de texte alt."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Une ou plusieurs images n’ont pas de texte alt."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "Un ou plusieurs des fichiers sélectionnés ne sont pas pris en charge."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "Un ou plusieurs des fichiers sélectionnés sont trop gros. La taille maximale est de 100 Mo."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Une ou plusieurs vidéos n’ont pas de texte alt."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Oups, quelque chose n’a pas marché !"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Oups !"
msgid "Open avatar creator"
msgstr "Ouvre le créateur d’avatar"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "Ouvrir l’appareil photo"
@@ -6485,12 +6560,16 @@ msgstr "Ouvrir l’appareil photo"
msgid "Open conversation options"
msgstr "Ouvrir les options de conversation"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "Ouvrir le brouillon"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Ouvre le menu latéral"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Ouvrir le sélecteur d’emoji"
@@ -6557,7 +6636,7 @@ msgstr "Ouvrir le journal du système"
msgid "Opens {0} feed"
msgstr "Ouvre le fil d’actu {0}"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Ouvre une boîte de dialogue permettant d’ajouter un avertissement de contenu à votre post"
@@ -6589,25 +6668,25 @@ msgstr "Ouvre la boîte de dialogue de changement de pseudo"
msgid "Opens composer"
msgstr "Ouvre la fenêtre de rédaction"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "Ouvre l’appareil photo"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "Ouvre la photothèque pour sélectionner {MAX_IMAGES, plural, one {une image} other {jusqu’à # images}}, une seule vidéo ou un GIF."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Ouvre le sélecteur d’emoji"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Ouvre le flux de création d’un nouveau compte Bluesky"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Ouvre le parcours pour vous connecter à votre compte Bluesky existant"
@@ -6620,7 +6699,7 @@ msgstr "Ouvre la sélection de GIF"
msgid "Opens helpdesk in browser"
msgstr "Ouvre le site d’aide dans un navigateur"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "Ouvre le sélecteur d’images"
@@ -6640,10 +6719,14 @@ msgstr "Ouvre le formulaire de réinitialisation du mot de passe"
msgid "Opens post language settings"
msgstr "Ouvre les paramètres de langue du post"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "Ouvre la fenêtre de rédaction"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "Ouvre le brouillon dans la fenêtre de rédaction"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "État des MàJs : Aucune disponible"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Autre"
@@ -6763,13 +6846,13 @@ msgstr "Mise à jour du mot de passe"
msgid "Password updated!"
msgstr "Mot de passe mis à jour !"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Mettre en pause"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Mettre en pause la vidéo"
@@ -6829,7 +6912,7 @@ msgstr "Numéro de téléphone vérifié"
msgid "Photography"
msgstr "Photographie"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Images destinées aux adultes."
@@ -6874,9 +6957,9 @@ msgstr "Fils épinglés"
msgid "Pinned to your feeds"
msgstr "Épinglé à vos fils d’actu"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Lire"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Lire {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Lancer la vidéo"
@@ -6893,11 +6976,11 @@ msgstr "Lancer la vidéo"
msgid "Play Video"
msgstr "Lancer la vidéo"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Lance ou met en pause le GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Lance ou met en pause la vidéo"
@@ -6909,7 +6992,7 @@ msgstr "Lance le GIF"
msgid "Plays the video"
msgstr "Lance la vidéo"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Veuillez ajouter toute étiquette d’avertissement de contenu pertinente pour le média que vous postez."
@@ -7066,31 +7149,31 @@ msgstr "Veuillez écrire votre message ci-dessous :"
msgid "Politics"
msgstr "Politique"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Porno"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Post"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Poster"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Publier une photo"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Publier une vidéo"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Tout poster"
@@ -7217,7 +7300,7 @@ msgstr "Appuyer pour voir les personnes qui suivent ce compte et que vous suivez
msgid "Preview"
msgstr "Aperçu"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Image précédente"
@@ -7257,8 +7340,8 @@ msgstr "Paramètres de confidentialité et sécurité"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Politique de confidentialité"
@@ -7266,7 +7349,11 @@ msgstr "Politique de confidentialité"
msgid "Privacy violation of a minor"
msgstr "Violation de la vie privée d’un mineur"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Traitement de la vidéo en cours…"
@@ -7280,10 +7367,10 @@ msgstr "Traitement…"
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Listes publiques et partageables de comptes à masquer ou à bloquer."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Publier le post"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Publier les posts"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Publier les réponses"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Publier la réponse"
@@ -7360,6 +7447,7 @@ msgstr "Notifications de citation"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Citer le post"
@@ -7385,7 +7473,7 @@ msgstr "Citations désactivées"
msgid "Quotes"
msgstr "Citations"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Citations de ce post"
@@ -7424,11 +7512,11 @@ msgstr "découvrez-en plus sur les filtres de recherche (en anglais)"
msgid "Read blog post"
msgstr "Lire l’article de blog (en anglais)"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Lire moins"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Lire plus"
@@ -7720,13 +7808,13 @@ msgstr "Les réponses sont désactivées"
msgid "Replies to this post are disabled."
msgstr "Les réponses à ce post sont désactivées."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Répondre"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Répondre ({0, plural, one {# réponse} other {# réponses}})"
@@ -7892,7 +7980,7 @@ msgstr "Republié par vous"
msgid "Reposts"
msgstr "Reposts"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Reposts de ce post"
@@ -7996,14 +8084,14 @@ msgstr "Réessaye la dernière action, qui a échoué"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Retourne à la page précédente"
msgid "Returns to home page"
msgstr "Retour à la page d’accueil"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Retour à la page précédente"
@@ -8063,7 +8151,7 @@ msgstr "Retourne à l’étape précédente"
msgid "Save"
msgstr "Enregistrer"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Enregistrer"
@@ -8076,9 +8164,26 @@ msgstr "Enregistrer la date de naissance"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Enregistrer les modifications"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "Enregistrer les modifications ?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "Enregistrer le brouillon"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "Enregistrer le brouillon ?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Enregistrer dans mes fils d’actu"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Conservés"
@@ -8155,7 +8260,7 @@ msgstr "Remonter en haut"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Recherche"
@@ -8164,7 +8269,7 @@ msgstr "Recherche"
msgid "Search @{0}'s posts"
msgstr "Rechercher dans les posts de @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Rechercher par nom ou intérêt"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Rechercher des fils d’actu"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "Recherche de « {interestsDisplayName} »"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "Recherche de « {interestsDisplayName} » (actif)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Rechercher dans ses posts"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Rechercher dans les profils"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Rechercher…"
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Recherche parmi les profils"
@@ -8283,12 +8388,12 @@ msgstr "Voir les posts #{tag} de ce compte"
msgid "See jobs at Bluesky"
msgstr "Voir les offres d’emploi chez Bluesky (en anglais)"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Voir plus"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "Voir plus de profils suggérés"
@@ -8456,7 +8561,7 @@ msgstr "Sélectionnez votre langue préférée pour traduire votre fils d’actu
msgid "Select your preferred notification channels"
msgstr "Sélectionner vos canaux de notification préférés"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "La sélection de plusieurs types de médias n’est pas prise en charge."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Envoyer l’e-mail"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Envoyer des commentaires"
@@ -8566,7 +8671,7 @@ msgstr "Définit l’e-mail pour la réinitialisation du mot de passe"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Paramètres"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Paramètres enregistrés"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Activité sexuelle ou nudité érotique."
@@ -8634,7 +8739,7 @@ msgstr "Sexuellement suggestif"
msgid "Share"
msgstr "Partager"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Partager"
@@ -8712,13 +8817,13 @@ msgstr "Partagez votre fil d’actu favori !"
msgid "Shared Preferences Tester"
msgstr "Testeur de préférences partagées"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Afficher"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Voir le texte alt"
@@ -8820,7 +8925,7 @@ msgstr "Afficher l’avertissement et filtrer des fils d’actu"
msgid "Show when you’re live"
msgstr "Rendez visibles vos streams"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Affiche plus d’informations sur la date de création de ce post"
@@ -8828,8 +8933,8 @@ msgstr "Affiche plus d’informations sur la date de création de ce post"
msgid "Shows other accounts you can switch to"
msgstr "Affiche les autres comptes vers lesquels vous pouvez basculer"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Affiche le contenu"
@@ -8842,14 +8947,14 @@ msgstr "Affiche le contenu"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Connexion requise"
msgid "Signed in as @{0}"
msgstr "Connecté en tant que @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Comptes similaires"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "Sauter le partage de contacts et continuer vers l’app"
msgid "Skip introduction and start using your account"
msgstr "Passer l’introduction et commencer à utiliser votre compte"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Sauter à l’étape d’après"
@@ -8967,7 +9068,7 @@ msgstr "Développement de logiciels"
msgid "Some of your verifications are invalid."
msgstr "Certaines de vos vérifications ne sont pas valides."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Quelques autres fils d’actu qui pourraient vous intéresser"
@@ -8994,7 +9095,7 @@ msgstr "Quelque chose n’a pas marché"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Quelque chose n’a pas marché, veuillez réessayer"
@@ -9020,7 +9121,7 @@ msgstr "Quelque chose n’a pas marché. Veuillez réessayer."
msgid "Something wrong? Let us know."
msgstr "Un problème ? Dites-nous tout."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Désolé, nous n’arrivons pas à charger des suggestions de comptes en ce moment."
@@ -9113,7 +9214,11 @@ msgstr "Kits de démarrage"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Les kits de démarrage vous permettent de partager facilement vos fils d’actu et vos personnes préférées avec vos ami·e·s."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "Les kits de démarrage vous permettent de partager vos fils d’actu préférés et vos personnes favorites."
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "Les kits de démarrage vous permettent de partager vos fils d’actu et vos personnes préférées avec vos ami·e·s."
@@ -9181,11 +9286,11 @@ msgstr "Abonnez-vous à @{0} pour utiliser ces étiquettes :"
msgid "Subscribe to account activity"
msgstr "Suivre l’activité du compte"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "S’abonner à l’étiqueteur"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "S’abonner à cet étiqueteur"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Comptes suggérés"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Suggérés pour vous"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Suggestif"
@@ -9354,8 +9459,8 @@ msgstr "Conditions générales"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Conditions générales"
@@ -9403,12 +9508,12 @@ msgstr "Ce pseudo est déjà utilisé"
msgid "That's all, folks!"
msgstr "Et voilà, c’est tout !"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "C’est tout !"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Ce compte pourra interagir avec vous après le déblocage."
@@ -9447,7 +9552,7 @@ msgstr "Le fil d’actu « Discover »"
msgid "The Discover feed now knows what you like"
msgstr "Le fil d’actu « Discover » sait désormais ce que vous aimez"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "L’expérience est meilleure dans l’application. Téléchargez Bluesky maintenant et nous reprendrons là où vous en étiez."
@@ -9527,7 +9632,7 @@ msgstr "Thème"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "Il y a une limite à la fréquence de modification de votre date de naissance. Il sera peut-être nécessaire d’attendre un jour ou deux avant de pouvoir la modifier à nouveau."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Il n’y a pas de limite de temps pour la désactivation du compte, revenez quand vous voulez."
@@ -9711,6 +9816,10 @@ msgstr "Ce contenu n’est pas visible sans un compte Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Cette conversation se fait avec un compte supprimé ou désactivé. Appuyer pour plus d’options"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "Ce brouillon sera supprimé définitivement."
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Cette adresse e-mail est déjà associée à votre compte."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Ce fil d’actu est vide ! Vous devriez peut-être suivre plus de comptes ou ajuster vos paramètres de langue."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Ce fil d’actu est vide."
@@ -9798,7 +9907,7 @@ msgstr "Cette liste est vide."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Ce service de modération n’est pas disponible. Voir ci-dessous pour plus de détails. Si le problème persiste, contactez-nous."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Ce post déclare avoir été créé le <0>{0}0>, mais a été vu pour la première fois par Bluesky le <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr "Ce post a été supprimé par son auteur·ice"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Ce post sera masqué des fils d’actu et des fils de discussion. C’est irréversible."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "L’auteur·ice de ce post a désactivé les citations."
@@ -9834,7 +9943,7 @@ msgstr "Cette réponse sera classée dans une section cachée au bas de votre fi
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Ce service n’a pas fourni de conditions générales ni de politique de confidentialité."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "Ce service n’est pas disponible tant que la fonction de direct est en bêta. Services autorisés : {formatted}."
@@ -9900,8 +10009,8 @@ msgstr "Cela retirera votre post de cette citation pour tout le monde, et le rem
msgid "Thread options"
msgstr "Options de fil de discussion"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Préférences des fils de discussion"
@@ -9951,7 +10060,7 @@ msgstr "Aujourd’hui"
msgid "Toggle to enable or disable adult content"
msgstr "Activer ou désactiver le contenu pour adultes"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Rétablit/désactive le son"
@@ -9988,8 +10097,8 @@ msgstr "Sujet"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Traduire"
@@ -10091,15 +10200,15 @@ msgstr "Informations sur le fil d’actu indisponible"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Débloquer"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Débloquer"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Débloquer le compte"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Débloquer le compte ?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Annuler"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Annuler"
@@ -10142,7 +10255,7 @@ msgstr "Annuler le repost"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Annuler le repost ({0, plural, one {# repost} other {# reposts}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Se désabonner de {0}"
@@ -10151,7 +10264,7 @@ msgstr "Se désabonner de {0}"
msgid "Unfollow account"
msgstr "Se désabonner du compte"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Se désabonne du compte"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Retirer la mention « J’aime »"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Retirer la mention « J’aime » ({0, plural, one {# ont aimé} other {# ont aimé}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Réafficher la liste"
msgid "Unmute thread"
msgstr "Réafficher ce fil de discussion"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Rétablir le son de la vidéo"
@@ -10276,7 +10389,7 @@ msgstr "Liste désépinglée"
msgid "Unsnooze email reminder"
msgstr "Dérepousse le rappel d’e-mail"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Se désabonner"
@@ -10285,7 +10398,7 @@ msgstr "Se désabonner"
msgid "Unsubscribe from list"
msgstr "Se désabonner de la liste"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Se désabonner de cet étiqueteur"
@@ -10293,7 +10406,7 @@ msgstr "Se désabonner de cet étiqueteur"
msgid "Unsubscribed from list"
msgstr "Désabonné de la liste"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Type de vidéo non pris en charge : {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "Envoyer à partir de fichiers"
msgid "Upload from Library"
msgstr "Envoyer à partir de la photothèque"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Envoi des images en cours…"
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Envoi de la miniature du lien en cours…"
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Envoi de la vidéo en cours…"
@@ -10389,8 +10506,8 @@ msgstr "Utiliser le fournisseur par défaut"
msgid "Use in-app browser"
msgstr "Utiliser le navigateur interne à l’appli"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Utiliser le navigateur interne à l’appli pour ouvrir les liens"
@@ -10445,6 +10562,10 @@ msgstr "Compte qui vous bloque"
msgid "User list by {0}"
msgstr "Liste de compte de {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr "Liste de comptes par {0}"
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Liste de compte par vous"
@@ -10597,8 +10718,8 @@ msgstr "Vérification en cours…"
msgid "Version {0}"
msgstr "Version {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Vidéo"
@@ -10614,20 +10735,24 @@ msgstr "Fil de vidéos"
msgid "Video from {0}: {text}"
msgstr "Vidéo de {0} : {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "Vidéo de {0}. Tapez pour lire ou mettre en pause la vidéo"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Jeux vidéo"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Vidéo en pause"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Vidéo en cours de lecture"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Vidéo non trouvée."
@@ -10635,11 +10760,11 @@ msgstr "Vidéo non trouvée."
msgid "Video settings"
msgstr "Paramètres vidéo"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Vidéo envoyée"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Vidéo : {0}"
@@ -10647,23 +10772,23 @@ msgstr "Vidéo : {0}"
msgid "Videos"
msgstr "Vidéos"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "Les vidéos doivent durer moins de 3 minutes."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Voir"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Voir l’avatar de {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Voir le profil de {0}"
@@ -10708,7 +10833,7 @@ msgstr "Voir plus"
msgid "View more trending videos"
msgstr "Voir plus de vidéos tendances"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "Voir le post"
@@ -10788,7 +10913,7 @@ msgstr "Contenu violent ou menaçant"
msgid "Visit site"
msgstr "Visiter le site"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Visiter vos paramètres de notification"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Nous rencontrons des problèmes pour initialiser le processus de vérification d’âge pour votre compte. Veuillez <0>contacter le support0> pour obtenir de l’aide."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Nous avons des soucis de réseau, réessayez"
@@ -10968,7 +11093,7 @@ msgstr "Nous sommes désolés, mais nous n’avons pas pu charger vos mots masqu
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Nous sommes désolés, mais votre recherche a été annulée. Veuillez réessayer dans quelques minutes."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Nous sommes désolés ! Le post auquel vous répondez a été supprimé."
@@ -10977,7 +11102,7 @@ msgstr "Nous sommes désolés ! Le post auquel vous répondez a été supprimé
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Nous sommes désolés ! La page que vous recherchez est introuvable."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Nous sommes désolés ! Vous ne pouvez vous abonner qu’à vingt étiqueteurs, et vous avez atteint votre limite de vingt."
@@ -11018,10 +11143,9 @@ msgstr "Quels sont vos centres d’intérêt ?"
msgid "What do you want to call your starter pack?"
msgstr "Quel est le nom de votre kit de démarrage ?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Quoi de neuf ?"
@@ -11097,6 +11221,14 @@ msgstr "Pourquoi ce compte doit-il être examiné ?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Souhaitez-vous bloquer ce compte ou supprimer cette conversation ?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "Voulez-vous enregistrer ça comme brouillon avant d’aller les consulter ?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "Voulez-vous enregistrer ça comme brouillon à modifier plus tard ?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Écrire un message"
msgid "Write a post"
msgstr "Écrire un post"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Rédiger un post"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Rédigez votre réponse"
@@ -11133,8 +11265,8 @@ msgstr "www.monfluxendirect.tv"
msgid "Yes"
msgstr "Oui"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Oui, désactiver"
@@ -11188,7 +11320,7 @@ msgstr "Vous êtes dans la file d’attente."
msgid "You are Live"
msgstr "Vous êtes en direct"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Vous n’êtes plus en direct"
@@ -11200,7 +11332,7 @@ msgstr "Vous n’êtes pas autorisé à envoyer des vidéos."
msgid "You are not following anyone yet"
msgstr "Vous ne suivez personne pour l’instant"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Vous êtes désormais en direct !"
@@ -11255,11 +11387,11 @@ msgstr "Vous pouvez désormais choisir de recevoir une notification quand certai
msgid "You can now sign in with your new password."
msgstr "Vous pouvez maintenant vous connecter avec votre nouveau mot de passe."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "Vous ne pouvez sélectionner qu’un GIF à la fois."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "Vous ne pouvez sélectionner qu’une vidéo à la fois."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Vous pouvez réactiver votre compte pour continuer à vous connecter. Votre profil et vos posts seront visibles par les autres personnes."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "Vous pouvez sélectionner {MAX_IMAGES, plural, one {une seule image} other {jusqu’à # images}} au total."
@@ -11317,7 +11449,7 @@ msgstr "Vous avez bloqué ce compte"
msgid "You have blocked this user. You cannot view their content."
msgstr "Vous avez bloqué ce compte. Vous ne pouvez pas voir son contenu."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Vous avez complètement désactivé les notifications de mentions, de citations et de réponses, donc cet onglet ne sera plus mis à jour. Pour changer cela, visitez vos <0>paramètres de notification0>."
@@ -11376,6 +11508,14 @@ msgstr "Vous avez vérifié votre adresse e-mail avec succès. Vous pouvez ferme
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Vous avez temporairement atteint la limite d’envoi de vidéos. Veuillez réessayer plus tard."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "Vous avez des modifications non-enregistrées dans ce brouillon, voulez-vous les enregistrer ?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "Vous avez des modifications non-enregistrées. Voulez-vous les sauvegarder avant de consulter vos brouillons ?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Vous n’avez pas encore créé de kit de démarrage !"
@@ -11437,7 +11577,7 @@ msgstr "Vous devez avoir {MIN_ACCESS_AGE} ans ou plus pour créer un compte."
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Vous devez avoir au moins 13 ans pour utiliser Bluesky. Lisez nos <0>Conditions générales0> pour plus d’informations."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Vous devez suivre au moins sept autres personnes pour générer un kit de démarrage."
@@ -11449,7 +11589,7 @@ msgstr "Vous devez procéder à la vérification d’âge pour accéder à cet
msgid "You must grant access to your photo library to save a QR code"
msgstr "Vous devez autoriser l’accès à votre photothèque pour enregistrer un code QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "Vous devez autoriser l’accès à votre médiathèque."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Vous êtes dans la file d’attente"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Vous êtes connecté·e avec un mot de passe d’application. Connectez-vous plutôt avec votre mot de passe principal pour continuer à désactiver votre compte."
@@ -11589,7 +11729,7 @@ msgstr "Vous avez atteint votre limite quotidienne d’envoi de vidéos (trop d
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Vous avez atteint votre limite quotidienne d’envoi de vidéos (trop de vidéos)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Vous êtes venus à bout de vidéos à regarder. Peut-être est-ce un bon moment pour prendre une pause ?"
@@ -11625,7 +11765,7 @@ msgstr "Votre appel a été envoyé. Si votre appel est réussi, vous recevrez u
msgid "Your birth date"
msgstr "Votre date de naissance"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Votre navigateur ne prend pas en charge le format vidéo. Essayez plutôt avec un autre navigateur."
@@ -11692,8 +11832,8 @@ msgstr "Votre pseudo complet sera <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Vos centres d’intérêt"
@@ -11731,11 +11871,11 @@ msgstr "Votre mot de passe a été modifié avec succès ! N’oubliez pas d’
msgid "Your password must be at least 8 characters long."
msgstr "Votre mot de passe doit comporter au moins 8 caractères."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "Votre post a été envoyé"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "Vos posts ont été envoyés"
@@ -11752,11 +11892,11 @@ msgstr "Votre photo de profil"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "Votre photo de profil entourée de cercles concentriques d’autres photos de profils"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Votre profil, vos posts, vos fils d’actu et vos listes ne seront plus visibles par d’autres personnes sur Bluesky. Vous pouvez réactiver votre compte à tout moment en vous connectant."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "Votre réponse a été envoyée"
diff --git a/src/locale/locales/fy/messages.po b/src/locale/locales/fy/messages.po
index 1de370907d..0b6065228f 100644
--- a/src/locale/locales/fy/messages.po
+++ b/src/locale/locales/fy/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: fy\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Frisian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# opnij pleatsing} other {# opnij pleatsingen}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# sekonde} other {# sekonden}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# net-lêzen item} other {# net-lêzen items}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# net-lêzen item} other {# net-lêzen items}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {#mo} other {#mo}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {folger} other {folgers}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {folgjend} other {folgjend}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {mei-’k-wol-oer} other {mei-’k-wol-oers}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {mei-’k-wol-oer} other {mei-’k-wol-oers}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {berjocht} other {berjochten}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {sitaat} other {sitaten}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {opnij pleatsing} other {opnij pleatsingen}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr "{0} reagearre {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} reagearre {1} op {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, in feed fan {1}, {2} mei der wol oer"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, in list fan {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, one {}other {# bûkers binne}} derby kaam!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# minút} other {# minuten}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# net-lêzen item} other {# net-lêzen items}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>en {2, plural, one {# oare} other {# oaren}} binne ynbegrepen yn dyn startpakket"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {folger} other {folgers}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {folgjend} other {folgjend}}"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "In skermôfdruk fan in profylside mei in belpiktogram njonken de folch-knop, wêrmei’t de nije funksje foar aktiviteitsmeldingen oanjûn wurdt."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Foegje noch {0} ta om troch te gean"
msgid "Add {displayName} to starter pack"
msgstr "{displayName} tafoegje oan it startpakket"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "In ynhâldswarskôging tafoegje"
@@ -754,11 +763,11 @@ msgstr "Alt-tekst tafoegje (opsjoneel)"
msgid "Add another account"
msgstr "Noch in account tafoegje"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Noch in berjocht tafoegje"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "App-wachtwurd tafoegje"
msgid "Add emoji reaction"
msgstr "Emoji-reaksje tafoegje"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr "Oanfoljende details (maksimaal 1000 tekens)"
msgid "Additional details (limit 300 characters)"
msgstr "Oanfoljende details (maksimaal 300 tekens)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Folwoeksene"
@@ -879,10 +888,10 @@ msgstr "Folwoeksene"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Ynhâld foar folwoeksenen"
@@ -894,8 +903,8 @@ msgstr "Ynhâld foar folwoeksenen kin allinnich ynskeakele wurde fia it ynternet
msgid "Adult content is disabled."
msgstr "Ynhâld foar folwoeksenen is útskeakele."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Labels foar ynhâld foar folwoeksenen"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Alles"
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Al oanmeld as @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Alt-tekst"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Alt-tekst"
@@ -1059,7 +1068,7 @@ msgstr "Der is in e-mailberjocht ferstjoerd nei {0}. Dizze befettet in befêstig
msgid "An error has occurred"
msgstr "Der is in flater bard"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Der is in flater bard"
@@ -1067,7 +1076,7 @@ msgstr "Der is in flater bard"
msgid "An error occurred while compressing the video."
msgstr "Der is in flater bard wylst it komprimearjen fan de fideo."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr "Der is in flater bard by it opheljen fan de feed."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Der is in flater bard by it generearjen fan dyn startpakket. Wolsto it opnij probearje?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "Der is in flater bard wylst it laden fan de fideo. Probearje it letter opnij."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Der is in flater bard wylst it laden fan de fideo. Probearje it nochris."
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Bisten"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "Animearre GIF"
@@ -1306,12 +1315,12 @@ msgstr "Standert oanrekommandearre feeds brûke"
msgid "Apply Pull Request"
msgstr "Pull-fersyk tapasse"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Argivearre fan {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Argivearre berjocht"
@@ -1332,11 +1341,11 @@ msgstr "Bisto wis datsto dit startpakket fuortsmite wolst?"
msgid "Are you sure you want to discard your changes?"
msgstr "Bisto wis datsto dyn wizigingen ûngedien meitsje wolst?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Bisto wis datsto dit petear ferlitte wolst?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Bisto wis datsto dit petear ferlitte wolst? Dyn priveeberjochten wurde foar dy fuortsmiten, mar net foar de oare dielnimmer."
@@ -1344,11 +1353,7 @@ msgstr "Bisto wis datsto dit petear ferlitte wolst? Dyn priveeberjochten wurde f
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Bisto wis datsto dit út dyn feeds fuortsmite wolst?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Bisto wis datsto dit konsept fuortsmite wolst?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Bisto wis datsto dit berjocht fuortsmite wolst?"
@@ -1364,7 +1369,7 @@ msgstr "Skriuwsto yn it <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Keunst"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Artistike of net-erotyske neakenbylden."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Fideo’s en GIF’s automatysk ôfspylje"
@@ -1404,11 +1409,13 @@ msgstr "Beskikber"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Tebek"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky kin de wierheid fan dizze datum net befêstigje."
@@ -1623,7 +1630,7 @@ msgstr "Tsjinstbetingsten fan Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky sil in oantal oanrekommandearre brûkers kieze út de minsken yn dyn netwurk."
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Blêdzje troch feeds op de ûntdekkingsside"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Blêdzje troch mear suggestjes"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Blêdzje troch mear suggestjes op de ûntdekkingsside"
@@ -1770,8 +1777,8 @@ msgstr "Kamera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Sykopdracht annulearje"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Do kinst net yn kontakt komme mei in blokkearre brûker"
@@ -1901,9 +1908,9 @@ msgstr "Wizigingen bewarre"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Chat"
@@ -1989,7 +1996,7 @@ msgstr "Domeinferifikaasjemetoade kieze"
msgid "Choose Feeds"
msgstr "Feeds kieze"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Foar my kieze"
@@ -2096,6 +2103,7 @@ msgstr "Klik 🐴 klak 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Klik 🐴 klak 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "GIF-dialoochfinster slute"
msgid "Close image"
msgstr "Ofbylding slute"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Ofbyldingsviewer slute"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Slút warskôging foar bywurkjen wachtwurd"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Slút opstellen berjocht en negearret konsept"
@@ -2242,12 +2251,12 @@ msgstr "Foltôgje de yntroduksje en begjin mei it brûken fan dyn account"
msgid "Complete the challenge"
msgstr "Foltôgje de útdaging"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Nij berjocht opstelle"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Do kinst berjochten opstelle mei in lingte fan maksimaal {0, plural, other {# karakters}}"
@@ -2255,7 +2264,11 @@ msgstr "Do kinst berjochten opstelle mei in lingte fan maksimaal {0, plural, oth
msgid "Compose reply"
msgstr "Antwurd opstelle"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Fideo komprimearje…"
@@ -2263,7 +2276,6 @@ msgstr "Fideo komprimearje…"
msgid "Configure content filtering setting for category: {name}"
msgstr "Konfigurearje ynhâldsfilterynstelling foar kategory: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Konfigurearre yn <0>moderaasje-ynstellingen0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Ynhâld & media"
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "Ynhâldswarskôging"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Ynhâldswarskôgingen"
@@ -2401,7 +2413,7 @@ msgstr "Kontekstmenu-eftergrûn, klik om it menu te sluten."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Trochgean"
@@ -2420,7 +2432,7 @@ msgstr "Fierder lêze…"
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "Kin chat net ferlitte"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Kin feed net lade"
@@ -2643,8 +2655,8 @@ msgstr "Meitsje in QR-koade foar in startpakket"
msgid "Create a starter pack"
msgstr "Meitsje in startpakket"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "Meitsje in startpakket foar my"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Noch ien oanmeitsje"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Nij account oanmeitsje"
@@ -2772,7 +2784,7 @@ msgstr "Bertedatum"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Account de-aktivearje"
@@ -2871,7 +2883,7 @@ msgstr "Myn account fuortsmite"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Berjocht fuortsmite"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Undertiteling útskeakelje"
@@ -2996,8 +3008,11 @@ msgstr "Utskeakele"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Fuortsmite"
@@ -3006,11 +3021,12 @@ msgstr "Fuortsmite"
msgid "Discard changes?"
msgstr "Wizigingen fuortsmite?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Konsept fuortsmite?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Berjocht fuortsmite?"
@@ -3037,7 +3053,7 @@ msgstr "Slute"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Flater negearje"
@@ -3049,11 +3065,16 @@ msgstr "Starthantlieding ôfslute"
msgid "Dismiss interests"
msgstr "Ynteressen negearje"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Dizze seksje slute"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr "Meitsje dy gjin soargen! Alle besteande berjochten en ynstellingen wurde
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Tik dûbeld of druk lang op in berjocht, om in reaksje ta te foegjen"
msgid "Double tap to close the dialog"
msgstr "Tik dûbeld om de dialooch te sluten"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Tik dûbeld om der wol oer te meien"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Bluesky downloade"
@@ -3164,6 +3185,13 @@ msgstr "CAR-bestân downloade"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Falle litte om ôfbyldingen ta te foegjen"
@@ -3285,13 +3313,13 @@ msgstr "Berjochtynteraksje-ynstellingen bewurkje"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Profyl bewurkje"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Profyl bewurkje"
@@ -3413,7 +3441,7 @@ msgstr "Pushmeldingen ynskeakelje"
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Undertiteling ynskeakelje"
@@ -3421,13 +3449,13 @@ msgstr "Undertiteling ynskeakelje"
msgid "Enable this source only"
msgstr "Allinnich dizze boarne ynskeakelje"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Populêre ûnderwerpen ynskeakelje"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Populêre fideo’s yn dyn Discover-feed ynskeakelje"
@@ -3464,7 +3492,7 @@ msgstr "Fier in wurd of tag yn"
msgid "Enter code"
msgstr "Koade ynfiere"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Folslein skerm iepenje"
@@ -3501,7 +3529,7 @@ msgstr "Fier fyn wachtwurd yn"
msgid "Enter your username and password"
msgstr "Fier dyn brûkersnamme en wachtwurd yn"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Iepenet folslein skerm"
@@ -3509,7 +3537,7 @@ msgstr "Iepenet folslein skerm"
msgid "Entertainment"
msgstr "Ferdivedaasje"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Flater"
@@ -3570,7 +3598,7 @@ msgstr "Brûkers útslute dy’tsto folgest"
msgid "Excludes users you follow"
msgstr "Slút brûkers dy’tsto folgest út"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Folslein skerm slute"
@@ -3578,11 +3606,7 @@ msgstr "Folslein skerm slute"
msgid "Exits account deletion process"
msgstr "Ferlit proses fuortsmiten account"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Ferlit ôfbyldingswerjefte"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Alt-tekst útklappe"
@@ -3598,11 +3622,11 @@ msgstr "Ut- of ynklappe fan it folsleine berjocht dêr’tsto op reagearrest"
msgid "Expand post text"
msgstr "Berjochttekst útklappe"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Klapt berjochttekst út of yn"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Ferwacht waard dat uri omset wurde koe nei in record"
@@ -3639,7 +3663,7 @@ msgstr "Eksplisite seksuele ôfbyldingen."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Untdekke"
@@ -3657,8 +3681,8 @@ msgstr "Myn gegevens eksportearje"
msgid "Export My Data"
msgstr "Myn gegevens eksportearje"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Eksterne media"
@@ -3730,7 +3754,7 @@ msgstr "Berjocht fuortsmiten mislearre, probearje it opnij"
msgid "Failed to delete starter pack"
msgstr "Fuortsmiten fan it startpakket is mislearre"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr "Fuortsmiten fan ferifikaasje mislearre"
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Feed"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Feed troch {0}"
@@ -3941,7 +3970,7 @@ msgstr "Feed net beskikber"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Feedback"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Feeds"
@@ -4008,6 +4037,10 @@ msgstr "Filter fan wa’tsto meldingen ûntfangst"
msgid "Finalizing"
msgstr "Foltôgje"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Sykje minsken om te folgjen"
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Folgje"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "{0} folgje"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "{handle} folgje"
@@ -4133,7 +4166,7 @@ msgstr "Account folgje"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Account folgje"
msgid "Follow all"
msgstr "Alle folgje"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Weromfolgje"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "Folgers dy’tsto kinst"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Folgjend"
msgid "Following {0}"
msgstr "Folget {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Do folgest {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Folchfeedfoarkarren"
@@ -4264,7 +4297,7 @@ msgstr "Om feilichheidsredenen kinsto dit net mear besjen. Do moatst in nij app-
msgid "For the best experience, we recommend using the theme font."
msgstr "Foar de beste ûnderfining riede wy dy oan it temalettertype te brûken."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Foar dy"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Fan <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "In startpakket generearje"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Krij help"
@@ -4376,10 +4409,15 @@ msgstr "In melding ûntfange wannear’t ien in berjocht pleatst"
msgid "Get started"
msgstr "Oan de slach"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Jou dyn profyl in gesicht"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Tebek"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Grafyske media"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Help"
@@ -4632,9 +4670,9 @@ msgstr "Ferburgen list"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Brûkerslist ferstopje"
msgid "Hide verification badges"
msgstr "Ferifikaasjebadges ferstopje"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Ferstoppet de ynhâld"
@@ -4760,9 +4798,9 @@ msgstr "Wachtsje even! Wy jouwe stadichoan tagong ta fideo en do stiest noch hie
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Startside"
@@ -4819,7 +4857,7 @@ msgstr "Ik begryp it"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "As de alt-tekst lang is wurdt de alt-tekst yn- of útklapt"
@@ -4872,7 +4910,7 @@ msgstr "Asto beheine wolst wa’t meldingen foar de aktiviteit fan dyn account
msgid "If you're a developer, you can host your own server."
msgstr "Asto in ûntwikkeler bist, kinsto dyn eigen server hoste."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Asto dyn handle of e-mailadres probearrest te wizigjen, doch dit dan eardatsto de-aktivearrest."
@@ -4996,6 +5034,10 @@ msgstr "Ynteraksjeynstellingen"
msgid "Introducing activity notifications"
msgstr "Yntroduksje aktiviteitsmeldingen"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Do bist no noch de iennige! Foegje mear persoanen ta oan dyn startpakket troch hjirboppe te sykjen."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "Taak-ID: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Hâld my op de hichte"
msgid "KWS website"
msgstr "KWS-website"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Labele troch {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Labele troch de auteur."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Labels"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Labels tafoege"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "Mear ynfo oer it sels hosten fan dyn PDS."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Mear info oer de moderaasje tapast op dizze ynhâld"
@@ -5231,7 +5273,7 @@ msgstr "Lês mear oer dizze wizigingen en hoe’tsto dyn tinzen mei ús diele ki
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Lês mear oer dizze wizigingen en hoe’tsto dyn tinzen mei ús diele kinst troch ús blogberjocht te lêzen."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Mear ynfo oer dizze warskôging"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "Mear ynformaasje yn dyn <0>accountynstellingen.0>"
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Mear ynfo."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Ferlitte"
@@ -5286,7 +5328,7 @@ msgstr "Bluesky ferlitte"
msgid "left to go."
msgstr "noch te gean."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Lit my kieze"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Mei ’k wol oer"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Mei ’k wol oer ({0, plural, one {# mei-’k-wol-oer} other {# mei-’k-wol-oers}})"
@@ -5380,7 +5422,7 @@ msgstr "Mei-’k-wol-oers fan dyn opnij-pleatsingen"
msgid "Likes of your reposts notifications"
msgstr "Meldingen oer mei-’k-wol-oers fan dyn opnij-pleatsingen"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Mei-’k-wol-oers op dit berjocht"
@@ -5474,7 +5516,7 @@ msgstr "List net-negearre"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Listen"
@@ -5496,10 +5538,20 @@ msgstr "LIVE"
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Mear lade"
msgid "Load more suggested feeds"
msgstr "Mear foarstelde feeds lade"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Nije meldingen lade"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo troch @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo troch <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Meitsje ien foar my"
msgid "Make sure this is where you intend to go!"
msgstr "Wês wis dat dit is wêr’tsto hinne wolst!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Bewarre feeds beheare"
@@ -5638,7 +5690,16 @@ msgstr "Miskien letter"
msgid "Media"
msgstr "Media"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Media dy’t foar bepaalde doelgroepen oanstjitjouwend of ûngepast wêze kinne."
@@ -5653,7 +5714,7 @@ msgstr "fermelde brûkers"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Fermeldingen"
@@ -5716,6 +5777,10 @@ msgstr "Ferskate meldingen"
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Films"
msgid "Music"
msgstr "Muzyk"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Navigearje nei startpakket"
msgid "Navigates to the next screen"
msgstr "Navigearje nei folgjende skerm"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Navigearret nei dyn profyl"
@@ -5983,6 +6049,7 @@ msgstr "Nij e-mailadres"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Nije funksje"
@@ -6018,12 +6085,12 @@ msgstr "Nije berjochten"
msgid "New password"
msgstr "Nij wachtwurd"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Nij berjocht"
@@ -6085,7 +6152,7 @@ msgstr "Nijs"
msgid "Next"
msgstr "Folgjende"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Folgjende ôfbylding"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "Gjin DNS-paniel"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Gjin ferrintiid ynsteld"
@@ -6136,7 +6207,7 @@ msgstr "Gjin ôfbylding"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Noch gjin mei-’k-wol-oers"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "Do folgest {0} net mear"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "Noch gjin sitaten"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Gjin resultaat"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Gjin resultaten"
@@ -6238,7 +6309,7 @@ msgstr "Gjin resultaten."
msgid "No search results found for \"{search}\"."
msgstr "Gjin resultaten fûn foar ‘{search}’."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "Nee, tank"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr "Net folge troch ien dy’tsto folgest"
msgid "Not Found"
msgstr "Net fûn"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Opmerking oer diele"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Meldingsynstellingen"
@@ -6349,10 +6424,10 @@ msgstr "Meldingslûden"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Meldingen"
@@ -6368,8 +6443,8 @@ msgstr "no"
msgid "Now"
msgstr "No"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Neakens"
@@ -6390,7 +6465,7 @@ msgstr "Och heden!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Oké"
@@ -6417,23 +6492,23 @@ msgstr "op<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Yntroduksje opnij toane"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Alt-tekst ûntbrekt by ien of mear GIF’s."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Alt-tekst ûntbrekt by ien of mear ôfbyldingen."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Alt-tekst ûntbrekt by ien of mear fideo’s."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Och heden! Der is wat misgien!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Wûpsty!"
msgid "Open avatar creator"
msgstr "Avatar-makker iepenje"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "Petearopsjes iepenje"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Menu iepenje"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Emoji-kiezer iepenje"
@@ -6557,7 +6636,7 @@ msgstr "Systeemlochboek iepenje"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Iepenet in dialoochfinster om in ynhâldswarskôging oan dyn berjocht ta te foegjen"
@@ -6589,25 +6668,25 @@ msgstr "Iepenet it dialoochfinster ‘Handle wizigje’"
msgid "Opens composer"
msgstr "Iepenet composer"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Iepenet de emoji-kiezer"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Iepenet proses om in nij Bluesky-account oan te meitsjen"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Iepenet it proses om dy oan te melden by dyn besteande Bluesky-account"
@@ -6620,7 +6699,7 @@ msgstr "Iepenet dialoochfinster foar GIF-seleksje"
msgid "Opens helpdesk in browser"
msgstr "Iepenet de helpdesk yn dyn browser"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "Iepenet formulier om it wachtwud opnij yn te stellen"
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "OTA-status: Neat beskikber"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Oars"
@@ -6763,13 +6846,13 @@ msgstr "Wachtwurd bywurke"
msgid "Password updated!"
msgstr "Wachtwurd bywurke!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pauzearje"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Fideo pauzearje"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "Fotografy"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Ofbyldingen bedoeld foar folwoeksenen."
@@ -6874,9 +6957,9 @@ msgstr "Fêstsette feeds"
msgid "Pinned to your feeds"
msgstr "Fêstset oan dyn feeds"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Ofspylje"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "{0} ôfspylje"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Fideo ôfspylje"
@@ -6893,11 +6976,11 @@ msgstr "Fideo ôfspylje"
msgid "Play Video"
msgstr "Fideo ôfspylje"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Spilet of pauzearret de GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Spilet of pauzearret de fideo"
@@ -6909,7 +6992,7 @@ msgstr "Spilet de GIF ôf"
msgid "Plays the video"
msgstr "Spilet de fideo ôf"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Foegje alle belutsene ynhâldswarkôgingen foar de media dy’tsto pleatst ta."
@@ -7066,31 +7149,31 @@ msgstr "Skriuw hjirûnder dyn berjocht:"
msgid "Politics"
msgstr "Polityk"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Porno"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Berjocht"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Pleatse"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Alles pleatse"
@@ -7217,7 +7300,7 @@ msgstr "Druk om de folgers fan dizze account te besjen dy’tsto ek folgest"
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Foarige ôfbylding"
@@ -7257,8 +7340,8 @@ msgstr "Privacy- en befeiligingsystellingen"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Privacybelied"
@@ -7266,7 +7349,11 @@ msgstr "Privacybelied"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Fideo ferwurkje…"
@@ -7280,10 +7367,10 @@ msgstr "Ferwurkje…"
msgid "profile"
msgstr "profyl"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profyl"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Iepenbiere, dielbere listen fan brûkers om yn bulk te dôvjen of te blokkearjen."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Berjocht pleatse"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Berjochten pleatse"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Antwurden publisearje"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Antwurd publisearje"
@@ -7360,6 +7447,7 @@ msgstr "Sitaatmeldingen"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Berjocht sitearje"
@@ -7385,7 +7473,7 @@ msgstr "Sitaatberjochten útskeakele"
msgid "Quotes"
msgstr "Sitaten"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Sitaten fan dit berjocht"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr "Blogartikel lêze"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Minder ynfo"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Mear ynfo"
@@ -7720,13 +7808,13 @@ msgstr "Antwurden útskeakele"
msgid "Replies to this post are disabled."
msgstr "Antwurden op dit berjocht binne útskeakele."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Reagearje"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Beäntwurdzje ({0, plural, one {# antwurd} other {# antwurden}})"
@@ -7892,7 +7980,7 @@ msgstr "Opnij pleatst troch dy"
msgid "Reposts"
msgstr "Opnij-pleatsingen"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Opnij-pleatsingen fan dit berjocht"
@@ -7996,14 +8084,14 @@ msgstr "Werhellet de lêste aksje, dêr’t in flater by barde"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Tebek nei foarige side"
msgid "Returns to home page"
msgstr "Tebek nei de startside"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Tebek nei de foarige side"
@@ -8063,7 +8151,7 @@ msgstr "Tebek nei de foarige stap"
msgid "Save"
msgstr "Bewarje"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Bewarje"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Wizigingen bewarje"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Yn myn feeds bewarje"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "Nei boppe"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Sykje"
@@ -8164,7 +8269,7 @@ msgstr "Sykje"
msgid "Search @{0}'s posts"
msgstr "Berjochten fan @{0} trochsykje"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Sykje op namme of ynteresse"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Feeds trochsykje"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Berjochten trochsykje"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Profilen sykje"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Sykje…"
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Siket nei profilen"
@@ -8283,12 +8388,12 @@ msgstr "#{tag}-berjochten fan brûker besjen"
msgid "See jobs at Bluesky"
msgstr "Fakatueres by Bluesky bejen"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Mear toane"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "Selektearje de taal wêryn’tsto de oersettingen yn dyn feed werjaan wo
msgid "Select your preferred notification channels"
msgstr "Selektearje dyn winske meldingskanalen"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "E-mailberocht ferstjoere"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Feedback ferstjoere"
@@ -8566,7 +8671,7 @@ msgstr "Stelt e-mail yn foar it opnij ynstellen fan wachtwurden"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Ynstellingen"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Ynstellingen bewarre"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Seksuele aktiviteit of eroatysk neaken."
@@ -8634,7 +8739,7 @@ msgstr "Seksueel suggestyf"
msgid "Share"
msgstr "Diele"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Diele"
@@ -8712,13 +8817,13 @@ msgstr "Dyn favorite feed diele!"
msgid "Shared Preferences Tester"
msgstr "Dielde foarkarren-tester"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Toane"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Alt-tekst toane"
@@ -8820,7 +8925,7 @@ msgstr "Warskôging en filter út feeds toane"
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Toant ynformaasje oer wannear’t dit bejoicht oanmakke is"
@@ -8828,8 +8933,8 @@ msgstr "Toant ynformaasje oer wannear’t dit bejoicht oanmakke is"
msgid "Shows other accounts you can switch to"
msgstr "Toant oare accounts wêrneisto wikselje kinst"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Toant de ynhâld"
@@ -8842,14 +8947,14 @@ msgstr "Toant de ynhâld"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Oanmelden fereaske"
msgid "Signed in as @{0}"
msgstr "Oanmeld as @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Fergelykbere accounts"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "Softwareûntwikkeler"
msgid "Some of your verifications are invalid."
msgstr "Guon fan dyn ferifikaasjes binne ûnjildich."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Inkelde oare feeds dêr’tsto miskien wol oer meist"
@@ -8994,7 +9095,7 @@ msgstr "Der is wat misgien"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Der is wat misgien, probearje it nochris"
@@ -9020,7 +9121,7 @@ msgstr "Der is wat misgien. Probearje it nochris."
msgid "Something wrong? Let us know."
msgstr "Klopt er wat net? Lit it ús witte."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "Startpakketten"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Mei startpakketten kinsto ienfâldich dyn favorite feeds en persoanen met dyn freonen diele."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "Abonnearje dy op @{0} om dizze labels te brûken:"
msgid "Subscribe to account activity"
msgstr "Abonnearje op accountaktiviteit"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Abonnearje op labeler"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Abonnearje op dizze labeler"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Foarstelde accounts"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Foarsteld foar dy"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Suggestyf"
@@ -9354,8 +9459,8 @@ msgstr "Betingsten"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Tsjinstbetingsten"
@@ -9403,12 +9508,12 @@ msgstr "Dy brûkersnamme is al yn gebrûk"
msgid "That's all, folks!"
msgstr "Dat is alles minsken!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Dat wie alles!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "De account kin nei it deblokkearjen mei dy kommunisearje."
@@ -9447,7 +9552,7 @@ msgstr "De Untdekke-feed"
msgid "The Discover feed now knows what you like"
msgstr "De Untdekke-feed wit no wêr’tsto wol oer meist"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "De ûnderfining is better yn de app. Download Bluesky no en wy pakke it op dêr’tsto bleaun wiest."
@@ -9527,7 +9632,7 @@ msgstr "Tema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Der is gjin tiidslimyt foar it de-aktivearjen fan de account; do kinst op elk momint weromkomme."
@@ -9711,6 +9816,10 @@ msgstr "Dizze ynhâld is net sichtber sûnder in Bluesky-account."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Dit petear is mei in fuortsmiten of de-aktivearre account. Druk foar opsjes"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Dit e-maialdres is al mei dyn account assosjearre."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Dizze feed is leech! Mooglik moatsto mear brûkers folgje of dyn taalynstellingen oanpasse."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Dizze feed is leech."
@@ -9798,7 +9907,7 @@ msgstr "Dizze list is leech."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Dizze moderaasjetsjinst is net beskikber. Sjoch hjirûnder foar mear details. Nim kontakt mei ús op as dit probleem bliuwt."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Dit berjocht beweart makke te wêzen op <0>{0}0>, mar waard foar it earst sjoen troch Bluesky op <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Dit berjocht wurdt ferstoppe foar feeds en petearen. Dit kin net ûngedien makke wurde."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "De auteur fan dit berjocht hat it pleatsen fan sitaten útskeakele."
@@ -9834,7 +9943,7 @@ msgstr "Dizze reaksje wurdt sortearre yn in ferstoppe seksje ûnderoan it petear
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Dizze tsjinst hat gjin tsjinstbetingsten of in privacybelied."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "Hjirmei wurdt dyn berjocht foar alle brûkers út it sitaat fuortsmiten
msgid "Thread options"
msgstr "Konversaasje-opsjes"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Petearfoarkarren"
@@ -9951,7 +10060,7 @@ msgstr "Hjoed"
msgid "Toggle to enable or disable adult content"
msgstr "Wikselje om ynhâld foar folwoeksenen yn of út te skeakeljen"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Set it lûd oan of út"
@@ -9988,8 +10097,8 @@ msgstr "Underwerp"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Oersette"
@@ -10091,15 +10200,15 @@ msgstr "Feedynformaasje net beskikber"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Deblokkearje"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Deblokkearje"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Account deblokkearje"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Account deblokkearje?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "Opnij pleatsen ûngedien meitsje"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Opnij pleatsen ûngedien meitsje ({0, plural, one {# opnijpleatsing} other {# opnijpleatsingen}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "{0} ûntfolgje"
@@ -10151,7 +10264,7 @@ msgstr "{0} ûntfolgje"
msgid "Unfollow account"
msgstr "Account ûntfolgje"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Untfolget de brûker"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Mei ’k net mear oer"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Mei ik net mear oer ({0, plural, one {# mei-’k-net-mear-oer} other {# mei-’k-net-mear-oers}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "List net mear negearje"
msgid "Unmute thread"
msgstr "Petear net mear negearje"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Fideo net mear negearje"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr "E-mailomtinken aktyf meitsje"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Ofmelde"
@@ -10285,7 +10398,7 @@ msgstr "Ofmelde"
msgid "Unsubscribe from list"
msgstr "Fan list ôfmelde"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Fan dizze labeler ôfmelde"
@@ -10293,7 +10406,7 @@ msgstr "Fan dizze labeler ôfmelde"
msgid "Unsubscribed from list"
msgstr "Fan lis ôfmeld"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "Fan bestannen út oplade"
msgid "Upload from Library"
msgstr "Fan bibloteek út oplade"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Ofbyldingen oplade…"
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Keppelingminiatuer oplade…"
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Fideo oplade…"
@@ -10389,8 +10506,8 @@ msgstr "Standert provider brûke"
msgid "Use in-app browser"
msgstr "Yn-app-browser brûke"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Yn-app-browser brûke om keppelingen te iepenjen"
@@ -10445,6 +10562,10 @@ msgstr "Brûker blokkearret dy"
msgid "User list by {0}"
msgstr "Brûkerslist troch {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Brûkerslist troch dy"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr "Ferzje {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Fideo"
@@ -10614,20 +10735,24 @@ msgstr "Fideofeed"
msgid "Video from {0}: {text}"
msgstr "Fideo fan {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Fideospultsjes"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Fideo is pauzearre"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Fideo spilet"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Fideo net fûn."
@@ -10635,11 +10760,11 @@ msgstr "Fideo net fûn."
msgid "Video settings"
msgstr "Fideo-ynstellingen"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Fideo opladen"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Fideo: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Fideo: {0}"
msgid "Videos"
msgstr "Fideo’s"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Avatar fan {0} besjen"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Profyl fan {0} besjen"
@@ -10708,7 +10833,7 @@ msgstr "Mear besjen"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr "Website besykje"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Besjoch dyn meldingsynstellingen"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Wy hawwe problemen mei it inisjalisearjen fan it leeftiidsbewiisproses foar dyn account. Nim <0>kontakt op mei stipe 0> foar help."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Der binne netwurkproblemen, probearje it opnij"
@@ -10968,7 +11093,7 @@ msgstr "It spyt ús, mar wy koene dyn negearre wurden op dit stuit net lade. Pro
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "It spyt ús, mar dyn sykopdracht kin net foltôge wurde. Probearje it oer in pear minuten opnij."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "It spyt ús! It berjocht wêropsto reagearrest is fuortsmiten."
@@ -10977,7 +11102,7 @@ msgstr "It spyt ús! It berjocht wêropsto reagearrest is fuortsmiten."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "It spyt ús! Wy kinne de side dy’tsto sochtst net fine."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "It spyt ús! Do kinst dy mar op tweintich labelers abonnearje en do hast dizze limyt berikt."
@@ -11018,10 +11143,9 @@ msgstr "Wat binne dyn ynteressen?"
msgid "What do you want to call your starter pack?"
msgstr "Hoe wolsto dyn startpakket neame?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Hoe giet it?"
@@ -11097,6 +11221,14 @@ msgstr "Wêrom moat dizze brûker beoardiele wurde?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Skriuw in berjocht"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Skriuw berjocht"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Skriuw dyn reaksje"
@@ -11133,8 +11265,8 @@ msgstr "www.mylivestream.tv"
msgid "Yes"
msgstr "Ja"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Ja, de-aktivearje"
@@ -11188,7 +11320,7 @@ msgstr "Do stiest yn de rige."
msgid "You are Live"
msgstr "Do bist live"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Do bist net langer live"
@@ -11200,7 +11332,7 @@ msgstr "Do meist gjin fideo’s oplade."
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Do bist no live!"
@@ -11255,11 +11387,11 @@ msgstr "Do kinst der no foar kieze om in melding te ûntfangen wannear’t spesi
msgid "You can now sign in with your new password."
msgstr "Do kinst dy no oanmelde mei dyn nije wachtwurd."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Do kinst dyn account opnij aktivearje om troch gean te kinnen mei oanmelden. Dyn profyl en berjochten binne dan sichtber foar oare brûkers."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "Do hast dizze brûker blokkeerre"
msgid "You have blocked this user. You cannot view their content."
msgstr "Do hast dizze brûker blokkeerre. Do kinst de ynhâld net besjen."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Do hast beäntwurdzje, sitearje en fermeldingsmeldingen folslein útskeakele, dus dit ljepblêd wurdt net langer bywurke. Besykje dyn <0>meldingsynstellingen0> om dit oan te passen."
@@ -11376,6 +11508,14 @@ msgstr "Do hast dyn e-mailadres mei sukses ferifiearre. Do kinst dit dialoochfin
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Do bist tydlik oer de limyt foar fideo-oplaads hinne. Probearje it letter opnij."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Do hast noch gjin startpakket makke!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Do moatst op syn minst 7 oare persoanen folgje om in startpakket te generearjen."
@@ -11449,7 +11589,7 @@ msgstr "Om tagong te krijen ta dit skerm, moatsto dyn leeftiidsferifikaasje folt
msgid "You must grant access to your photo library to save a QR code"
msgstr "Do moatst tagong ta dyn fotobiblioteek jaan om in QR-koade te bewarjen"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Do stiest yn de rige"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Do bist oanmeld mei in app-wachtwurd. Meld dy oan mei dyn haadwachtwurd om troch te gean mei it de-aktivearjen fan dyn account."
@@ -11589,7 +11729,7 @@ msgstr "Do bist oer dyn deistige limyt foar fideo-oplaads (te folle bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Do bist oer dyn deistige limyt foar fideo-oplaads (te folle fideo’s)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Do hast gjin fideo’s mear om te besjen. Miskien is it in goed momint om skoft te hâlden?"
@@ -11625,7 +11765,7 @@ msgstr "Dyn beswier is yntsjinne. Asto yn it gelyk stelst wurdst, ûntfangsto in
msgid "Your birth date"
msgstr "Dyn bertedatum"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Dyn browser stipet de fideo-yndieling net. Probearje in oare browser."
@@ -11692,8 +11832,8 @@ msgstr "Dyn folsleine handle wurdt <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Dyn ynteressen"
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr "Dyn wachtwurd moat op syn minst 8 tekens lang wêze."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Dyn profyl, berjochten, feeds en listen binne net langer sichtber foar oare Bluesky-brûkers. Do kinst dyn account op elk momint opnij aktivearje troch oan te melden."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po
index b599e0c65b..8940ccafde 100644
--- a/src/locale/locales/ga/messages.po
+++ b/src/locale/locales/ga/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ga\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Irish\n"
"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# athphostáil} two {# athphostáil} few {# athphostái
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {soicind amháin} two {# shoicind} few {# shoicind} many {# soicind} other {# soicind}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {leantóir} two {leantóir} few {leantóir} many {leant
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {á leanúint} two {á leanúint} few {á leanúint} many {á leanúint} other {á leanúint}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {moladh} two {mholadh} few {mholadh} many {moladh} other {moladh}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {moladh} two {mholadh} few {mholadh} many {moladh} other
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {phostáil} two {phostáil} few {phostáil} many {bpostáil} other {postáil}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {postáil athluaite} two {phostáil athluaite} few {phostáil athluaite} many {bpostáil athluaite} other {postáil athluaite}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {athphostáil} two {athphostáil} few {athphostáil} many {athphostáil} other {athphostáil}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr ""
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
@@ -432,7 +436,7 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "Cuireadh <0>{0}, 0><1>{1}, 1>agus {2, plural, one {duine amháin eile} two {beirt eile} few {# dhuine eile} many {# nduine eile} other {# duine eile}} i do phacáiste fáilte"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {leantóir} two {leantóir} few {leantóir} many {leantóir} other {leantóir}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {á leanúint} two {á leanúint} few {á leanúint} many {á leanúint} other {á leanúint}}"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Cuir {0} eile leis chun dul ar aghaidh"
msgid "Add {displayName} to starter pack"
msgstr "Cuir {displayName} leis an bpacáiste fáilte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Cuir rabhadh faoin ábhar leis"
@@ -754,11 +763,11 @@ msgstr "Cuir téacs malartach leis seo (roghnach)"
msgid "Add another account"
msgstr "Cuir cuntas eile leis"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Cuir postáil eile leis"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "Cuir pasfhocal aipe leis seo"
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr "Tuilleadh sonraí (300 carachtar ar a mhéad)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Daoine fásta"
@@ -879,10 +888,10 @@ msgstr "Daoine fásta"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Ábhar do dhaoine fásta"
@@ -894,8 +903,8 @@ msgstr "Ní féidir ábhar do dhaoine fásta a chur ar fáil ach tríd an nGréa
msgid "Adult content is disabled."
msgstr "Tá ábhar do dhaoine fásta curtha ar ceal."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Lipéid d'ábhar do dhaoine fásta"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Uile"
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Logáilte isteach cheana mar @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Téacs malartach"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Téacs Malartach"
@@ -1059,7 +1068,7 @@ msgstr "Cuireadh teachtaireacht ríomhphoist chuig {0}. Tá cód dearbhaithe fao
msgid "An error has occurred"
msgstr "Tharla earráid"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Tharla earráid"
@@ -1067,7 +1076,7 @@ msgstr "Tharla earráid"
msgid "An error occurred while compressing the video."
msgstr "Tharla earráid agus an físeán á chomhbhrú."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Tharla earráid agus do phacáiste fáilte á chruthú. An bhfuil fonn ort triail eile a bhaint as?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "Tharla earráid agus an físeán á lódáil. Bain triail eile as ar ball."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Tharla earráid agus an físeán á lódáil. Bain triail eile as."
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Ainmhithe"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF beo"
@@ -1306,12 +1315,12 @@ msgstr "Bain úsáid as fothaí réamhshocraithe a moladh"
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Cartlannaithe ó {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Postáil sa chartlann"
@@ -1332,11 +1341,11 @@ msgstr "An bhfuil tú cinnte gur mhaith leat an pacáiste fáilte seo a scriosad
msgid "Are you sure you want to discard your changes?"
msgstr "An bhfuil tú cinnte gur mhaith leat do chuid athruithe a chur ar ceal?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "An bhfuil tú cinnte gur mhaith leat an comhrá seo a fhágáil?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "An bhfuil tú cinnte gur mhaith leat imeacht ón gcomhrá seo? Scriosfar duitse é ach ní don duine eile atá páirteach."
@@ -1344,11 +1353,7 @@ msgstr "An bhfuil tú cinnte gur mhaith leat imeacht ón gcomhrá seo? Scriosfar
msgid "Are you sure you want to remove this from your feeds?"
msgstr "An bhfuil tú cinnte gur mhaith leat é seo a bhaint de do chuid fothaí?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "An bhfuil tú cinnte gur mhaith leat an dréacht seo a scriosadh?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "An bhfuil tú cinnte gur mhaith leat an phostáil seo a scriosadh?"
@@ -1364,7 +1369,7 @@ msgstr ""
msgid "Art"
msgstr "Ealaín"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Lomnochtacht ealaíonta nó gan a bheith gáirsiúil."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Seinn físeáin agus GIFanna go huathoibríoch"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Ar ais"
@@ -1578,7 +1585,7 @@ msgstr "Blag"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Ní féidir le Bluesky an dáta maíte a dheimhniú."
@@ -1623,7 +1630,7 @@ msgstr "Téarmaí Seirbhíse Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Roghnóidh Bluesky roinnt cuntas molta ó dhaoine i do líonra."
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Tabhair súil ar thuilleadh fothaí ar an leathanach Taiscéalaíocht"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Tabhair súil ar thuilleadh moltaí"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Tabhair súil ar thuilleadh moltaí ar an leathanach Taiscéalaíocht"
@@ -1770,8 +1777,8 @@ msgstr "Ceamara"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Ceamara"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Cealaigh an cuardach"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Ní féidir plé le húsáideoir blocáilte"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Comhrá"
@@ -1989,7 +1996,7 @@ msgstr "Roghnaigh modh deimhnithe fearainn"
msgid "Choose Feeds"
msgstr "Roghnaigh Fothaí"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Roghnaigh ar mo shon"
@@ -2096,6 +2103,7 @@ msgstr "Trup, Trup a Chapaillín 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Trup, Trup a Chapaillín 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Dún an dialóg GIF"
msgid "Close image"
msgstr "Dún an íomhá"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Dún amharcóir na n-íomhánna"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Dúnann sé seo an rabhadh faoi uasdátú an phasfhocail"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2242,12 +2251,12 @@ msgstr "Críochnaigh agus tosaigh ag baint úsáide as do chuntas."
msgid "Complete the challenge"
msgstr "Freagair an dúshlán"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Cum postáil nua"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2264,11 @@ msgstr ""
msgid "Compose reply"
msgstr "Scríobh freagra"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Físeán á chomhbhrú..."
@@ -2263,7 +2276,6 @@ msgstr "Físeán á chomhbhrú..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Socraigh scagadh an ábhair le haghaidh catagóir: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Le socrú i <0>socruithe na modhnóireachta0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Ábhar agus Meáin"
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "Rabhadh ábhair"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Rabhadh ábhair"
@@ -2401,7 +2413,7 @@ msgstr "Cúlra an roghchláir comhthéacs, cliceáil chun an roghchlár a dhúna
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Lean ar aghaidh"
@@ -2420,7 +2432,7 @@ msgstr "Lean leis an snáithe..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "Níor éiríodh ar an gcomhrá a fhágáil"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Ní féidir an fotha a lódáil"
@@ -2643,8 +2655,8 @@ msgstr "Cruthaigh cód QR le haghaidh pacáiste fáilte"
msgid "Create a starter pack"
msgstr "Cruthaigh pacáiste fáilte"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "Cruthaigh pacáiste fáilte ar mo shon"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Cruthaigh ceann eile"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Cruthaigh cuntas nua"
@@ -2772,7 +2784,7 @@ msgstr "Dáta breithe"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Díghníomhaigh mo chuntas"
@@ -2871,7 +2883,7 @@ msgstr "Scrios mo chuntas"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Scrios an phostáil"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Ná húsáid fotheidil"
@@ -2996,8 +3008,11 @@ msgstr "Díchumasaithe"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Ná sábháil"
@@ -3006,11 +3021,12 @@ msgstr "Ná sábháil"
msgid "Discard changes?"
msgstr "Faigh réidh leis na hathruithe?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Faigh réidh leis an dréacht?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Faigh réidh leis an bpostáil?"
@@ -3037,7 +3053,7 @@ msgstr "Ruaig"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Ruaig an earráid"
@@ -3049,11 +3065,16 @@ msgstr "Scoir an treoir tosaithe"
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr ""
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr "Tapáil faoi dhó chun an fhuinneog a dhúnadh"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Íoslódáil Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Íoslódáil comhad CAR"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Scaoil anseo chun íomhánna a chur leis"
@@ -3285,13 +3313,13 @@ msgstr "Cuir socruithe idirghníomhaíochta na postála in eagar"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Athraigh an phróifíl"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Athraigh an Phróifíl"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Cuir fotheidil ar siúl"
@@ -3421,13 +3449,13 @@ msgstr "Cuir fotheidil ar siúl"
msgid "Enable this source only"
msgstr "Cuir an foinse seo amháin ar fáil"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Cuir treochtaí ar siúl"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr ""
@@ -3464,7 +3492,7 @@ msgstr "Cuir focal na clib isteach"
msgid "Enter code"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Mód lánscáileáin"
@@ -3501,7 +3529,7 @@ msgstr ""
msgid "Enter your username and password"
msgstr "Cuir isteach do leasainm agus do phasfhocal"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr ""
@@ -3509,7 +3537,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Earráid"
@@ -3570,7 +3598,7 @@ msgstr "Ná cuir i bhfeidhm ar úsáideoirí a leanaim"
msgid "Excludes users you follow"
msgstr "Leis seo, ní chuirtear an balbhú i bhfeidhm ar úsáideoirí a leanann tú"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Fág an mód lánscáileáin"
@@ -3578,11 +3606,7 @@ msgstr "Fág an mód lánscáileáin"
msgid "Exits account deletion process"
msgstr "Fágann sé seo próiseas scrios an chuntais"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Fágann sé seo an radharc ar an íomhá"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Taispeáin an téacs malartach ina iomláine"
@@ -3598,11 +3622,11 @@ msgstr "Leathnaigh nó laghdaigh an téacs iomlán a bhfuil tú ag freagairt"
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Bhíothas ag súil go dtiocfadh taifead ón URI"
@@ -3639,7 +3663,7 @@ msgstr "Íomhánna gnéasacha."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
@@ -3657,8 +3681,8 @@ msgstr "Easpórtáil mo chuid sonraí"
msgid "Export My Data"
msgstr "Easpórtáil mo chuid sonraí"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Meáin sheachtracha"
@@ -3730,7 +3754,7 @@ msgstr "Teip ar scriosadh na postála. Déan iarracht eile."
msgid "Failed to delete starter pack"
msgstr "Theip ar scriosadh an phacáiste fáilte"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Fotha"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Fotha le {0}"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Aiseolas"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Fothaí"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr "Ag cur crích air"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Aimsigh daoine le leanúint"
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Lean"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Lean {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr ""
@@ -4133,7 +4166,7 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr ""
msgid "Follow all"
msgstr "Lean iad uile"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Lean ar ais"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "Leantóirí a bhfuil aithne agat orthu"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Á leanúint"
msgid "Following {0}"
msgstr "Ag leanúint {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Roghanna le haghaidh an fhotha Following"
@@ -4264,7 +4297,7 @@ msgstr "De bharr cúrsaí slándála, ní bheidh tú in ann breathnú air seo ar
msgid "For the best experience, we recommend using the theme font."
msgstr "Don eispéireas is fearr, molaimid an cló téama."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Ó <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Cruthaigh pacáiste fáilte"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Faigh cabhair"
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Tabhair gnúis do do phróifíl"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Ar ais"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Meáin Ghrafacha"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Cúnamh"
@@ -4632,9 +4670,9 @@ msgstr "Liosta i bhfolach"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Cuir liosta na gcuntas i bhfolach"
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr ""
@@ -4760,9 +4798,9 @@ msgstr "Foighne ort! Tá físeáin á seoladh de réir a chéile, agus tá tú f
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Baile"
@@ -4819,7 +4857,7 @@ msgstr "Tuigim"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Má tá an téacs malartach rófhada, athraíonn sé seo go téacs leathnaithe"
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Má tá sé i gceist agat do hanla nó ríomhphost a athrú, déan sin sula ndéanann tú díghníomhú."
@@ -4996,6 +5034,10 @@ msgstr ""
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Níl ann ach tusa anois! Cuardaigh thuas le tuilleadh daoine a chur le do phacáiste fáilte."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID an Jab: {0}"
@@ -5122,20 +5164,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Lipéad curtha ag {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Lipéadaithe ag an údar."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Lipéid"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Cuireadh lipéid leis"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "Tuilleadh eolais faoi do fhreastalaí pearsanta féin a óstáil."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr ""
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Le tuilleadh a fhoghlaim faoin rabhadh seo"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Tuilleadh eolais."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Éirigh as"
@@ -5286,7 +5328,7 @@ msgstr "Ag fágáil slán ag Bluesky"
msgid "left to go."
msgstr "le déanamh fós."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Lig dom roghnú"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Moladh"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Mol ({0, plural, one {# mholadh} two {# mholadh} few {# mholadh} many {# moladh} other {# moladh}})"
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Moltaí don phostáil seo"
@@ -5474,7 +5516,7 @@ msgstr "Liosta nach bhfuil balbhaithe níos mó"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Liostaí"
@@ -5496,10 +5538,20 @@ msgstr ""
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Lódáil tuilleadh"
msgid "Load more suggested feeds"
msgstr "Lódáil tuilleadh fothaí molta"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Lódáil fógraí nua"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "@sawaratsuki.bsky.social a rinne an lógó"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "<0>@sawaratsuki.bsky.social0> a rinne an lógó"
@@ -5600,8 +5652,8 @@ msgstr "Déan ceann domsa"
msgid "Make sure this is where you intend to go!"
msgstr "Bí cinnte go bhfuil tú ag iarraidh cuairt a thabhairt ar an áit sin!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Bainistigh na fothaí a shábháil tú"
@@ -5638,7 +5690,16 @@ msgstr ""
msgid "Media"
msgstr "Meáin"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Meáin a d'fhéadfadh a bheith mí-oiriúnach nó a chuirfeadh isteach ar dhaoine áirithe."
@@ -5653,7 +5714,7 @@ msgstr "úsáideoirí luaite"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Luaite"
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Scannáin"
msgid "Music"
msgstr "Ceol"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Téann sé seo chuig an gcéad scáileán eile"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Téann sé seo chuig do phróifíl"
@@ -5983,6 +6049,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
@@ -6018,12 +6085,12 @@ msgstr "Teachtaireachtaí nua"
msgid "New password"
msgstr "Pasfhocal Nua"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Postáil nua"
@@ -6085,7 +6152,7 @@ msgstr "Nuacht"
msgid "Next"
msgstr "Ar aghaidh"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "An chéad íomhá eile"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "Gan Phainéal DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6136,7 +6207,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Gan moladh fós"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "Ní leantar {0} níos mó"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "Gan phostáil athluaite fós"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Gan torthaí"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Toradh ar bith"
@@ -6238,7 +6309,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr "Gan torthaí ar \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "Níor mhaith liom é sin."
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr ""
msgid "Not Found"
msgstr "Ní bhfuarthas é sin"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Nóta faoi roinnt"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Socruithe fógra"
@@ -6349,10 +6424,10 @@ msgstr "Fuaimeanna Fógra"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Fógraí"
@@ -6368,8 +6443,8 @@ msgstr "anois"
msgid "Now"
msgstr "Anois"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Lomnochtacht"
@@ -6390,7 +6465,7 @@ msgstr "Úps!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Maith go leor"
@@ -6417,23 +6492,23 @@ msgstr "ar<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Atosú an chláraithe"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Téacs malartach de dhíth ar GIF nó ar GIFanna."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Tá téacs malartach de dhíth ar íomhá amháin nó níos mó acu."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Téacs malartach de dhíth ar fhíseán nó ar fhíseáin"
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Úps! Theip ar rud éigin!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Úps!"
msgid "Open avatar creator"
msgstr "Oscail an cruthaitheoir abhatáir"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "Oscail na roghanna comhrá"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Oscail an roghchlár tarraiceáin"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Oscail roghnóir na n-emoji"
@@ -6557,7 +6636,7 @@ msgstr "Oscail logleabhar an chórais"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Osclaíonn sé seo fuinneog lenar féidir leat rabhadh a chur leis an bpostáil"
@@ -6589,25 +6668,25 @@ msgstr ""
msgid "Opens composer"
msgstr "Osclaíonn sé seo an t-eagarthóir"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Osclaíonn sé seo an próiseas le cuntas nua Bluesky a chruthú"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
@@ -6620,7 +6699,7 @@ msgstr "Osclaíonn sé seo fuinneog chun GIF a roghnú"
msgid "Opens helpdesk in browser"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "Osclaíonn sé seo an fhoirm leis an bpasfhocal a athrú"
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Eile"
@@ -6763,13 +6846,13 @@ msgstr "Pasfhocal uasdátaithe"
msgid "Password updated!"
msgstr "Pasfhocal uasdátaithe!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Sos"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Cuir an físeán ar shos"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "Grianghrafadóireacht"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Pictiúir le haghaidh daoine fásta."
@@ -6874,9 +6957,9 @@ msgstr "Fothaí greamaithe"
msgid "Pinned to your feeds"
msgstr "Greamaithe le do chuid fothaí"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Seinn"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Seinn {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Seinn an físeán"
@@ -6893,11 +6976,11 @@ msgstr "Seinn an físeán"
msgid "Play Video"
msgstr "Seinn an físeán"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr ""
@@ -6909,7 +6992,7 @@ msgstr "Seinneann sé seo an GIF"
msgid "Plays the video"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "Polaitíocht"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornagrafaíocht"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Postáil"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Postáil"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Postáil Uile"
@@ -7217,7 +7300,7 @@ msgstr "Brúigh leis na daoine a leanann an cuntas seo a leanann tú féin a fhe
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "An íomhá roimhe seo"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Polasaí Príobháideachta"
@@ -7266,7 +7349,11 @@ msgstr "Polasaí Príobháideachta"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Físeán á phróiseáil..."
@@ -7280,10 +7367,10 @@ msgstr "Á phróiseáil..."
msgid "profile"
msgstr "próifíl"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Próifíl"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Liostaí poiblí inroinnte chun úsáideoirí a bhlocáil ar an mórchóir."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Postáil athluaite"
@@ -7385,7 +7473,7 @@ msgstr "Ní féidir postálacha a athlua"
msgid "Quotes"
msgstr "Postálacha athluaite"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Postálacha athluaite den phostáil seo"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr ""
@@ -7720,13 +7808,13 @@ msgstr "Cuireadh bac ar fhreagraí"
msgid "Replies to this post are disabled."
msgstr "Ní féidir freagraí a thabhairt ar an bpostáil seo."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Freagair"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Freagair ({0, plural, one {# fhreagra} two {# fhreagra} few {# fhreagra} many {# bhfreagra} other {# freagra}})"
@@ -7892,7 +7980,7 @@ msgstr "Athphostáilte agat"
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Athphostálacha den phostáil seo"
@@ -7996,14 +8084,14 @@ msgstr "Baineann sé seo triail eile as an ngníomh is déanaí, ar theip air"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Fill ar an leathanach roimhe seo"
msgid "Returns to home page"
msgstr "Filleann sé seo abhaile"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Filleann sé seo ar an leathanach roimhe seo"
@@ -8063,7 +8151,7 @@ msgstr ""
msgid "Save"
msgstr "Sábháil"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Sábháil"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Sábháil na hathruithe"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Sábháil i mo chuid fothaí"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "Fill ar an mbarr"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Cuardaigh"
@@ -8164,7 +8269,7 @@ msgstr "Cuardaigh"
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Cuardach de réir ainm nó spéiseanna"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Cuardaigh fothaí"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Cuardaigh próifílí"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,12 +8388,12 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr "Féach ar phostanna le Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "Do rogha teanga nuair a dhéanfar aistriúchán ar ábhar i d'fhotha."
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Seol ríomhphost"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Seol aiseolas"
@@ -8566,7 +8671,7 @@ msgstr "Socraíonn sé seo an seoladh ríomhphoist le haghaidh athshocrú an pha
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Socruithe"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Gníomhaíocht ghnéasach nó lomnochtacht gháirsiúil."
@@ -8634,7 +8739,7 @@ msgstr "Graosta"
msgid "Share"
msgstr "Comhroinn"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Comhroinn"
@@ -8712,13 +8817,13 @@ msgstr "Roinn an fotha is fearr leat!"
msgid "Shared Preferences Tester"
msgstr "Tástáil Roghanna Comhroinnte"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Taispeáin"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Taispeáin an téacs malartach"
@@ -8820,7 +8925,7 @@ msgstr "Taispeáin rabhadh agus scag ó na fothaí é"
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr ""
@@ -8828,8 +8933,8 @@ msgstr ""
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
@@ -8842,14 +8947,14 @@ msgstr ""
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Caithfidh tú logáil isteach"
msgid "Signed in as @{0}"
msgstr "Logáilte isteach mar @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Cuntais eile atá cosúil leis seo"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "Forbairt Bogearraí"
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Fothaí eile a mbeadh suim agat iontu"
@@ -8994,7 +9095,7 @@ msgstr "Theip ar rud éigin"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Chuaigh rud éigin amú, bain triail eile as"
@@ -9020,7 +9121,7 @@ msgstr ""
msgid "Something wrong? Let us know."
msgstr "Rud éigin mícheart? Abair linn."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "Pacáistí Fáilte"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Tig leat na fothaí agus na daoine is fearr leat a roinnt le do chuid cairde le pacáiste fáilte."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "Glac síntiús le @{0} leis na lipéid seo a úsáid:"
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Glac síntiús le lipéadóir"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Glac síntiús leis an lipéadóir seo"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Molta duit"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Gáirsiúil"
@@ -9354,8 +9459,8 @@ msgstr "Téarmaí"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Téarmaí Seirbhíse"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "Sin é é!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Beidh an cuntas seo in ann caidreamh a dhéanamh leat tar éis duit é a dhíbhlocáil"
@@ -9447,7 +9552,7 @@ msgstr "An fotha Discover"
msgid "The Discover feed now knows what you like"
msgstr "Tá an fotha Discover eolach ar a bhfuil ag taitneamh leat anois"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Tá an t-eispéireas níos fearr san aip. Íoslódáil Bluesky anois agus tosóidh muid arís san áit ar stop tú."
@@ -9527,7 +9632,7 @@ msgstr "Téama"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Níl srian ama le díghníomhú cuntais, fill uair ar bith."
@@ -9711,6 +9816,10 @@ msgstr "Níl an t-ábhar seo le feiceáil gan chuntas Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Tá an fotha seo folamh! Is féidir go mbeidh ort tuilleadh úsáideoirí a leanúint nó do shocruithe teanga a athrú."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Tá an fotha seo folamh."
@@ -9798,7 +9907,7 @@ msgstr "Tá an liosta seo folamh."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Níl an tseirbhís modhnóireachta ar fáil. Féach tuilleadh sonraí thíos. Má mhaireann an fhadhb seo, téigh i dteagmháil linn."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Deir an phostáil seo gur cruthaíodh í ar <0>{0}0>, ach chonacthas í ar Bluesky den chéad uair ar <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Ní bheidh an phostáil seo le feiceáil ar do chuid fothaí ná snáitheanna. Ní féidir dul ar ais air seo."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Chuir údar na postála seo cosc ar phostálacha athluaite."
@@ -9834,7 +9943,7 @@ msgstr "Cuirfear an freagra seo i rannán speisialta a bheidh i bhfolach ag bun
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Níor chuir an tseirbhís seo téarmaí seirbhíse ná polasaí príobháideachta ar fáil."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "Leis seo, bainfear do phostáil seo den phostáil athluaite seo do gach
msgid "Thread options"
msgstr "Roghanna snáitheanna"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Roghanna snáitheanna"
@@ -9951,7 +10060,7 @@ msgstr "Inniu"
msgid "Toggle to enable or disable adult content"
msgstr "Scoránaigh le ábhar do dhaoine fásta a cheadú nó gan a cheadú"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr ""
@@ -9988,8 +10097,8 @@ msgstr "Ábhar"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Aistrigh"
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Díbhlocáil"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Díbhlocáil"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Díbhlocáil an cuntas"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "An bhfuil fonn ort an cuntas seo a dhíbhlocáil?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "Cuir stop leis an athphostáil"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Cuir stop leis an athphostáil ({0, plural, one {# athphostáil} two {# athphostáil} few {# athphostáil} many {# n-athphostáil} other {# athphostáil}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Dílean {0}"
@@ -10151,7 +10264,7 @@ msgstr "Dílean {0}"
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr ""
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Dímhol"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Dímhol ({0, plural, one {# mholadh} two {# mholadh} few {# mholadh} many {# moladh} other {# moladh}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr ""
msgid "Unmute thread"
msgstr "Ná balbhaigh an snáithe seo níos mó"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Ná balbhaigh an físeán seo níos mó"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Díliostáil"
@@ -10285,7 +10398,7 @@ msgstr "Díliostáil"
msgid "Unsubscribe from list"
msgstr "Díliostáil ón liosta seo"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Díliostáil ón lipéadóir seo"
@@ -10293,7 +10406,7 @@ msgstr "Díliostáil ón lipéadóir seo"
msgid "Unsubscribed from list"
msgstr "Dhíliostáil tú ón liosta seo"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "Uaslódáil ó Chomhaid"
msgid "Upload from Library"
msgstr "Uaslódáil ó Leabharlann"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Íomhánna á n-uaslódáil..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Mionsamhail á huaslódáil..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Físeán á uaslódáil..."
@@ -10389,8 +10506,8 @@ msgstr "Úsáid an soláthraí réamhshocraithe"
msgid "Use in-app browser"
msgstr "Úsáid an brabhsálaí san aip seo"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Úsáid an brabhsálaí san aip seo chun nascanna a oscailt"
@@ -10445,6 +10562,10 @@ msgstr "Blocálann an t-úsáideoir seo thú"
msgid "User list by {0}"
msgstr "Liosta úsáideoirí le {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Liosta úsáideoirí leat"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Físeán"
@@ -10614,20 +10735,24 @@ msgstr ""
msgid "Video from {0}: {text}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Físchluichí"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Físeán gan aimsiú."
@@ -10635,11 +10760,11 @@ msgstr "Físeán gan aimsiú."
msgid "Video settings"
msgstr "Socruithe físe"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Uaslódáladh an físeán"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Físeán: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Físeán: {0}"
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Féach ar an abhatár atá ag {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Amharc ar phróifíl {0}"
@@ -10708,7 +10833,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Tá fadhbanna líonra againn, bain triail as arís"
@@ -10968,7 +11093,7 @@ msgstr "Tá brón orainn, ach theip orainn na focail a bhalbhaigh tú a lódáil
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Ár leithscéal, ach níorbh fhéidir linn do chuardach a chur i gcrích. Bain triail eile as i gceann cúpla nóiméad."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Ár leithscéal, ach scriosadh an phostáil atá tú ag freagairt."
@@ -10977,7 +11102,7 @@ msgstr "Ár leithscéal, ach scriosadh an phostáil atá tú ag freagairt."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Ár leithscéal, ach ní féidir linn an leathanach atá tú ag lorg a aimsiú."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Ár leithscéal! Ní féidir leat ach fiche lipéadóirí a leanúint agus tá fiche ceann agat cheana féin."
@@ -11018,10 +11143,9 @@ msgstr "Cad iad na rudaí a bhfuil suim agat iontu?"
msgid "What do you want to call your starter pack?"
msgstr "Cén t-ainm ar mhaith leat a thabhairt ar do phacáiste fáilte?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Aon scéal?"
@@ -11097,6 +11221,14 @@ msgstr "Cén fáth gur cheart athbhreithniú a dhéanamh ar an úsáideoir seo?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Scríobh teachtaireacht"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Scríobh postáil"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Scríobh freagra"
@@ -11133,8 +11265,8 @@ msgstr ""
msgid "Yes"
msgstr "Tá"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Tá, díghníomhaigh"
@@ -11188,7 +11320,7 @@ msgstr "Tá tú sa scuaine."
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11200,7 +11332,7 @@ msgstr "Níl cead agat físeáin a uaslódáil."
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Is féidir leat logáil isteach le do phasfhocal nua anois."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Is féidir leat do chuntas a athghníomhú chun leanacht ort ag logáil isteach. Beidh úsáideoirí eile in ann do phróifíl agus do chuid postálacha a fheiceáil."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "Bhlocáil tú an t-úsáideoir seo"
msgid "You have blocked this user. You cannot view their content."
msgstr "Bhlocáil tú an cuntas seo. Ní féidir leat a gcuid ábhar a fheiceáil."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Tá tú tar éis uasteorainn uaslódálacha físeáin a bhaint amach. Bain triail eile as ar ball."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Níl pacáiste fáilte cruthaithe agat fós!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Ní mór duit seachtar ar a laghad a leanúint le pacáiste fáilte a chruthú."
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "Ní mór duit fáil ar do leabharlann grianghraf a cheadú le cód QR a shábháil"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Tá tú sa scuaine"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -11589,7 +11729,7 @@ msgstr "Tá tú tar éis an uasteorainn laethúil ar uaslódálacha físeáin a
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Tá tú tar éis an uasteorainn laethúil ar uaslódálacha físeáin a bhaint amach (an iomarca físeán)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
@@ -11625,7 +11765,7 @@ msgstr ""
msgid "Your birth date"
msgstr "Do bhreithlá"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Ní thacaíonn do bhrabhsálaí leis an bhformáid físe. Bain triail as brabhsálaí eile."
@@ -11692,8 +11832,8 @@ msgstr "Do leasainm iomlán anseo: <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr ""
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Ní bheidh do phróifíl, postálacha, fothaí ná liostaí infheicthe ag úsáideoirí eile Bluesky. Is féidir leat do chuntas a athghníomhú uair ar bith trí logáil isteach."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/gd/messages.po b/src/locale/locales/gd/messages.po
index 9bee5aaf01..499cdc1038 100644
--- a/src/locale/locales/gd/messages.po
+++ b/src/locale/locales/gd/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: gd\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Scottish Gaelic\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n>2 && n<20) ? 2 : 3;\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {air ath-phostadh # turas} two {air ath-phostadh # thura
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# diog} two {# dhiog} few {# diogan} other {# diog}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# nì gun leughadh} two {# nì gun leughadh} few {# nithean gun leughadh} other {# nì gun leughadh}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# nì gun leughadh} two {# nì gun leughadh} few {# nit
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# mhìos} two {# mhìos} few {# mìosan} other {# mìos}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {gam leantainn} two {gam leantainn} few {gam leantainn}
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {A’ leantainn #} two {A’ leantainn #} few {A’ leantainn #} other {A’ leantainn #}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {’s toil le # seo} two {’s toil le # seo} few {’s toil le # seo} other {’s toil le # seo}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {’s toil le # seo} two {’s toil le # seo} few {’s
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {phost} two {phost} few {puist} other {post}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {luaidh} two {luaidh} few {luaidhean} other {luaidh}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {air ath-phostadh} two {air ath-phostadh} few {air ath-phostadh} other {air ath-phostadh}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {air a shàbhaladh} two {air a shàbhaladh} few {air an sàbhaladh} other {air an sàbhaladh}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (Cunntas)"
@@ -189,11 +193,11 @@ msgstr "Chuir {0} {1} mar fhrith-fhreagairt"
msgid "{0} reacted {1} to {2}"
msgstr "Chuir {0} {1} mar fhrith-fhreagairt dha {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, inbhir le {1}, ’s toil le {2} e"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, liosta le {1}"
@@ -432,7 +436,7 @@ msgstr "Chaidh {joinedAllTimeCount, plural, one {# chleachdaiche} two {# chleach
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# mhionaid} two {# mhionaid} few {# mionaidean} other {# mionaid}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# nì gun leughadh} two {# nì gun leughadh} few {# nithean gun leughadh} other {# nì gun leughadh}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "Tha <0>{0}, 0><1>{1}1> agus {2, plural, one {# eile} two {# eile} few {# eile} other {# others}} gan gabhail a-staigh sa phacaid tòiseachaidh agad"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {gam leantainn} two {gam leantainn} few {gam leantainn} other {gam leantainn}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "{1, plural, one {a’ leantainn} two {a’ leantainn} few {a’ leantainn} other {a’ leantainn}} <0>{0}0>"
@@ -580,6 +584,11 @@ msgstr "Glacadh-sgrìn de phost le putan ùr ri taobh a’ phutain cho-roinnidh
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Glacadh-sgrìn de dhuilleag pròifil le ìomhaigheag cluig ri taobh a’ phutain airson cuideigin a leantainn, ag innse mu ghleus ùr nam brathan gnìomhachd."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Cuir ris {0} a bharrachd mus lean thu air adhart"
msgid "Add {displayName} to starter pack"
msgstr "Cuir {displayName} ris a’ phacaid tòiseachaidh"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Cuir ris rabhadh mun t-susbaint"
@@ -754,11 +763,11 @@ msgstr "Cuir roghainn teacsa ris (roghainneil)"
msgid "Add another account"
msgstr "Cuir cunntas eile ris"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Cuir post eile ris"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Cuir post eile ris an t-snàithlean"
@@ -776,12 +785,12 @@ msgstr "Cuir facal-faire aplacaid ris"
msgid "Add emoji reaction"
msgstr "Cuir emoji mar fhrith-fhreagairt"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Cuir dealbh ris"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Cuir meadhan ris a’ phost"
@@ -871,7 +880,7 @@ msgstr "Mion-fhiosrachadh a bharrachd (1,000 caractar air a’ char as motha)"
msgid "Additional details (limit 300 characters)"
msgstr "Fiosrachadh a bharrachd (300 caractar air a’ char as motha)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Inbheach"
@@ -879,10 +888,10 @@ msgstr "Inbheach"
msgid "Adult content"
msgstr "Susbaint inbheach"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Susbaint inbheach"
@@ -894,8 +903,8 @@ msgstr "Chan urrainn dhut susbaint inbheach a chur an comas ach air an lìon aig
msgid "Adult content is disabled."
msgstr "Tha an t-susbaint inbheach à comas."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Leubailean susbaint inbheach"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "meadhbh@eisimpleir.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Na h-uile"
@@ -1017,7 +1026,7 @@ msgstr "A bheil cunntas agad mar-thà?"
msgid "Already signed in as @{0}"
msgstr "Air clàradh a-steach mar @{0} mu thràth"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "Roghainn teacsa"
msgid "Alt text"
msgstr "Roghainn teacsa"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Roghainn teacsa"
@@ -1059,7 +1068,7 @@ msgstr "Chaidh post-d a chur gu {0}. Tha còd dearbhaidh na bhroinn as urrainn d
msgid "An error has occurred"
msgstr "Thachair mearachd"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Thachair mearachd"
@@ -1067,7 +1076,7 @@ msgstr "Thachair mearachd"
msgid "An error occurred while compressing the video."
msgstr "Dh’èirich mearachd rè dùmhlachadh a’ video."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "Dh’èirich mearachd fhad ’s a bha sinn a’ faighinn nan cunntasan a mholamaid."
@@ -1076,7 +1085,7 @@ msgstr "Dh’èirich mearachd fhad ’s a bha sinn a’ faighinn nan cunntasan a
msgid "An error occurred while fetching the feed."
msgstr "Dh’èirich mearachd rè nuair a bha sinn a’ faighinn an inbhir."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Dh’èirich mearachd nuair a bha sinn a’ gintinn na pacaid tòiseachaidh agad. A bheil thu airson feuchainn ris a-rithist?"
@@ -1088,7 +1097,7 @@ msgstr "Dh’èirich mearachd fhad ’s a bha sinn a’ cur na mhol sinn am fala
msgid "An error occurred while loading the video. Please try again later."
msgstr "Dh’èirich mearachd rè luchdadh a’ video. Feuch ris a-rithist an ceann greis."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Dh’èirich mearachd rè luchdadh a’ video. Feuch ris a-rithist."
@@ -1181,7 +1190,7 @@ msgstr "Math nam beathaichean"
msgid "Animals"
msgstr "Beathaichean"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF beòthaichte"
@@ -1306,12 +1315,12 @@ msgstr "Cuir an sàs na h-inbhirean bunaiteach a mholamaid"
msgid "Apply Pull Request"
msgstr "Cuir an t-iarrtas pull an gnìomh"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Air a thasglannachadh ann an {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Post tasglannaichte"
@@ -1332,11 +1341,11 @@ msgstr "A bheil thu cinnteach gu bheil thu airson a’ phacaid tòiseachaidh seo
msgid "Are you sure you want to discard your changes?"
msgstr "A bheil thu cinnteach gu bheil thu airson na h-atharraichean agad a thilgeil air falbh?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "A bheil thu cinnteach gu bheil thu airson an còmhradh seo fhàgail?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "A bheil thu cinnteach gu bheil thu airson an còmhradh seo fhàgail? Thèid na teachdaireachdan agad a sguabadh às dhut-sa ach chan ann dhan chom-pàirtiche eile."
@@ -1344,11 +1353,7 @@ msgstr "A bheil thu cinnteach gu bheil thu airson an còmhradh seo fhàgail? Th
msgid "Are you sure you want to remove this from your feeds?"
msgstr "A bheil thu cinnteach gu bheil thu airson seo a thoirt air falbh o na h-inbhirean agad?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "A bheil thu cinnteach gu bheil thu airson an dreachd seo a thilgeil air falbh?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "A bheil thu cinnteach gu bheil thu airson am post seo a thilgeil air falbh?"
@@ -1364,7 +1369,7 @@ msgstr "A bheil thu a’ sgrìobhadh sa chànan a leanas: <0>{suggestedLanguageN
msgid "Art"
msgstr "Ealain"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Lomnochd ealanta no neo-earotaigeach."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Cluich videothan is GIFs gu fèin-obrachail"
@@ -1404,11 +1409,13 @@ msgstr "Ri fhaighinn"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Air ais"
@@ -1578,7 +1585,7 @@ msgstr "Bloga"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Chan urrainn dha Bluesky dearbhadh gu bheil an ceann-là a thathar a’ cumail a-mach fìor."
@@ -1623,7 +1630,7 @@ msgstr "Teirmichean na seirbheise aig Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Glèidhidh Bluesky an luchd-aithne agad an cruth dàta còdaichte. Ma bheir thu luchd-aithne air falbh, thèid an dàta seo a sguabadh às sa bhad."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Taghaidh Bluesky grunn chunntasan aig daoine air an lìonra agad a mholar."
@@ -1664,20 +1671,20 @@ msgstr "A’ briseadh riaghailtean na làraich"
msgid "Browse custom feeds"
msgstr "Rùraich na h-inbhirean gnàthaichte"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "Rùraich barrachd chunntasan"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Rùraich barrachd inbhirean air an duilleag “Rùraich”"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Brabhsaich barrachd mholaidhean"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Rùraich barrachd mholaidhean air an duilleag “Rùraich”"
@@ -1770,8 +1777,8 @@ msgstr "An camara"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "An camara"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Sguir dhen lorg"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Chan urrainn dhut eadar-ghabhail a dhèanamh le cleachdaiche a bhac thu"
@@ -1901,9 +1908,9 @@ msgstr "Chaidh na h-atharraichean a shàbhaladh"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Cabadaich"
@@ -1989,7 +1996,7 @@ msgstr "Tagh dòigh airson dearbhadh na h-àrainne"
msgid "Choose Feeds"
msgstr "Tagh inbhirean"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Dèan taghadh às mo leth"
@@ -2096,6 +2103,7 @@ msgstr "Turt 🐴 turt 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Turt 🐴 turt 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Dùin còmhradh nan GIF"
msgid "Close image"
msgstr "Dùin an dealbh"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Dùin sealladair an deilbh"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr "Dùin mòideal an fhàilteachaidh"
msgid "Closes password update alert"
msgstr "Dùinidh seo caismeachd mu ùrachadh an fhacail-fhaire"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Dùinidh seo an uinneag sgrìobhaidh is tilgidh e air falbh dreachd a’ phuist"
@@ -2242,12 +2251,12 @@ msgstr "Coilean am bòrdachadh is tòisich air an cunntas agad a chleachdadh"
msgid "Complete the challenge"
msgstr "Coilean an dùbhlan"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Sgrìobh post ùr"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Sgrìobh puist a bhios suas ri {0, plural, one {# charactar} two {# charactar} few {# caractaran} other {# caractar}} a dh’fhaid"
@@ -2255,7 +2264,11 @@ msgstr "Sgrìobh puist a bhios suas ri {0, plural, one {# charactar} two {# char
msgid "Compose reply"
msgstr "Sgrìobh freagairt"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "A’ dùmhlachadh a’ video…"
@@ -2263,7 +2276,6 @@ msgstr "A’ dùmhlachadh a’ video…"
msgid "Configure content filtering setting for category: {name}"
msgstr "Rèitich roghainn criathradh na susbainte aig an roinn-seòrsa seo: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "Rèitich bratach an tachartais bheò"
@@ -2272,8 +2284,8 @@ msgstr "Rèitich bratach an tachartais bheò"
msgid "Configured in <0>moderation settings0>."
msgstr "Air a rèiteachadh ann an <0>roghainnean na modarataireachd0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "Chaidh an luchd-aithne ion-phortadh"
msgid "Contacts removed"
msgstr "Chaidh an luchd-aithne a thoirt air falbh"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Susbaint ⁊ meadhanan"
@@ -2389,7 +2401,7 @@ msgstr "Susbaint a bhrosnaicheas no a sheallas fèin-dochann"
msgid "Content Warning"
msgstr "Rabhadh susbainte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Rabhaidhean susbainte"
@@ -2401,7 +2413,7 @@ msgstr "Cùlaibh a’ chlàir-thaice cho-theacsail, dèan briogadh airson an cl
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Air adhart"
@@ -2420,7 +2432,7 @@ msgstr "Leugh an còrr dhen t-snàithlean…"
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "Cha b’ urrainn dhuinn gach maids a leantainn. {0}"
msgid "Could not leave chat"
msgstr "Cha b’ urrainn dhuinn a’ chabadaich fhàgail"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Cha b’ urrainn dhuinn an t-inbhir a luchdadh"
@@ -2643,8 +2655,8 @@ msgstr "Cruthaich còd QR airson pacaid tòiseachaidh"
msgid "Create a starter pack"
msgstr "Cruthaich pacaid tòiseachaidh"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Cruthaich pacaid tòiseachaidh"
@@ -2654,12 +2666,12 @@ msgstr "Cruthaich pacaid tòiseachaidh dhomh"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Cruthaich fear eile"
msgid "Create moderation list"
msgstr "Cruthaich liosta modarataireachd"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Cruthaich cunntas ùr"
@@ -2772,7 +2784,7 @@ msgstr "Là-breith"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Cuir an cunntas à gnìomh"
@@ -2871,7 +2883,7 @@ msgstr "Sguab an cunntas agam às"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Sguab às am post"
@@ -2981,7 +2993,7 @@ msgstr "Na leig le daoine luaidh a dhèanamh air a’ phost seo"
msgid "Disable replies entirely"
msgstr "Cuir à comas freagairtean buileach"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Cuir na fo-thiotalan à comas"
@@ -2996,8 +3008,11 @@ msgstr "À comas"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Tilg air falbh"
@@ -3006,11 +3021,12 @@ msgstr "Tilg air falbh"
msgid "Discard changes?"
msgstr "A bheil thu airson na h-atharraichean a thilgeil air falbh?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "A bheil thu airson an dreachd a thilgeil air falbh?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "A bheil thu airson am post a thilgeil air falbh?"
@@ -3037,7 +3053,7 @@ msgstr "Leig seachad"
msgid "Dismiss banner"
msgstr "Leig seachad a’ bhratach"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Leig seachad a’ mhearachd"
@@ -3049,11 +3065,16 @@ msgstr "Leig seachad an treòir thòiseachail"
msgid "Dismiss interests"
msgstr "Leig seachad na rudan sa bheil ùidh agad"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Leig seachad an earrann seo"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Leig seachad am moladh seo"
@@ -3121,8 +3142,8 @@ msgstr "Na gabh dragh! Chaidh gach teachdaireachd is roghainn a shàbhaladh is b
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Thoir gnogag dhùbailte no dèan brùthadh fada air an teachdaireachd ai
msgid "Double tap to close the dialog"
msgstr "Thoir gnogag dhùbailte air gus an còmhradh a dhùnadh"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Thoir gnogag dhùbailte a dh’innse gur toil leat e"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Luchdaich a-nuas Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Luchdaich a-nuas am faidhle CAR"
msgid "Doxxing"
msgstr "Doxx-igeadh"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Leig às dealbh airson a chur ris"
@@ -3285,13 +3313,13 @@ msgstr "Deasaich roghainnean eadar-ghabhail a’ phuist"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Deasaich a’ phròifil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Deasaich a’ phròifil"
@@ -3413,7 +3441,7 @@ msgstr "Cuir brathan push an comas"
msgid "Enable quote posts of this post"
msgstr "Leig le daoine luaidh a dhèanamh air a’ phost seo"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Cuir fo-thiotalan an comas"
@@ -3421,13 +3449,13 @@ msgstr "Cuir fo-thiotalan an comas"
msgid "Enable this source only"
msgstr "Cuir an tùs seo a-mhàin an comas"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Cuir na cuspairean a tha a’ treandadh an comas"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Cuir an comas videothan a tha a’ treandadh san inbhir “Fidir” agad"
@@ -3464,7 +3492,7 @@ msgstr "Cuir a-steach facal no taga"
msgid "Enter code"
msgstr "Cuir a-steach an còd"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Tòisich an làn-sgrìn"
@@ -3501,7 +3529,7 @@ msgstr "Cuir a-steach am facal-faire agad"
msgid "Enter your username and password"
msgstr "Cuir a-steach an t-ainm-cleachdaiche ’s am facal-faire agad"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Fosglaidh seo an làn-sgrìn"
@@ -3509,7 +3537,7 @@ msgstr "Fosglaidh seo an làn-sgrìn"
msgid "Entertainment"
msgstr "Dibhearsan"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Mearachd"
@@ -3570,7 +3598,7 @@ msgstr "Dùin às luchd-cleachdaidh a tha thu gan leantainn"
msgid "Excludes users you follow"
msgstr "Dùinidh seo às luchd-cleachdaidh a tha thu gan leantainn"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Fàg an làn-sgrìn"
@@ -3578,11 +3606,7 @@ msgstr "Fàg an làn-sgrìn"
msgid "Exits account deletion process"
msgstr "Fàgaidh seo sguabadh às a’ chunntais"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Fàgaidh seo sealladh an deilbh"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Leudaich an roghainn teacsa"
@@ -3598,11 +3622,11 @@ msgstr "Leudaich no co-theannaich am post slàn a tha thu a’ freagairt"
msgid "Expand post text"
msgstr "Leudaich teacsa a’ phuist"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Leudaichidh no co-theannaichidh seo teacsa a’ phuist"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Bha dùil ri URI airson an clàr fhuasgladh"
@@ -3639,7 +3663,7 @@ msgstr "Dealbhan feiseil is feòlmhor."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Rùraich"
@@ -3657,8 +3681,8 @@ msgstr "Às-phortaich an dàta agam"
msgid "Export My Data"
msgstr "Às-phortaich an dàta agam"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Meadhanan on taobh a-muigh"
@@ -3730,7 +3754,7 @@ msgstr "Cha b’ urrainn dhuinn am post a sguabadh às, feuch ris a-rithist"
msgid "Failed to delete starter pack"
msgstr "Cha b’ urrainn dhuinn a’ phacaid tòiseachaidh a sguabadh às"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "Cha b’ urrainn dhuinn a h-uile cunntas a mholamaid a leantainn, feuch ris a-rithist"
@@ -3829,6 +3853,10 @@ msgstr "Cha b’ urrainn dhuinn an dearbhadh a thoirt air falbh"
msgid "Failed to resolve location. Please try again."
msgstr "Cha d’fhuair sinn lorg air an ionad. Feuch ris a-rithist."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Inbhir"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Inbhir le {0}"
@@ -3941,7 +3970,7 @@ msgstr "Chan eil an t-inbhir ri fhaighinn"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Innis dhuinn dè do bheachd"
@@ -3958,7 +3987,7 @@ msgstr "Chaidh do bheachd a chur gu muinntir an inbhir"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Inbhirean"
@@ -4008,6 +4037,10 @@ msgstr "Criathraich na daoine a gheibh thu teachdaireachdan uapa"
msgid "Finalizing"
msgstr "A’ cur crìoch air"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Mu dheireadh thall! Glèidh puist a tha cudromach dhut. Sàbhail iad is thoir sùil orra a-rithist uair sam bith."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Lorg mo charaidean"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Lorg daoine airson an leantainn"
@@ -4098,19 +4131,19 @@ msgstr "Cuir fòcas air bogsa ion-chur a’ chòd"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Lean"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Lean ri {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Lean ri {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Lean ris a’ chunntas"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Lean ris a’ chunntas"
msgid "Follow all"
msgstr "Lean ris na h-uile"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Lean a h-uile cunntas"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Lean iad cuideachd"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Tha thu a’ leantainn a h-uile cunntas a-nis!"
@@ -4195,8 +4228,8 @@ msgstr "Luchd-leantainn as aithne dhut"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Ga leantainn"
msgid "Following {0}"
msgstr "A’ leantainn {0} a-nis"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "A’ leantainn {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Roghainnean inbhir nan daoine a tha thu a’ leantainn"
@@ -4264,7 +4297,7 @@ msgstr "Air sgàth adhbharan tèarainteachd, chan fhaic thu seo a-rithist. Ma ch
msgid "For the best experience, we recommend using the theme font."
msgstr "’S e cruth-clò an ùrlair as fheàrr a dh’obraicheas, nar beachd-ne."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Dhut-sa"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "O <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Gin pacaid tòiseachaidh"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Faigh cobhair"
@@ -4376,10 +4409,15 @@ msgstr "Faigh brath nuair a dh’fhoillsicheas cuideigin post ùr"
msgid "Get started"
msgstr "Dèan toiseach-tòiseachaidh"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Cuir aodann ris a’ phròifil agad"
@@ -4394,12 +4432,12 @@ msgstr "Glòrachadh ainneirt"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Air ais"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "Chaidh an craoladh beò a chur à comas sa chunntas agad"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Meadhanan grafaigeach"
@@ -4592,7 +4630,7 @@ msgstr "Cumaidh Bluesky seo fad 7 làithean airson casg a chur air mì-ghnàthac
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Cobhair"
@@ -4632,9 +4670,9 @@ msgstr "Liosta fhalaichte"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Falaich liosta an luchd-chleachdaidh"
msgid "Hide verification badges"
msgstr "Falaich na baidsean dearbhaidh"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Falaichidh seo an t-susbaint"
@@ -4760,9 +4798,9 @@ msgstr "Air do shocair! Tha sinn a’ toirt comas air video mean air mhean – g
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Dhachaigh"
@@ -4819,7 +4857,7 @@ msgstr "Tha mi a’ tuigsinn"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "Tha mi air Bluesky mar {0} – tiugainn! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Ma tha an roghainn teacsa ro fhada, dùisgidh seo staid na roghainn teacsa leudaichte"
@@ -4872,7 +4910,7 @@ msgstr "Ma tha thu airson cuingeachadh cò gheibh brathan mu ghnìomhachd sa chu
msgid "If you're a developer, you can host your own server."
msgstr "Mas e neach-leasachaidh a th’ annad, is urrainn dhut frithealaiche a chur air chois thu fhèin."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Ma tha thu airson an làmhrachan no post-d agad atharrachadh, dèan sin mus tèid e à comas."
@@ -4996,6 +5034,10 @@ msgstr "Roghainnean na h-eadar-ghabhalach"
msgid "Introducing activity notifications"
msgstr "Tha brathan gnìomhachd ri làimh a-nis"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "Faigh lorg air do charaidean tron luchd-aithne agad"
@@ -5089,7 +5131,7 @@ msgstr "Chan eil ann ach <0>{0}0> aig an ìre-sa! Cuir barrachd dhaoine ris a
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Chan eil ann ach thu fhèin an-dràsta fhèin! Cuir barrachd dhaoine ris a’ phacaid tòiseachaidh agad le bhith a’ dèanamh lorg gu h-àrd."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID na h-obrach: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Cùm fios rium"
msgid "KWS website"
msgstr "Làrach-lìn KWS"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Air a leubaileadh le {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Air a leubaileadh leis an ùghdar."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Leubailean"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Chaidh na leubailean a chur ris"
@@ -5218,8 +5260,8 @@ msgstr "Barrachd fiosrachaidh mu ion-phortadh luchd-aithne"
msgid "Learn more about self hosting your PDS."
msgstr "Barrachd fiosrachaidh mu fhèin-òstaireachd a’ PDS agad."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Barrachd fiosrachaidh mun mhodarataireachd a rinneadh air an t-susbaint seo"
@@ -5231,7 +5273,7 @@ msgstr "Airson barrachd fiosrachaidh mu na tha ùr agus mar a dh’innseas tu dh
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Airson barrachd fiosrachaidh mu na tha ùr agus mar a dh’innseas tu dhuinn dè do bheachd, leugh am post sa bhloga againn."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Barrachd fiosrachaidh mun rabhadh seo"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "Faigh barrachd fiosrachaidh ann an <0>roghainnean a’ chunntais0> agad."
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Barrachd fiosrachaidh."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Fàg an-seo"
@@ -5286,7 +5328,7 @@ msgstr "A’ fàgail Bluesky"
msgid "left to go."
msgstr "air fhàgail."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Leig leamsa roghnachadh"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "’S toil"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "’S toil ({0, plural, one {’s toil le # seo} two {’s toil le # seo} few {’s toil le # seo} other {’s toil le # seo}})"
@@ -5380,7 +5422,7 @@ msgstr "’S toil le cuideigin rud a dh’ath-phostaich thu"
msgid "Likes of your reposts notifications"
msgstr "Brathan mu dhaoine a dh’innis gur toil leotha rud a dh’ath-phostaich thu"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Daoine as toil leotha am post seo"
@@ -5474,7 +5516,7 @@ msgstr "Chaidh an liosta a neo-mhùchadh"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Liostaichean"
@@ -5496,10 +5538,20 @@ msgstr "Beò"
msgid "Live event happening now: {0}"
msgstr "Tha tachartas beò a’ dol: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Luchdaich barrachd dheth"
msgid "Load more suggested feeds"
msgstr "Luchdaich barrachd inbhirean a mholamaid"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Luchdaich na brathan ùra"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "An suaicheantas le @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "An suaicheantas le <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Dèan fear dhomh"
msgid "Make sure this is where you intend to go!"
msgstr "Dèan cinnteach gur e seo a tha fa-near dhut!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Stiùirich na h-inbhirean a shàbhail thu"
@@ -5638,7 +5690,16 @@ msgstr "Uaireigin eile ’s dòcha"
msgid "Media"
msgstr "Meadhanan"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Meadhanan a chuireadh dragh air cuid a dhaoine no a bhiodh mì-iomchaidh."
@@ -5653,7 +5714,7 @@ msgstr "luchd-cleachdaidh air a bheil iomradh"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Iomraidhean"
@@ -5716,6 +5777,10 @@ msgstr "Brathan eile"
msgid "Misleading"
msgstr "Mì-stiùireadh"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "Barrachd chànan…"
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Filmichean"
msgid "Music"
msgstr "Ceòl"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Tadhail air a’ phacaid tòiseachaidh"
msgid "Navigates to the next screen"
msgstr "Bheir seo thu gun ath-sgrìn"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Bheir seo thu gun phròifil agad"
@@ -5983,6 +6049,7 @@ msgstr "Seòladh puist-d ùr"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Gleus ùr"
@@ -6018,12 +6085,12 @@ msgstr "Teachdaireachdan ùra"
msgid "New password"
msgstr "Facal-faire ùr"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Post ùr"
@@ -6085,7 +6152,7 @@ msgstr "Naidheachdan"
msgid "Next"
msgstr "Air adhart"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "An t-ath-dhealbh"
@@ -6114,6 +6181,10 @@ msgstr "Gun inbhir gnàthaichte fhathast"
msgid "No DNS Panel"
msgstr "Gun phanail DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Cha deach suidheachadh cuin a dh’fhalbhas an ùine air"
@@ -6136,7 +6207,7 @@ msgstr "Gun dealbh"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Cha toil le gin seo fhathast"
@@ -6150,7 +6221,7 @@ msgstr "Gun liostaichean"
msgid "No longer following {0}"
msgstr "Chan eil thu a’ leantainn {0} tuilleadh"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "Gun mheadhanan fhathast"
@@ -6195,7 +6266,7 @@ msgstr "Gun phuist fhathast"
msgid "No quotes yet"
msgstr "Gun luaidh fhathast"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "Gun fhreagairtean fhathast"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Cha robh toradh ann"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Cha robh toradh ann"
@@ -6238,7 +6309,7 @@ msgstr "Gun toradh."
msgid "No search results found for \"{search}\"."
msgstr "Cha deach toradh a lorg airson “{search}”."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "Gun phacaid tòiseachaidh fhathast"
@@ -6247,7 +6318,7 @@ msgstr "Gun phacaid tòiseachaidh fhathast"
msgid "No thanks"
msgstr "Cha chuir, mòran taing"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "Gun phuist video fhathast"
@@ -6298,6 +6369,10 @@ msgstr "Chan eil neach sam bith a tha thusa a’ leantainn ga leantainn"
msgid "Not Found"
msgstr "Cha deach a lorg"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Fiosrachadh mu cho-roinneadh"
@@ -6321,7 +6396,7 @@ msgstr "Cha deach dad a shàbhaladh fhathast"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Roghainnean nam brathan"
@@ -6349,10 +6424,10 @@ msgstr "Fuaimean nam brathan"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Brathan"
@@ -6368,8 +6443,8 @@ msgstr "an-dràsta"
msgid "Now"
msgstr "An-dràsta"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Lomnochd"
@@ -6390,7 +6465,7 @@ msgstr "Ìoc!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "Ceart ma-thà"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Ceart ma-thà"
@@ -6417,23 +6492,23 @@ msgstr "air <0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Ath-shuidheachadh a’ bhòrdachaidh"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon GIF."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon dealbh."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "Thagh thu co-dhiù aon fhaidhle ris nach eil taic."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "Thagh thu co-dhiù aon fhaidhle a tha ro mhòr. ’S e 100MB am meud as motha a tha ceadaichte."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon video."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ìoc, chaidh rudeigin ceàrr!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ìoc!"
msgid "Open avatar creator"
msgstr "Fosgail cruthadair nan avatar"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "Fosgail an camara"
@@ -6485,12 +6560,16 @@ msgstr "Fosgail an camara"
msgid "Open conversation options"
msgstr "Fosgail roghainnean nan còmhraidhean"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Fosgail an clàr-taice air an taobh"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Fosgail ròghnaichear nan emoji"
@@ -6557,7 +6636,7 @@ msgstr "Fosgail log an t-siostaim"
msgid "Opens {0} feed"
msgstr "Fosglaidh seo an t-inbhir {0}"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Fosglaidh seo còmhradh airson rabhadh a chur ris a’ phost agad mun t-susbaint a th’ ann"
@@ -6589,25 +6668,25 @@ msgstr "Fosglaidh seo an còmhradh airson atharrachadh an làmhrachain"
msgid "Opens composer"
msgstr "Fosglaidh seo an gleus-sgrìobhaidh"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "Fosglaidh seo camara an uidheim"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "Fosglaidh seo gailearaidh an uidheim airson suas ri {MAX_IMAGES, plural, one {# dealbh} two {# dhealbh} few {# dealbhan}other {# dealbh}} no aon video no GIF a thaghadh."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Fosglaidh seo ròghnaichear nan emoji"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Fosglaidh seo an sruth airson cunntas Bhluesky ùr a chruthachadh"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Fosglaidh seo an sruth airson clàradh a-steach dhan chunntas Bhluesky agad"
@@ -6620,7 +6699,7 @@ msgstr "Fosglaidh seo an còmhradh airson GIF a thaghadh"
msgid "Opens helpdesk in browser"
msgstr "Fosglaidh seo an taic sa bhrabhsair"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "Fosglaidh seo ròghnaichear nan dealbhan"
@@ -6640,10 +6719,14 @@ msgstr "Fosglaidh seo foirm ath-shuidheachadh an fhacail-fhaire"
msgid "Opens post language settings"
msgstr "Fosglaidh seo roghainnean cànan a’ phuist"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "Fosglaidh seo deasaiche nam post"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "Staid OTA: Chan eil gin ri fhaighinn"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Rud eile"
@@ -6763,13 +6846,13 @@ msgstr "Chaidh am facal-faire ùrachadh"
msgid "Password updated!"
msgstr "Chaidh am facal-faire ùrachadh!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Cuir na stad"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Cuir a’ video na stad"
@@ -6829,7 +6912,7 @@ msgstr "Chaidh an àireamh fòn a dhearbhadh"
msgid "Photography"
msgstr "Togail dhealbhan"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Dealbhan do dh’inbhich."
@@ -6874,9 +6957,9 @@ msgstr "Inbhirean prìnichte"
msgid "Pinned to your feeds"
msgstr "Prìnichte ris na h-inbhirean agad"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Cluich"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Cluich {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Cluich a’ video"
@@ -6893,11 +6976,11 @@ msgstr "Cluich a’ video"
msgid "Play Video"
msgstr "Cluich a’ video"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Cluichidh no cuiridh seo na stad an GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Cluichidh no cuiridh seo na stad a’ video"
@@ -6909,7 +6992,7 @@ msgstr "Cluichidh seo an GIF"
msgid "Plays the video"
msgstr "Cluichidh seo a’ video"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Mas e meadhan d’ a leithid a th’ ann, cuir leubail a bheir rabhadh mun t-susbaint ris an stuth a tha thu a’ postadh."
@@ -7066,31 +7149,31 @@ msgstr "Sgrìobh do theachdaireachd gu h-ìosal:"
msgid "Politics"
msgstr "Poileataigs"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pòrnografachd"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Postaich"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Postaich"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Postaich dealbh"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Postaich video"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Postaich na h-uile"
@@ -7217,7 +7300,7 @@ msgstr "Dèan brùthadh is chì thu na daoine a leanas ris a’ chunntas seo a t
msgid "Preview"
msgstr "Ro-sheall"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "An dealbh roimhe"
@@ -7257,8 +7340,8 @@ msgstr "Roghainnean na prìobhaideachd is na tèarainteachd"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Am poileasaidh prìobhaideachd"
@@ -7266,7 +7349,11 @@ msgstr "Am poileasaidh prìobhaideachd"
msgid "Privacy violation of a minor"
msgstr "Briseadh a-steach air prìobhaideachd mion-aoisich"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "A’ pròiseasadh a’ video…"
@@ -7280,10 +7367,10 @@ msgstr "Ga phròiseasadh…"
msgid "profile"
msgstr "pròifil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "A’ phròifil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Poblach, liostaichean luchd-cleachdaidh as urrainn dhut co-roinneadh ach an urrainn do dhaoine am mùchadh no bacadh ri chèile."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Foillsich am post"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Foillsich na puist"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Foillsich na freagairtean"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Foillsich an fhreagairt"
@@ -7360,6 +7447,7 @@ msgstr "Brathan mu luaidh"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Dèan luaidh air a’ phost"
@@ -7385,7 +7473,7 @@ msgstr "Tha luaidhean air puist à comas"
msgid "Quotes"
msgstr "Luaidhean"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Luaidhean air a’ phost seo"
@@ -7424,11 +7512,11 @@ msgstr "leugh mar a dh’obraicheas na criathragan luirg againn"
msgid "Read blog post"
msgstr "Leugh am post air a’ bhloga"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Falaich an còrr"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Leugh an còrr"
@@ -7720,13 +7808,13 @@ msgstr "Tha na freagairtean à comas"
msgid "Replies to this post are disabled."
msgstr "Chan urrainnear am post seo a fhreagairt."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Freagair"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Freagair ({0, plural, one {# fhreagairt} two {# fhreagairt} few {# freagairtean} other {# freagairt}})"
@@ -7892,7 +7980,7 @@ msgstr "Rinn thu ath-phostadh"
msgid "Reposts"
msgstr "Ath-phostadh"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Ath-phostaidh a’ phuist seo"
@@ -7996,14 +8084,14 @@ msgstr "Feuchaidh seo ris a’ ghnìomh mu dheireadh a-rithist is e air fàillig
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Till gun duilleag roimhpe"
msgid "Returns to home page"
msgstr "Tillidh seo thu gun duilleag-dhachaigh"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Tillidh seo thu gun duilleag roimhpe"
@@ -8063,7 +8151,7 @@ msgstr "Tillidh seo thu gun cheum roimhe"
msgid "Save"
msgstr "Sàbhail"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Sàbhail"
@@ -8076,9 +8164,26 @@ msgstr "Sàbhail an latha-breith"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Sàbhail na h-atharraichean"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Sàbhail sna h-inbhirean agam"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Air a shàbhaladh"
@@ -8155,7 +8260,7 @@ msgstr "Sgrolaich gun bhàrr"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Lorg"
@@ -8164,7 +8269,7 @@ msgstr "Lorg"
msgid "Search @{0}'s posts"
msgstr "Dèan lorg sna puist aig {0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Lorg a-rèir ainm no ùidh"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Lorg sna h-inbhirean"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "Lorg “{interestsDisplayName}”"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "Lorg “{interestsDisplayName}” (gnìomhach)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Lorg sna puist"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Lorg sna pròifilean"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Lorg..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Luirg airson pròifilean"
@@ -8283,12 +8388,12 @@ msgstr "Seall puist ris a bheil taga #{tag} leis a’ chleachdaiche"
msgid "See jobs at Bluesky"
msgstr "Faic dè na dreuchdan bàna aig Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Seall an còrr"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "Barrachd phròifilean a mholamaid"
@@ -8456,7 +8561,7 @@ msgstr "Tagh an cànan as fheàrr leat airson eadar-theangachadh san inbhir agad
msgid "Select your preferred notification channels"
msgstr "Tagh na seanailean as fheàrr leat airson brathan"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "Chan urrainnear iomadh seòrsa de mheadhanan a thaghadh aig an aon àm."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Cuir post-d"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Cuir do bheachdan"
@@ -8566,7 +8671,7 @@ msgstr "Suidhichidh seo am post-d airson ath-shuidheachadh an fhacail-fhaire"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Roghainnean"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Chaidh na roghainnean a sàbhaladh"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Gnìomhachd fheiseil no lomnochd earotaigeach."
@@ -8634,7 +8739,7 @@ msgstr "Leth-fheiseil"
msgid "Share"
msgstr "Co-roinn"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Co-roinn"
@@ -8712,13 +8817,13 @@ msgstr "Co-roinn an t-inbhir as fheàrr leat!"
msgid "Shared Preferences Tester"
msgstr "Deuchainn nan co-roghainnean"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Seall"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Seall an roghainn teacsa"
@@ -8820,7 +8925,7 @@ msgstr "Seall rabhadh is criathraich às na h-inbhirean e"
msgid "Show when you’re live"
msgstr "Leig ris nuair a bhios tu ri craoladh beò"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Innsidh seo cuin a chaidh am post seo a chruthachadh"
@@ -8828,8 +8933,8 @@ msgstr "Innsidh seo cuin a chaidh am post seo a chruthachadh"
msgid "Shows other accounts you can switch to"
msgstr "Seallaidh seo na cunntasan eile as urrainn dhut leum thuca"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Seallaidh seo an t-susbaint"
@@ -8842,14 +8947,14 @@ msgstr "Seallaidh seo an t-susbaint"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Feumaidh tu clàradh a-steach"
msgid "Signed in as @{0}"
msgstr "Chlàraich thu a-steach mar @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Cunntasan coltach ris"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "Leum seachad air co-roinneadh an luchd-aithne ’s lean air adhart chun
msgid "Skip introduction and start using your account"
msgstr "Leum seachad air an fhàilteachadh is tòisich air an cunntas agad a chleachdadh"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Leum air adhart chun an ath-cheum"
@@ -8967,7 +9068,7 @@ msgstr "Luchd-leasachaidh a’ bhathair-bhuig"
msgid "Some of your verifications are invalid."
msgstr "Tha cuid dhen dearbhadh a rinn thu mì-dhligheach."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Inbhir eile a chòrdas riut ma dh’fhaodte"
@@ -8994,7 +9095,7 @@ msgstr "Chaidh rudeigin ceàrr"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Chaidh rudeigin ceàrr, feuch ris a-rithist"
@@ -9020,7 +9121,7 @@ msgstr "Chaidh rudeigin ceàrr. Feuch ris a-rithist."
msgid "Something wrong? Let us know."
msgstr "Mearachd air choireigin? Innis dhuinn."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Tha sinn duilich ach cha b’ urrainn dhuinn na cunntasan a mholamaid a luchdadh aig an ìre-sa."
@@ -9113,7 +9214,11 @@ msgstr "Pacaidean tòiseachaidh"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Tha e furasta na h-inbhirean is daoine as fheàrr leat a cho-roinneadh le pacaidean tòiseachaidh."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "Tha e furasta na h-inbhirean is daoine as fheàrr leat a cho-roinneadh le do charaidean le pacaidean tòiseachaidh."
@@ -9181,11 +9286,11 @@ msgstr "Fo-sgrìobh aig @{0} airson na leubailean seo a chleachdadh:"
msgid "Subscribe to account activity"
msgstr "Fo-sgrìobh aig gnìomhachd cunntais"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Fo-sgrìobh aig an leubailiche"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Fo-sgrìobh aig an leubailiche seo"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Cunntasan a mholamaid"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Molaidhean dhut"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Leth-fheiseil"
@@ -9354,8 +9459,8 @@ msgstr "Na teirmichean"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Teirmichean na seirbheise"
@@ -9403,12 +9508,12 @@ msgstr "Tha an t-ainm-cleachdaiche seo aig cuideigin eile mar-thà"
msgid "That's all, folks!"
msgstr "Sin agaibh e, a chàirdean!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Sin e!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "’S urrainn dhan chunntas seo eadar-ghabhail a dhèanamh leat a-rithist an dèidh dhut a dhì-bhacadh."
@@ -9447,7 +9552,7 @@ msgstr "An t-inbhir “Fidir”"
msgid "The Discover feed now knows what you like"
msgstr "Tha fios aig an inbhir “Fidir” a-nis dè na rudan as toil leat"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Gheibh thu àrainneachd nas fheàrr san aplacaid. Luchdaich a-nuas Bluesky an-dràsta agus leanamaid oirnn far an do stad thu."
@@ -9527,7 +9632,7 @@ msgstr "An t-ùrlar"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "Chan urrainn dhut latha do bhreith atharrachadh gun sgur. Dh’fhaodte gum feum thu fuireach fad latha no dhà mus urrainn dhut ùrachadh a-rithist."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Chan eil crìoch ùine ann airson cunntas a chur à gnìomh, till an-seo uair sam bith."
@@ -9711,6 +9816,10 @@ msgstr "Chan fhaicear an t-susbaint seo as aonais cunntas Bhluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Seo còmhradh aig cunntas a chaidh a sguabadh às no a chur à gnìomh. Dèan brùthadh is chì thu na ’s urrainn dhut dèanamh"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Tha am post-d seo co-cheangailte ris a’ chunntas agad mu thràth."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Tha an t-inbhir seo falamh! Feuch is lean barrachd dhaoine no cuir na roghainnean cànain agad air gleus."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Tha an t-inbhir seo falamh."
@@ -9798,7 +9907,7 @@ msgstr "Tha an liosta seo falamh."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Chan eil an t-seirbheis modarataireachd seo ri làimh. Chì thu barrachd fiosrachaidh mu dhèidhinn gu h-ìosal. Ma mhaireas an duilgheadas seo, cuir fios thugainn."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Tha am post seo a’ cumail a-mach gun deach a chruthachadh <0>{0}0> ach chunnacas e air Bluesky <1>{1}1> an toiseach."
@@ -9818,7 +9927,7 @@ msgstr "Sguab ùghdar a’ phuist seo às e"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Bidh am post seo am falach o inbhirean is snàithleanan. Cha ghabh seo neo-dhèanamh."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Chuir ùghdar a’ phuist seo à comas luaidhean air a’ phost."
@@ -9834,7 +9943,7 @@ msgstr "Thèid an fhreagairt seo a chur ann an earrann fhalaichte aig bonn an t-
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Cha tug an t-seirbheis seo seachad teirmichean seirbheise no poileasaidh prìobhaideachd."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "Cha bhi an t-seirbheis seo ri làimh fhad ’s a bhios gleus a’ chraolaidh bheò na ghleus beta. Seirbheisean a tha ceadaichte: {formatted}."
@@ -9900,8 +10009,8 @@ msgstr "Bheir seo air falbh am post agad on luaidh seo air post mu choinneamh an
msgid "Thread options"
msgstr "Roghainnean an t-snàithlein"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Roghainnean an t-snàithlein"
@@ -9951,7 +10060,7 @@ msgstr "An-diugh"
msgid "Toggle to enable or disable adult content"
msgstr "Toglaich seo airson susbaint inbheach a chur an comas no à comas"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Toglaichidh seo an fhuaim"
@@ -9988,8 +10097,8 @@ msgstr "Cuspair"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Eadar-theangaich"
@@ -10091,15 +10200,15 @@ msgstr "Chan eil fiosrachadh mun inbhir ri fhaighinn"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Dì-bhac"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Dì-bhac"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Dì-bhac an cunntas"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "A bheil thu airson an cunntas a dhì-bhacadh?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Neo-dhèan"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Neo-dhèan"
@@ -10142,7 +10255,7 @@ msgstr "Neo-dhèan an t-ath-phostadh"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Neo-dhèan an t-ath-phostadh ({0, plural, one {air ath-phostadh # turas} two {air ath-phostadh # thuras} few {air ath-phostadh # turais} other {air ath-phostadh # turas}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Na lean ri {0} tuilleadh"
@@ -10151,7 +10264,7 @@ msgstr "Na lean ri {0} tuilleadh"
msgid "Unfollow account"
msgstr "Na lean an cunntas tuilleadh"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Ma nì thu seo, cha lean thu ris a’ chleachdaiche tuilleadh"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Cha toil tuilleadh"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Cha toil tuilleadh ({0, plural, one {’s toil le # seo} two {’s toil le # seo} few {’s toil le # seo} other {’s toil le # seo}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Neo-mhùch an liosta"
msgid "Unmute thread"
msgstr "Neo-mhùch an snàithlean"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Till fuaim a’ video"
@@ -10276,7 +10389,7 @@ msgstr "Chaidh an liosta a dhì-phrìneachadh"
msgid "Unsnooze email reminder"
msgstr "Dùisg an cuimhneachan as ùr"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Cuir crìoch air an fho-sgrìobhadh"
@@ -10285,7 +10398,7 @@ msgstr "Cuir crìoch air an fho-sgrìobhadh"
msgid "Unsubscribe from list"
msgstr "Cuir crìoch air an fho-sgrìobhadh aig an liosta"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Cuir crìoch air an fho-sgrìobhadh aig an leubailiche seo"
@@ -10293,7 +10406,7 @@ msgstr "Cuir crìoch air an fho-sgrìobhadh aig an leubailiche seo"
msgid "Unsubscribed from list"
msgstr "Chaidh crìoch a chur air an fho-sgrìobhadh aig an liosta"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Chan eil taic ri videothan dhen t-seòrsa {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "Luchdaich suas o na faidhlichean"
msgid "Upload from Library"
msgstr "Luchdaich suas on leabhar-lann"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "A’ luchdadh suas nan dealbhan…"
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "A’ luchdadh suas dealbhag a’ cheangail…"
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "A’ luchdadh suas a’ video…"
@@ -10389,8 +10506,8 @@ msgstr "Cleachd an solaraiche bunaiteach"
msgid "Use in-app browser"
msgstr "Cleachd am brabhsair am broinn na h-aplacaid"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Cleachd am brabhsair am broinn na h-aplacaid airson ceanglaichean fhosgladh"
@@ -10445,6 +10562,10 @@ msgstr "Bhac an cleachdaiche seo thu"
msgid "User list by {0}"
msgstr "Liosta luchd-cleachdaidh le {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Liosta luchd-cleachdaidh leat-sa"
@@ -10597,8 +10718,8 @@ msgstr "Ga dhearbhadh…"
msgid "Version {0}"
msgstr "Tionndadh {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Video"
@@ -10614,20 +10735,24 @@ msgstr "Inbhir video"
msgid "Video from {0}: {text}"
msgstr "Video o {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Geamannan video"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Tha a’ video na stad"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Tha a’ video ga chluich"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Cha deach a’ video a lorg."
@@ -10635,11 +10760,11 @@ msgstr "Cha deach a’ video a lorg."
msgid "Video settings"
msgstr "Roghainnean a’ video"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Chaidh a’ video a luchdadh suas"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Video: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videothan"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "Feumaidh a’ video a bhith nas giorra na 3 mionaidean."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Seall"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Seall an t-avatar aig {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Seall a’ phròifil aig {0}"
@@ -10708,7 +10833,7 @@ msgstr "Seall barrachd"
msgid "View more trending videos"
msgstr "Seall barrachd videothan a tha a’ treandadh"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "Seall am post"
@@ -10788,7 +10913,7 @@ msgstr "Ainneart no susbaint a tha na mhaoidheadh"
msgid "Visit site"
msgstr "Tadhail air an làrach"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Tadhail air roghainnean nam brathan agad"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Chan urrainn dhuinn tòiseachadh air d’ aois a dhearbhadh sa chunntas agad. Cuir fios gu <0>sgioba na taice0>."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Tha duilgheadasan aig an lìonra againn, feuch ris a-rithist"
@@ -10968,7 +11093,7 @@ msgstr "Tha sinn duilich ach cha b’ urrainn dhuinn na faclan a mhùch thu a lu
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Tha sinn duilich ach cha b’ urrainn dhuinn sin a lorg dhut. Feuch ris a-rithist ann am beagan mhionaidean."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Tha sinn duilich! Tha thu a’ feuchainn ri post a fhreagairt a chaidh a sguabadh às."
@@ -10977,7 +11102,7 @@ msgstr "Tha sinn duilich! Tha thu a’ feuchainn ri post a fhreagairt a chaidh a
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Tha sinn duilich! Chan fhaigh sinn lorg air an duilleag a tha a dhìth ort."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Tha sinn duilich! Chan urrainn dhut fo-sgrìobhadh aig barrachd air fichead leubailichean agus tha sin agad mu thràth."
@@ -11018,10 +11143,9 @@ msgstr "Dè na rudan sa bheil ùidh agad?"
msgid "What do you want to call your starter pack?"
msgstr "Dè an t-ainm a chuireas sinn air a’ phacaid tòiseachaidh agad?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Dè do naidheachd?"
@@ -11097,6 +11221,14 @@ msgstr "Carson bu chòir dhuinn lèirmheas a dhèanamh air an chleachdaiche seo?
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Carson bu toil leat an cleachdaiche seo a bhacadh agus/no an còmhradh seo a sguabadh às?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Sgrìobh teachdaireachd"
msgid "Write a post"
msgstr "Sgrìobh post"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Sgrìobh post"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Sgrìobh do fhreagairt"
@@ -11133,8 +11265,8 @@ msgstr "www.mylivestream.tv"
msgid "Yes"
msgstr "Tha"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Tha, cuiribh à gnìomh seo"
@@ -11188,7 +11320,7 @@ msgstr "Tha thu sa chiutha."
msgid "You are Live"
msgstr "Tha thu ri sruthadh beò"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Chan eil thu ri sruthadh beò tuilleadh"
@@ -11200,7 +11332,7 @@ msgstr "Chan eil cead agad videothan a luchdadh."
msgid "You are not following anyone yet"
msgstr "Chan eil thu a’ leantainn duine sam bith fhathast"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Tha thu ri sruthadh beò a-nis!"
@@ -11255,11 +11387,11 @@ msgstr "Tha gleus againn a-nis a dh’innseas dhut ma phostaicheas daoine àraid
msgid "You can now sign in with your new password."
msgstr "’S urrainn dhut clàradh a-steach leis an fhacal-fhaire ùr agad a-nis."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "Chan fhaod thu barrachd air aon GIF a thaghadh aig an aon àm."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "Chan fhaod thu barrachd air aon video a thaghadh aig an aon àm."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Cuir an cunntas agad an gnìomh as ùr airson clàradh a-steach. Chì daoine eile a’ phròifil is na puist agad."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "’S urrainn dhut suas ri {MAX_IMAGES, plural, one {# dealbh} two {# dhealbh} few {# dealbhan}other {# dealbh}} a thaghadh uile gu lèir."
@@ -11317,7 +11449,7 @@ msgstr "Bhac thu an cleachdaiche seo"
msgid "You have blocked this user. You cannot view their content."
msgstr "Bhac thu an chleachdaiche seo. Chan fhaic thu an t-susbaint aca."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Chuir thu à comas brathan a thaobh fhreagairtean, luaidhean is iomraidhean buileach agus cha tèid an taba seo ùrachadh tuilleadh ri linn sin. Airson seo a chur air gleus, tadhail air <0>roghainnean nam brathan0>agad."
@@ -11376,6 +11508,14 @@ msgstr "Dhearbh thu an seòladh puist-d agad. ’S urrainn dhut an còmhradh seo
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-dràsta fhèin. Feuch ris a-rithist an ceann greis."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Cha do chruthaich thu pacaid tòiseachaidh fhathast!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Feumaidh tu a bhith co-dhiù 13 bliadhna a dh’aois mus urrainn dhut Bluesky a chleachadh. Leugh <0>teirmichean na seirbheise0> againn airson barrachd fiosrachaidh."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Feumaidh tu co-dhiù seachdnar a leantainn mus urrainn dhut pacaid tòiseachaidh a ghintinn."
@@ -11449,7 +11589,7 @@ msgstr "Feumaidh tu d’ aois a dhearbhadh mus fhaigh thu cothrom air an sgrìn
msgid "You must grant access to your photo library to save a QR code"
msgstr "Feumaidh tu cead-inntrigidh do leabhar-lann nan dealbhan agad a thoirt seachad mus urrainn dhut còd QR a shàbhaladh"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "Feumaidh tu cead-inntrigidh do leabhar-lann nam meadhanan agad a thoirt seachad."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Tha thu sa chiutha"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Rinn thu clàradh a-steach le facal-faire aplacaid. Clàraich a-steach leis a’ phrìomh-fhacal-faire agad ma tha thu airson an cunntas agad a sguabadh às fhathast."
@@ -11589,7 +11729,7 @@ msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-diugh (cus dà
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-diugh (cus videothan)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Chan eil video sam bith eile agad a choimheadas tu air. Deagh-àm airson rudeigin eile a dhèanamh fad greis?"
@@ -11625,7 +11765,7 @@ msgstr "Chaidh an t-ath-thagradh agad a chur. Ma thèid leis an ath-thagradh aga
msgid "Your birth date"
msgstr "Latha do bhreith"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Cha chuir am brabhsair agad taic ri fòrmat a’ video. Feuch brabhsair eile."
@@ -11692,8 +11832,8 @@ msgstr "’S e <0>@{0}0> an làmhrachan slàn a bhios agad"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Na rudan sa bheil ùidh agad"
@@ -11731,11 +11871,11 @@ msgstr "Chaidh am facal-faire agad atharrachadh! Cleachd am fear ùr o seo a-mac
msgid "Your password must be at least 8 characters long."
msgstr "Feumaidh co-dhiù 8 caractaran bhith san fhacal-faire agad."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "Chaidh am post agad a chur"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "Chaidh na puist agad a chur"
@@ -11752,11 +11892,11 @@ msgstr "Dealbh na pròifil agad"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "Dealbh na pròifil agad ann an cearcallan co-mheadhanach de dhealbhan pròifil aig daoine eile"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Chan fhaic luchd-cleachdaidh Bhluesky eile a’ phròifil, na puist, inbhirean is liostaichean agad tuilleadh. ’S urrainn dhut an cunntas agad ath-ghnìomhachadh uair sam bith."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "Chaidh do fhreagairt a chur"
diff --git a/src/locale/locales/gl/messages.po b/src/locale/locales/gl/messages.po
index 8ad5e31e5b..a334e936fd 100644
--- a/src/locale/locales/gl/messages.po
+++ b/src/locale/locales/gl/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: gl\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Galician\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# republicación} other {# republicacións}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# segundo} other {# segundos}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {seguidor} other {seguidores}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {seguindo} other {seguindo}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {gustoulle} other {gustoulles}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {gustoulle} other {gustoulles}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {cita} other {citas}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr ""
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
@@ -432,7 +436,7 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>e {2, plural, one {# máis} other {# máis}} foron incluídos no teu paquete"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Engadir {0} máis para continuar"
msgid "Add {displayName} to starter pack"
msgstr "Engadir a {displayName} ao paquete de inicio"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Engadir advertencia de contido"
@@ -754,11 +763,11 @@ msgstr "Engadir texto alternativo (opcional)"
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "Engadir contrasinal de app"
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Adultos"
@@ -879,10 +888,10 @@ msgstr "Adultos"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Contido para adultos"
@@ -894,8 +903,8 @@ msgstr "O contido para adultos só se pode habilitar a través da web en <0>bsky
msgid "Adult content is disabled."
msgstr "O contido para adultos está deshabilitado."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Etiquetas de contido para adultos"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Todas"
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Sesión iniciada como @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Texto alternativo"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Texto alternativo"
@@ -1059,7 +1068,7 @@ msgstr "Un código de verificación foi enviado a {0}. Ingresa ese código a con
msgid "An error has occurred"
msgstr "Produciuse un erro"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Ocurreu un erro"
@@ -1067,7 +1076,7 @@ msgstr "Ocurreu un erro"
msgid "An error occurred while compressing the video."
msgstr "Ocurreu un erro ao comprimir o vídeo."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Ocurreu un error ao xerar o teu paquete de inicio. Queres probar de novo?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "Ocurreu un erro ao cargar o vídeo. Por favor, proba de novo."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Ocurreu un erro mentres cargaba o vídeo. Por favor, proba de novo."
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Animais"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF animado"
@@ -1306,12 +1315,12 @@ msgstr "Aplicar canles recomendadas predeterminados"
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Arquivada dende {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Publicación arquivada"
@@ -1332,11 +1341,11 @@ msgstr "Tes a certeza de que queres eliminar este paquete de inicio?"
msgid "Are you sure you want to discard your changes?"
msgstr "Tes a certeza de que queres descartar os teus cambios?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Tes a certeza de que queres eliminar esta conversa? As túas mensaxes eliminaranse para ti, mais non para a outra persoa."
@@ -1344,11 +1353,7 @@ msgstr "Tes a certeza de que queres eliminar esta conversa? As túas mensaxes el
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Tes a certeza de que desexas eliminar isto das túas canles?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Tes a certeza de quequeres descartar este borrador?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Tes a certeza de querer desbotar esta publicación?"
@@ -1364,7 +1369,7 @@ msgstr "Estás escribindo en <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Arte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Espidos artísticos ou non eróticos."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Reprodución auto. de vídeos e GIFs"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Atrás"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky non pode confirmar a autenticidade da data solicitada."
@@ -1623,7 +1630,7 @@ msgstr "Termos do Servizo do Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky elexirá un conxunto de contas recomendadas na túa rede."
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Revisar máis canles"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Explorar máis suxerencias"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Explora máis suxerencias na páxina Explorar"
@@ -1770,8 +1777,8 @@ msgstr "Cámara"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Cámara"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Cancelar procura"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Non se pode interactuar cunha conta bloqueada"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Conversa"
@@ -1989,7 +1996,7 @@ msgstr "Escoller método de verificación do dominio"
msgid "Choose Feeds"
msgstr "Escolle Canles"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Escolle para min"
@@ -2096,6 +2103,7 @@ msgstr "Clip 🐴 clop 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Clip 🐴 clop 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Pechar caixa de GIF"
msgid "Close image"
msgstr "Pechar imaxe"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Pechar o visor de imaxes"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Pecha a alerta de actualización de contrasinal"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2242,12 +2251,12 @@ msgstr "Completa a incorporación e comeza a usar a túa conta"
msgid "Complete the challenge"
msgstr "Completa o desafío"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Escribir nova publicación"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2264,11 @@ msgstr ""
msgid "Compose reply"
msgstr "Redactar resposta"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Comprimindo vídeo..."
@@ -2263,7 +2276,6 @@ msgstr "Comprimindo vídeo..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Configuración de filtrado de contido para a categoría: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Configurado en <0>axustes de moderación0>"
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Contido e Multimedia"
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "Advertencia de contido"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Advertencia de contido"
@@ -2401,7 +2413,7 @@ msgstr "Fondo do menú contextual, preme para pechar o menú."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Continuar"
@@ -2420,7 +2432,7 @@ msgstr "Continuar fío..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "Non se puido saír deste conversa"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Non se puido cargar esta canle"
@@ -2643,8 +2655,8 @@ msgstr "Crear un código QR para o paquete de inicio"
msgid "Create a starter pack"
msgstr "Crea un paquete de inicio"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "Crea un paquete de inicio para min"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Crea outro"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Crear unha conta nova"
@@ -2772,7 +2784,7 @@ msgstr "Data de nacemento"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Desactivar conta"
@@ -2871,7 +2883,7 @@ msgstr "Borrar a miña conta"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Borrar un chío"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Desactivar lexendaxe"
@@ -2996,8 +3008,11 @@ msgstr "Deshabilitado"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Desbotar"
@@ -3006,11 +3021,12 @@ msgstr "Desbotar"
msgid "Discard changes?"
msgstr "Desbotar cambios?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Desbotar borrador?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Desbotar publicación?"
@@ -3037,7 +3053,7 @@ msgstr "Desbotar"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Desbotar erro"
@@ -3049,11 +3065,16 @@ msgstr "Desbotar a guía de introdución"
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Ignorar esta sección"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr "Doble toque para pechar a xanela"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Duplo toque para marcar cun \"gústame\""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Descargar Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Descargar ficheiro CAR"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Arrastra para agregar imaxes"
@@ -3285,13 +3313,13 @@ msgstr "Editar axustes de interacción do chío"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Editar o perfil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Editar o perfil"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Activar lexendas"
@@ -3421,13 +3449,13 @@ msgstr "Activar lexendas"
msgid "Enable this source only"
msgstr "Habilitar só esta fonte"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Habilitar temas de tendencia"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Habilitar os vídeos en tendencia na túa canle \"Descubrir\""
@@ -3464,7 +3492,7 @@ msgstr "Ingresa unha palabra ou etiqueta"
msgid "Enter code"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Poñer a pantalla completa"
@@ -3501,7 +3529,7 @@ msgstr ""
msgid "Enter your username and password"
msgstr "Introduce o teu alcume e contrasinal"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr ""
@@ -3509,7 +3537,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Erro"
@@ -3570,7 +3598,7 @@ msgstr "Excluír á contas que segues"
msgid "Excludes users you follow"
msgstr "Exclúe ás contas que segues"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Saír da pantalla completa"
@@ -3578,11 +3606,7 @@ msgstr "Saír da pantalla completa"
msgid "Exits account deletion process"
msgstr "Saír do proceso de eliminación de conta"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Saír da vista de imaxe"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Expandir o texto alt"
@@ -3598,11 +3622,11 @@ msgstr "Expandir ou minimizar o chío completo ao que estás respondendo"
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Esperábase que a URI se resolvera nun rexistro"
@@ -3639,7 +3663,7 @@ msgstr "Imaxes sexuais explícitas."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
@@ -3657,8 +3681,8 @@ msgstr "Exportar os meus datos"
msgid "Export My Data"
msgstr "Exportar Os Meus Datos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Medios externos"
@@ -3730,7 +3754,7 @@ msgstr "Error ao eliminar o chío, por favor, inténtao de novo."
msgid "Failed to delete starter pack"
msgstr "Error ao eliminar o paquete inicial."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Canles"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Canle por {0}"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Comentarios"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Canles"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr "Finalizando"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Procurar contas a seguir"
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Seguir"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Seguir a {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr ""
@@ -4133,7 +4166,7 @@ msgstr "Seguir esta conta"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Seguir esta conta"
msgid "Follow all"
msgstr "Seguir a todos"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Seguir tamén"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "Seguidores que coñeces"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Seguindo"
msgid "Following {0}"
msgstr "Seguindo {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Seguindo a {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Preferencias das canles de Seguimento"
@@ -4264,7 +4297,7 @@ msgstr ""
msgid "For the best experience, we recommend using the theme font."
msgstr "Para unha mellor experiencia, recomendamos que uses a fonte do tema."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "De <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Xera un paquete de inicio"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Obtén axuda"
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Dálle ao teu perfil unha cara bonita"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Volver"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Contido Gráfico"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Axuda"
@@ -4632,9 +4670,9 @@ msgstr "Listaxe oculta"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Ocultar listaxe de persoas"
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Oculta o contido"
@@ -4760,9 +4798,9 @@ msgstr "Espera! Estamos dando acceso a vídeos gradualmente e aínda estás na l
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Inicio"
@@ -4819,7 +4857,7 @@ msgstr "Enténdoo"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Se o texto alternativo é longo, alterna o estado expandido do texto alternativo. "
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr "Se es desenvolvedor, podes hospedar o teu propio servidor."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Se estás intentando cambiar o teu alcume ou enderezo electrónico, faino antes de desactivar a túa conta."
@@ -4996,6 +5034,10 @@ msgstr "Axustes de interacción"
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Por agora só estás ti! Engade máis persoas ao teu paquete inicial buscando arriba."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "Tarefa ID: {0}"
@@ -5122,20 +5164,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Etiquetado por {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Etiquetado pola persoa autora."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Etiquetas"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Etiquetas engadidas"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "Obtén máis información sobre como aloxar o teu PDS."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr ""
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Aprender máis sobre esta advertencia"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Aprender máis."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Deixar"
@@ -5286,7 +5328,7 @@ msgstr "Saír de Bluesky"
msgid "left to go."
msgstr "queda por ir."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Déixame escoller"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr ""
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Gústame en este chío"
@@ -5474,7 +5516,7 @@ msgstr "A listaxe xa non está silenciada"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Listaxes"
@@ -5496,10 +5538,20 @@ msgstr ""
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Cargar máis"
msgid "Load more suggested feeds"
msgstr "Cargar máis canles suxeridas"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Cargar notificacións novas"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo por @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo por <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Fai un para min"
msgid "Make sure this is where you intend to go!"
msgstr "Asegúrate de que este é o lugar onde queres ir!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr ""
@@ -5638,7 +5690,16 @@ msgstr ""
msgid "Media"
msgstr "Multimedia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Medios que poden resultar perturbadores ou inapropiados para algunhas audiencias."
@@ -5653,7 +5714,7 @@ msgstr "persoas mencionadas"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Mencións"
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Filmes"
msgid "Music"
msgstr "Música"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Navega á seguinte pantalla"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Navega ao teu perfil"
@@ -5983,6 +6049,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
@@ -6018,12 +6085,12 @@ msgstr "Novas mensaxes"
msgid "New password"
msgstr "Novo contrasinal"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Novo chío"
@@ -6085,7 +6152,7 @@ msgstr "Noticias"
msgid "Next"
msgstr "Siguinte"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Nova imaxe"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "Sen panel de DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6136,7 +6207,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Aínda sen gústames"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "Xa non segues a {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "Aínda non hai citas."
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Sen resultado"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Sen resultados"
@@ -6238,7 +6309,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr "Non se encontraron resultados de búsqueda para \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "Non, grazas"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr ""
msgid "Not Found"
msgstr "Non se encontrou"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Nota sobre compartir"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Axustes de notificacións"
@@ -6349,10 +6424,10 @@ msgstr "Sons de Notificacións"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Notificacións"
@@ -6368,8 +6443,8 @@ msgstr "agora"
msgid "Now"
msgstr "Agora"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Nudez"
@@ -6390,7 +6465,7 @@ msgstr "Ai, non!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "Ben"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Está ben"
@@ -6417,23 +6492,23 @@ msgstr "en<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Restablecemento da incorporación"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Falta o texto alternativo nunha ou máis imaxes."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Falta o texto alternativo nun ou máis vídeos."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Vaites, algo non furrula ben!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Vaites!"
msgid "Open avatar creator"
msgstr "Abrir o creador de avatares"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "Abrir as opcións de conversa"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Abrir menú lateral"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Abrir o selector de emoji"
@@ -6557,7 +6636,7 @@ msgstr "Abrir registro do sistema."
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Abre unha xanela para engadir unha advertencia de contido á túa publicación"
@@ -6589,25 +6668,25 @@ msgstr "Abre o diálogo de troco do alcume"
msgid "Opens composer"
msgstr "Abrir compositor"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Abre o selector de emojis"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Abrir o fluxo para crear unha nova conta Bluesky"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Abrir o fluxo para iniciar sesión na túa conta Bluesky existente"
@@ -6620,7 +6699,7 @@ msgstr "Abrir a xanela de selección de GIF"
msgid "Opens helpdesk in browser"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "Abrir o formulario de restablecemento do contrasinal"
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Outro"
@@ -6763,13 +6846,13 @@ msgstr "Contrasinal actualizado"
msgid "Password updated!"
msgstr "Contrasinal actualizado!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pausar"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Pausar vídeo"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "Fotografía"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Imaxes pensadas para persoas adultas."
@@ -6874,9 +6957,9 @@ msgstr "Canles fixadas"
msgid "Pinned to your feeds"
msgstr "As túas canles fixadas"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Reproducir"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Reproducir {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Reproducir vídeo"
@@ -6893,11 +6976,11 @@ msgstr "Reproducir vídeo"
msgid "Play Video"
msgstr "Reproducir Vídeo"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Reproduce ou pausa o GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Reproduce ou pausa o vídeo"
@@ -6909,7 +6992,7 @@ msgstr "Reproducir GIF"
msgid "Plays the video"
msgstr "Reproduce o vídeo"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "Política"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornografía"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Chiar"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Chiar"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Publicar todo"
@@ -7217,7 +7300,7 @@ msgstr "Preme para ver as persoas desta conta que tamén segues"
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Imaxe previa"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Política de privacidade"
@@ -7266,7 +7349,11 @@ msgstr "Política de privacidade"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Procesando vídeo..."
@@ -7280,10 +7367,10 @@ msgstr "Procesando..."
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Perfil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr ""
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Citar un chío"
@@ -7385,7 +7473,7 @@ msgstr "Citas deshabilitadas"
msgid "Quotes"
msgstr "Citas"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Citas deste chío"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Ler menos"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Ler máis"
@@ -7720,13 +7808,13 @@ msgstr "Respostas deshabilitadas"
msgid "Replies to this post are disabled."
msgstr "As respostas a este chío están desactivadas."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Responder"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -7892,7 +7980,7 @@ msgstr "Rechouchiado por ti"
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Rechouchíos deste chío"
@@ -7996,14 +8084,14 @@ msgstr "Tenta de novo a última acción, que errou"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Volver á páxina anterior"
msgid "Returns to home page"
msgstr "Volve á páxina de inicio"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Volve á páxina anterior"
@@ -8063,7 +8151,7 @@ msgstr ""
msgid "Save"
msgstr "Gardar"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Gardar"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Gardar cambios"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Gardar nas miñas canles"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "Desprázate cara arriba"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Buscar"
@@ -8164,7 +8269,7 @@ msgstr "Buscar"
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Procurar por nome ou interese"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Procurar canles"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Buscar perfís"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,12 +8388,12 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr "Ver empregos en Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "A que idioma queres traducir os chíos na túa canle."
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Enviar correo"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Enviar comentarios"
@@ -8566,7 +8671,7 @@ msgstr "Establece o correo electrónico para restablecer o contrasinal"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Axustes"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Preferencias gardadas"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Actividade sexual ou nudez erótica."
@@ -8634,7 +8739,7 @@ msgstr "Sexualmente suxestivo"
msgid "Share"
msgstr "Compartir"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Compartir"
@@ -8712,13 +8817,13 @@ msgstr "Comparte as túas canles favoritas!"
msgid "Shared Preferences Tester"
msgstr "Probador de Preferencias Compartidas"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Ver"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Ver texto alternativo"
@@ -8820,7 +8925,7 @@ msgstr "Mostrar advertencia e filtrar desde as canles"
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Amosa información sobre cando foi creada esta publicación"
@@ -8828,8 +8933,8 @@ msgstr "Amosa información sobre cando foi creada esta publicación"
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
@@ -8842,14 +8947,14 @@ msgstr ""
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "É necesario iniciar sesión"
msgid "Signed in as @{0}"
msgstr "Sesión iniciada como @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Contas similares"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "Programación"
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Algunha outra canle poderiache gustar"
@@ -8994,7 +9095,7 @@ msgstr "Algo saíu mal"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Produciuse un erro, téntao de novo"
@@ -9020,7 +9121,7 @@ msgstr ""
msgid "Something wrong? Let us know."
msgstr "Ocorreu un erro? Dínolo."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "Paquetes de inicio"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Os paquetes de inicio permítenche compartir facilmente as túas canles e persoas favoritas coas túas amizades."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "Suscríbete a @{0} para usar estas etiquetas:"
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Suscribirse ao etiquetador"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Suscribirse a este etiquetador"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Suxerido para ti"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Suxestivo"
@@ -9354,8 +9459,8 @@ msgstr "Condicións"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Condicións de servizo"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "Iso é todo, parroquia!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Iso é todo!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "A conta poderá interactuar contigo despois de desbloqueala."
@@ -9447,7 +9552,7 @@ msgstr "A canle de Descubrir"
msgid "The Discover feed now knows what you like"
msgstr "A canle Discover agora sabe o que che gusta"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "A experiencia é mellor na aplicación. Descarga Bluesky agora e retomarémolo onde o deixaches."
@@ -9527,7 +9632,7 @@ msgstr "Tema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Non hai límite de tempo para a desactivación da conta, regresa en calquera momento."
@@ -9711,6 +9816,10 @@ msgstr "Este contido non se pode ver sen unha conta Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Esta conversa é cunha conta eliminada ou desactivada. Preme para ver as opcións"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Esta canle está baleira! É posíbel que teñas que seguir a máis persoas ou axustar a túa configuración de idioma."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Esta canle está baleira."
@@ -9798,7 +9907,7 @@ msgstr "Esta lista está baleira."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Este servizo de moderación non está disponíbel. Consulta máis detalles a continuación. Se o problema persiste, contáctanos."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Esta publicación declara que foi feita en <0>{0}0>, pero foi vista por primeira vez por Bluesky en <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Este chío ocultarase das canles e dos fíos. Isto non se pode desfacer."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "A persoa autora deste chío desactivou os chíos de citas."
@@ -9834,7 +9943,7 @@ msgstr "Esta resposta ordenarase nunha sección oculta na parte inferior do teu
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Este servizo non proporcionou condicións de servizo nin unha política de privacidade."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "Esto eliminará o teu chío desta cita para todas as persoas e substitui
msgid "Thread options"
msgstr "Opcións de fíos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Preferencias de fíos"
@@ -9951,7 +10060,7 @@ msgstr "Hoxe"
msgid "Toggle to enable or disable adult content"
msgstr "Activa ou desactiva o contido para persoas adultas"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr ""
@@ -9988,8 +10097,8 @@ msgstr "Tema"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Traducir"
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Desbloquear"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Desbloquear"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Desbloquear conta"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Desbloquear Conta?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "Desfacer o rechouchío"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Deixa de seguir a {0}"
@@ -10151,7 +10264,7 @@ msgstr "Deixa de seguir a {0}"
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr ""
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "No me gusta"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr ""
msgid "Unmute thread"
msgstr "Activar o fío"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Activar o audio do vídeo"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Cancelar a subscrición"
@@ -10285,7 +10398,7 @@ msgstr "Cancelar a subscrición"
msgid "Unsubscribe from list"
msgstr "Cancelar a subscrición da listaxe"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Cancelar a subscrición a esta etiquetadora"
@@ -10293,7 +10406,7 @@ msgstr "Cancelar a subscrición a esta etiquetadora"
msgid "Unsubscribed from list"
msgstr "Cancelouse a subscrición da listaxe"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "Cargar desde ficheiros"
msgid "Upload from Library"
msgstr "Cargar desde a biblioteca"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Cargando imaxes..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Cargando miniatura da ligazón..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Cargando vídeo..."
@@ -10389,8 +10506,8 @@ msgstr "Usar o provedor predeterminado"
msgid "Use in-app browser"
msgstr "Usar o navegador na aplicación"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Usar o navegador da aplicación para abrir as ligazóns"
@@ -10445,6 +10562,10 @@ msgstr "A persoas bloquéate"
msgid "User list by {0}"
msgstr "Listaxe de persoas por {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Listaxe de persoas por ti"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Vídeo"
@@ -10614,20 +10735,24 @@ msgstr "Canle de vídeo"
msgid "Video from {0}: {text}"
msgstr "Vídeo de {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Videoxogos"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Vídeo en pausa"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Vídeo en reprodución"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Non se encontrou o vídeo."
@@ -10635,11 +10760,11 @@ msgstr "Non se encontrou o vídeo."
msgid "Video settings"
msgstr "Axustes do video"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Vídeo cargado"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Vídeo: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Vídeo: {0}"
msgid "Videos"
msgstr "Vídeos"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Ver o avatar de {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Ver o perfil de {0}"
@@ -10708,7 +10833,7 @@ msgstr "Ver máis"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Temos problemas de rede, téntao de novo"
@@ -10968,7 +11093,7 @@ msgstr "Sentímolo, mais non puidemos cargar as túas palabras silenciadas neste
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Sentímolo, mais a túa busca non se puido completar. Téntao de novo nuns minutos."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Sentímolo! Eliminouse o chío ao que estás respondendo."
@@ -10977,7 +11102,7 @@ msgstr "Sentímolo! Eliminouse o chío ao que estás respondendo."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Sentímolo! Non podemos encontrar a páxina que buscabas."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Sentímolo! Só podes subscribirte a vinte etiquetadoras e alcanzaches o límite de vinte."
@@ -11018,10 +11143,9 @@ msgstr "Cales son os teus intereses?"
msgid "What do you want to call your starter pack?"
msgstr "Como queres chamar ao teu paquete de inicio?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Que hai de novo?"
@@ -11097,6 +11221,14 @@ msgstr "Por que se debería revisar esta persoa?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Escribe unha mensaxe"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Escribe un chío"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Escribe a túa resposta"
@@ -11133,8 +11265,8 @@ msgstr ""
msgid "Yes"
msgstr "Si"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Si, desactivar"
@@ -11188,7 +11320,7 @@ msgstr "Estás en liña."
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11200,7 +11332,7 @@ msgstr "Non tes permiso para cargar vídeos."
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Agora podes iniciar sesión co teu novo contrasinal."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Podes reactivar a túa conta para continuar iniciando sesión. O teu perfil e os chíos serán visíbeis para outras persoas."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "Bloqueaches a esta persoa"
msgid "You have blocked this user. You cannot view their content."
msgstr "Bloqueaches a esta persoa. Non podes ver o seu contido."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Alcanzaches temporalmente o límite de cargas de vídeos. Téntao de novo máis tarde."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Aínda non creaches un paquete de inicio!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Debes seguir polo menos a outras sete persoas para xerar un paquete de inicio."
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "Debes conceder acceso á túa biblioteca de fotos para gardar un código QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Estás en liña"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Iniciaches sesión cun contrasinal da aplicación. Inicia sesión co teu contrasinal principal para continuar desactivando a túa conta."
@@ -11589,7 +11729,7 @@ msgstr "Chegaches ao teu límite diario de carga de vídeos (demasiados bytes po
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Chegaches ao teu límite diario de carga de vídeos (demasiados vídeos por hoxe)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Xa non hai máis vídeos para ver. Igual é bo momento para descansar un anaco?"
@@ -11625,7 +11765,7 @@ msgstr "A túa apelación foi enviada. Se a túa apelación se tiver en conta, e
msgid "Your birth date"
msgstr "A túa data de nacemento"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "O teu navegador non soporta este formato de vídeo. Por favor, proba cun diferente."
@@ -11692,8 +11832,8 @@ msgstr "O teu alcume será <0>@{0}0> "
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr ""
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr "O teu contrasinal debe ter polo menos 8 caracteres."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "O teu perfil, chíos, canles e listaxes non estarán visíbeis para outras persoas de Bluesky. Podes reactivar a túa conta en calquera momento iniciando sesión."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po
index 5e5a9026b6..79921bec33 100644
--- a/src/locale/locales/hi/messages.po
+++ b/src/locale/locales/hi/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: hi\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Hindi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, other {# रीपोस्ट}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, other {# सेकंड}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {फ़ॉलोअर} other {फ़ॉलोअर}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {फ़ॉलोइंग} other {फ़ॉलोइंग}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, other {पसंद}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, other {पसंद}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, other {पोस्ट}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, other {क्वोट}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, other {रीपोस्ट}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr ""
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
@@ -432,7 +436,7 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>और {2, plural, other {# अन्य}} आपके स्टार्टर पैक में शामिल हैं"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {फ़ॉलोअर} other {फ़ॉलोअर}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {फ़ॉलोइंग} other {फ़ॉलोइंग}}"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "आगे बढ्ने के लिए और {0} जोड़ें "
msgid "Add {displayName} to starter pack"
msgstr "स्टार्टर पैक में {displayName} को जोड़ें"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "सामग्री चेतावनी जोड़ें"
@@ -754,11 +763,11 @@ msgstr "विवरण जोड़ें (वैकल्पिक)"
msgid "Add another account"
msgstr "एक और खाता जोड़ें"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "एक और पोस्ट जोड़ें"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "ऐफ पासवर्ड जोड़ें"
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "वयस्क"
@@ -879,10 +888,10 @@ msgstr "वयस्क"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "वयस्क सामग्री"
@@ -894,8 +903,8 @@ msgstr "वयस्क सामग्री को केवल <0>bsky.app0
msgid "Adult content is disabled."
msgstr "वयस्क सामग्री अक्षम है।"
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "वयस्क सामग्री लेबल"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "सभी"
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "@{0} द्वारा पहले से साइन इन किया गया है"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "वैकल्पिक पाठ"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "वैकल्पिक पाठ"
@@ -1059,7 +1068,7 @@ msgstr "{0} को ईमेल भेजा गया है। इसमें
msgid "An error has occurred"
msgstr "त्रुटि हुई"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "त्रुटि हुई"
@@ -1067,7 +1076,7 @@ msgstr "त्रुटि हुई"
msgid "An error occurred while compressing the video."
msgstr "वीडियो कंप्रेशन के दौरान त्रुटि हुई।"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "आपके स्टार्टर पैक बनाने में त्रुटि हुई। फिर से प्रयास करें?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "वीडियो लोड करते समय त्रुटि हुई। बाद में फिर प्रयास करें।"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "वीडियो लोड करते समय में त्रुटि हुई। फिर से प्रयास करें।"
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "प्राणि"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "एनिमेटेड GIF"
@@ -1306,12 +1315,12 @@ msgstr "डिफ़ॉल्ट अनुशंसित फ़ीड लगा
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "{0} से पुरालेखित"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "पुरालेखित पोस्ट"
@@ -1332,11 +1341,11 @@ msgstr "क्या आप सच में इस स्टार्टर प
msgid "Are you sure you want to discard your changes?"
msgstr "क्या आप सच में अपने बदलाव ख़ारिज करना चाहते हैं?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "क्या आप सच में इस बातचीत को छोड़ना चाहते हैं? आपके संदेश आपके लिए मिट जाएँगे, पर दूसरे प्रतिभागी के लिए नहीं।"
@@ -1344,11 +1353,7 @@ msgstr "क्या आप सच में इस बातचीत को
msgid "Are you sure you want to remove this from your feeds?"
msgstr "क्या आप सच में इसे अपने फ़ीड से हटाना चाहते हैं?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "क्या आप सच में इस ड्राफ़्ट को ख़ारिज करना चाहेंगे?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "क्या आप सच में इस पोस्ट को ख़ारिज करना चाहेंगे?"
@@ -1364,7 +1369,7 @@ msgstr ""
msgid "Art"
msgstr "कला"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "कलात्मक या गैर-कामुक नग्नता।"
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "वीडियो और GIF स्वतः चलाएँ"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "वापस"
@@ -1578,7 +1585,7 @@ msgstr "ब्लॉग"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky दावा किए गए तिथि के प्रामाणिकता की पुष्टि नहीं कर सकता।"
@@ -1623,7 +1630,7 @@ msgstr ""
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky आपके नेटवर्क से कुछ अनुशंसित खाते चुनेगा।"
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "एक्सप्लोर पृष्ठ पर और सूची देखें"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "और सुझाव देखें"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "एक्सप्लोर पृष्ठ पर और सुझाव देखें"
@@ -1770,8 +1777,8 @@ msgstr "कैमरा"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "कैमरा"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "खोज रद्द करें"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "अवरुद्ध उपयोगकर्ता से संपर्क नहीं कर सकते"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "बातचीत"
@@ -1989,7 +1996,7 @@ msgstr "डोमेन सत्यापन विधि चुनें"
msgid "Choose Feeds"
msgstr "फ़ीड चुनें"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "मेरे लिए चुनें"
@@ -2096,6 +2103,7 @@ msgstr "ठक 🐴 ठक 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "ठक 🐴 ठक 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "GIF डायलॉग बंद करें"
msgid "Close image"
msgstr "छवि बंद करें"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "छवि बंद करें"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "पासवर्ड अपडेट सूचना बंद करता है"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2242,12 +2251,12 @@ msgstr "समाप्त करें और खाते का उपयो
msgid "Complete the challenge"
msgstr "चुनौती पूरी करें"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "नया पोस्ट बनाएँ"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2264,11 @@ msgstr ""
msgid "Compose reply"
msgstr "जवाब लिखें"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "वीडियो कंप्रेस हो रहा है..."
@@ -2263,7 +2276,6 @@ msgstr "वीडियो कंप्रेस हो रहा है..."
msgid "Configure content filtering setting for category: {name}"
msgstr "{name} श्रेणी के लिए सामग्री फ़िल्टर करने की सेटिंग व्यवस्थित करें"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "<0>मॉडरेशन सेटिंग0> में व्यवस्थित।"
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "सामाग्री और मीडिया"
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "सामग्री चेतावनी"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "सामग्री चेतावनियाँ"
@@ -2401,7 +2413,7 @@ msgstr "संदर्भ मेनू पृष्ठभूमि, मेन
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "जारी रखें"
@@ -2420,7 +2432,7 @@ msgstr "थ्रेड को जारी रखें..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "बातचीत छोड़ी नहीं जा सकी"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "फ़ीड लोड नहीं किया जा सका"
@@ -2643,8 +2655,8 @@ msgstr "स्टार्टर पैक के लिए QR कोड बन
msgid "Create a starter pack"
msgstr "स्टार्टर पैक बनाएँ"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "मेरे लिए स्टार्टर पैक बनाए
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "एक और बनाएँ"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "नया खाता बनाएँ"
@@ -2772,7 +2784,7 @@ msgstr "जन्मतिथि"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "खाता निष्क्रिय करें"
@@ -2871,7 +2883,7 @@ msgstr "मेरा खाता मिटाएँ"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "पोस्ट मिटाएँ"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "उपशीर्षक अक्षम करें"
@@ -2996,8 +3008,11 @@ msgstr "अक्षम"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "ख़ारिज करें"
@@ -3006,11 +3021,12 @@ msgstr "ख़ारिज करें"
msgid "Discard changes?"
msgstr "बदलाव ख़ारिज करें?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "ड्राफ़्ट ख़ारिज करें?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "पोस्ट ख़ारिज करें?"
@@ -3037,7 +3053,7 @@ msgstr "ख़ारिज करें"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "त्रुटि ख़ारिज करें"
@@ -3049,11 +3065,16 @@ msgstr "शुरुआती गाइड ख़ारिज करें"
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr ""
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr "डायलॉग बंद करने के लिए दो बार दबाएँ"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Bluesky डाउनलोड करें"
@@ -3164,6 +3185,13 @@ msgstr "CAR फ़ाइल डाउनलोड करें "
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "छवि जोड़ने के लिए उतारें"
@@ -3285,13 +3313,13 @@ msgstr "पोस्ट संपर्क सेटिंग संपादि
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "मेरी प्रोफ़ाइल संपादित करें"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "मेरी प्रोफ़ाइल संपादित करें"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "उपशीर्षक सक्षम करें"
@@ -3421,13 +3449,13 @@ msgstr "उपशीर्षक सक्षम करें"
msgid "Enable this source only"
msgstr "केवल इस सूत्र को सक्षम करें"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "रुझान सक्षम करें"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr ""
@@ -3464,7 +3492,7 @@ msgstr "शब्द या टैग दर्ज करें"
msgid "Enter code"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "फ़ुलस्क्रीन में जाएँ"
@@ -3501,7 +3529,7 @@ msgstr ""
msgid "Enter your username and password"
msgstr "अपने उपयोगकर्ता नाम और पासवर्ड दर्ज करें"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr ""
@@ -3509,7 +3537,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "त्रुटि"
@@ -3570,7 +3598,7 @@ msgstr "आपके फ़ॉलो किए गए उपयोगकर्
msgid "Excludes users you follow"
msgstr "आपके फ़ॉलो किए गए उपयोगकर्ताओं के अलावा सब पर लागू होता है"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "फ़ुलस्क्रीन से निकलें"
@@ -3578,11 +3606,7 @@ msgstr "फ़ुलस्क्रीन से निकलें"
msgid "Exits account deletion process"
msgstr "खाता मिटाने की प्रक्रिया से निकलता है"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "छवि दर्शन से निकलता है"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "वैकल्पिक पाठ बढ़ाता है"
@@ -3598,11 +3622,11 @@ msgstr "जिस पोस्ट का जवाब दे रहे हैं
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "URI के रिकॉर्ड पर रिसॉल्व होने की अपेक्षा थी"
@@ -3639,7 +3663,7 @@ msgstr "अश्लील यौन छवि"
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
@@ -3657,8 +3681,8 @@ msgstr "मेरा डेटा निर्यात करें"
msgid "Export My Data"
msgstr "मेरा डेटा निर्यात करें"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "बाहरी मीडिया"
@@ -3730,7 +3754,7 @@ msgstr "पोस्ट मिटाने में असफल, फिर स
msgid "Failed to delete starter pack"
msgstr "स्टार्टर पैक मिटाने में असफल"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "फ़ीड"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "{0} द्वारा फ़ीड"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "प्रतिक्रिया"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "फ़ीड"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr "अंतिम रूप दिया जा रहा"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "फ़ॉलो करने के लिए लोग खोजें"
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "फ़ॉलो करें"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "{0} को फ़ॉलो करें"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr ""
@@ -4133,7 +4166,7 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr ""
msgid "Follow all"
msgstr "सभी को फ़ॉलो करें"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "वापस फ़ॉलो करें"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "फ़ॉलोअर जिन्हें आप जानते ह
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "फ़ॉलोइंग"
msgid "Following {0}"
msgstr "{0} को फ़ॉलो करते हैं"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "फ़ॉलोइंग फ़ीड प्राथमिकताएँ"
@@ -4264,7 +4297,7 @@ msgstr "सुरक्षा कारणों से, आप इसे फि
msgid "For the best experience, we recommend using the theme font."
msgstr "बहतरीन अनुभव के लिए, हम थीम फ़ॉन्ट का उपयोग करने की सलाह देते हैं।"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "<0/> से"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "स्टार्टर पाक उत्पन्न करें"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "सहायता लें"
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "अपने प्रोफ़ाइल को एक चेहरा दें"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "वापस जाएँ"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "भयानक मीडिया"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "सहायता"
@@ -4632,9 +4670,9 @@ msgstr "छिपाई गई सूची"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "उपयोगकर्ता सूची छुपाएँ"
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr ""
@@ -4760,9 +4798,9 @@ msgstr "कृपया रुकिए। हम धीरे-धीरे व
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "होम फ़ीड"
@@ -4819,7 +4857,7 @@ msgstr "मैं समझा"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "यदि वैकल्पिक पाठ लंबा है, बड़े आकार का वैकल्पिक पाठ लागू कर्ता है"
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "यदि आप अपना हैंडल या ईमेल बदलने का प्रयास कर रहे हैं, ऐसा निष्क्रिय करने से पहले करें।"
@@ -4996,6 +5034,10 @@ msgstr ""
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "अभी इसमें बस आप ही हैं! ऊपर खोजकर अपने स्टार्टर पैक में और लोगों को जोड़ें।"
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "काम आईडी: {0}"
@@ -5122,20 +5164,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "{0} द्वारा लेबल किया गया।"
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "रचयिता द्वारा लेबल किया गया।"
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "लेबल"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "लेबल जोड़े गए"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "PDS को ख़ुद होस्ट करने के बारे में अधिक जानें।"
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr ""
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "इस चेतावनी के बारे में अधिक जानें"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "अधिक जानें।"
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "निकलें"
@@ -5286,7 +5328,7 @@ msgstr "Bluesky से बाहर जा रहे हैं"
msgid "left to go."
msgstr "बाक़ी"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "मुझे चुनने दें।"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "पसंद"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "पसंद करें ({0, plural, one {# पसंद} other {# पसंद}})"
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "इस पोस्ट पर पसंद"
@@ -5474,7 +5516,7 @@ msgstr "सूची अनम्यूट की गई"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "सूची"
@@ -5496,10 +5538,20 @@ msgstr ""
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "और लोड करें"
msgid "Load more suggested feeds"
msgstr "और अनुशंसित फ़ीड लोड करें"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "नई अधिसूचनाएँ लोड करें"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "@sawaratsuki.bsky.social द्वारा लोगो"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "<0>@sawaratsuki.bsky.social0> द्वारा लोगो"
@@ -5600,8 +5652,8 @@ msgstr "मेरे लिए एक बनाएँ"
msgid "Make sure this is where you intend to go!"
msgstr "यह सुनिश्चित करें कि आप यहाँ जाना चाहते हैं!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "सहेजे गए फ़ीड प्रबंधित करें"
@@ -5638,7 +5690,16 @@ msgstr ""
msgid "Media"
msgstr "मीडिया"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "मीडिया जो कुछ दर्शकों के लिए भयावह या अनुचित हो सकता है"
@@ -5653,7 +5714,7 @@ msgstr "उल्लेखित उपयोगकर्ता"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "उल्लेख"
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "सिनेमा"
msgid "Music"
msgstr "संगीत"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "अगले स्क्रीन पर जाता है"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "आपके प्रोफ़ाइल पर जाता है"
@@ -5983,6 +6049,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
@@ -6018,12 +6085,12 @@ msgstr "नए संदेश"
msgid "New password"
msgstr "नया पासवर्ड"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "नया पोस्ट"
@@ -6085,7 +6152,7 @@ msgstr "समाचार"
msgid "Next"
msgstr "अगला"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "अगली छवि"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "कोई DNS पैनल नहीं"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6136,7 +6207,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "अभी तक कोई पसंद नहीं"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "{0} को और फ़ॉलो नहीं कर रहे"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "कोई क्वोट नहीं"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "कोई परिणाम नहीं"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "कोई परिणाम नहीं"
@@ -6238,7 +6309,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr "\"{search}\" के लिए कोई परिणाम नहीं मिला।"
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "नहीं धन्यवाद"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr ""
msgid "Not Found"
msgstr "नहीं मिला"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "साझा करने के बारे में"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "अधिसूचना सेटिंग"
@@ -6349,10 +6424,10 @@ msgstr "अधिसूचना ध्वनि"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "अधिसूचनाएँ"
@@ -6368,8 +6443,8 @@ msgstr "अभी"
msgid "Now"
msgstr "अभी"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "नग्नता"
@@ -6390,7 +6465,7 @@ msgstr "अरे नहीं!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "ठीक"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "ठीक है"
@@ -6417,23 +6492,23 @@ msgstr "<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "ज्ञानप्राप्ति रीसेट"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "एक या अधिक GIF के विवरण नहीं हैं।"
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "एक या अधिक छवियों पर वैकल्पिक पाठ नहीं है।"
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "एक या अधिक वीडियो के विवरण नहीं हैं।"
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "अरे, कोई गड़बड़ हुई!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "अरे!"
msgid "Open avatar creator"
msgstr "अवतार निर्माता खोलें"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "बातचीत विकल्प खोलें"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "ड्रॉअर मेनू खोलें"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "इमोजी चयन खोलें"
@@ -6557,7 +6636,7 @@ msgstr "सिस्टम लॉग खोलें"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "आपके पोस्ट पर सामग्री चेतावनी जोड़ने का डायलॉग खोलता है।"
@@ -6589,25 +6668,25 @@ msgstr ""
msgid "Opens composer"
msgstr "रचयिता खोलता है"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "नया Bluesky खाता बनाने का साधन खोलता है"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "अपने मौजूदा Bluesky खाते में साइन इन करने का साधन खोलता है"
@@ -6620,7 +6699,7 @@ msgstr "GIF चयन डायलॉग खोलता है"
msgid "Opens helpdesk in browser"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "पासवर्ड रीसेट फ़ॉर्म खोलें"
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "अन्य"
@@ -6763,13 +6846,13 @@ msgstr "पासवर्ड अपडेट किया गया"
msgid "Password updated!"
msgstr "पासवर्ड अपडेट किया गया!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "रोकें"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "वीडियो रोकें"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "फ़ोटोग्राफ़ी"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "वयस्कों के लिए छवि।"
@@ -6874,9 +6957,9 @@ msgstr "पिन किए गए फ़ीड"
msgid "Pinned to your feeds"
msgstr "आपके फ़ीड में पिन किया गया"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "चलाएँ"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "{0} चलाएँ"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "वीडियो चलाएँ"
@@ -6893,11 +6976,11 @@ msgstr "वीडियो चलाएँ"
msgid "Play Video"
msgstr "वीडियो चलाएँ"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr ""
@@ -6909,7 +6992,7 @@ msgstr "GIF चलाता है"
msgid "Plays the video"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "राजनीति"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "अश्लील"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "पोस्ट करें"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "पोस्ट करें"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "सभी पोस्ट करें"
@@ -7217,7 +7300,7 @@ msgstr "इस खाते के फ़ॉलोअर देखने के
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "पिछली छवि"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "गोपनीयता नीति"
@@ -7266,7 +7349,11 @@ msgstr "गोपनीयता नीति"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "वीडियो प्रसंस्करण हो रहा है..."
@@ -7280,10 +7367,10 @@ msgstr "प्रसंस्करण हो रहा है..."
msgid "profile"
msgstr "प्रोफ़ाइल"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "प्रोफ़ाइल"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "उपयोगकर्ताओं की सार्वजनिक, साझा योग्य सूचियाँ जिन्हें एक साथ म्यूट या अवरुद्ध किया जा सकता है।"
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "क्वोट पोस्ट करें"
@@ -7385,7 +7473,7 @@ msgstr "क्वोट पोस्ट अक्षम किए गए"
msgid "Quotes"
msgstr "क्वोट"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "इस पोस्ट के क्वोट"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr ""
@@ -7720,13 +7808,13 @@ msgstr "जवाब अक्षम"
msgid "Replies to this post are disabled."
msgstr "इस पोस्ट पर जवाब अक्षम है"
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "जवाब दें"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "जवाब दें ({0, plural, one {# जवाब} other {# जवाब}})"
@@ -7892,7 +7980,7 @@ msgstr "आपने रीपोस्ट किया"
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "इस पोस्ट के रीपोस्ट"
@@ -7996,14 +8084,14 @@ msgstr "पिछली क्रिया का फिर से प्रय
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "पिछले पृष्ठ पर वापस जाएँ"
msgid "Returns to home page"
msgstr "होम पृष्ठ पर वापस जाता है"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "पिछले पृष्ठ पर वापस जाता है"
@@ -8063,7 +8151,7 @@ msgstr ""
msgid "Save"
msgstr "सहेजें"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "सहेजें"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "बदलाव सहेजें"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "मेरे फ़ीड में सहेजें"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "ऊपर जाएँ"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "खोजें"
@@ -8164,7 +8269,7 @@ msgstr "खोजें"
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "नाम या दिलचस्पी से खोजें"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "फ़ीड खोजें"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "प्रोफ़ाइल खोजें"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,12 +8388,12 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr "Bluesky में नौकरियाँ देखें"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "अपने फ़ीड में अनुवाद के लिए
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "ईमेल भेजें"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "प्रतिक्रिया भेजें"
@@ -8566,7 +8671,7 @@ msgstr "पासवर्ड रीसेट करने के लिए ई
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "सेटिंग"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "यौन गतिविधि या कामुक नग्नता।"
@@ -8634,7 +8739,7 @@ msgstr "यौन रूप से भड़काऊ"
msgid "Share"
msgstr "साझा करें"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "साझा करें"
@@ -8712,13 +8817,13 @@ msgstr "अपना पसंदीदा फ़ीड साझा करें"
msgid "Shared Preferences Tester"
msgstr "साझा की गई प्राथमिकताओं का परीक्षक"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "दिखाएँ"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "वैकल्पिक पाठ दिखाएँ"
@@ -8820,7 +8925,7 @@ msgstr "चेतावनी दिखाएँ और फ़ीड से फ़ि
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr ""
@@ -8828,8 +8933,8 @@ msgstr ""
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
@@ -8842,14 +8947,14 @@ msgstr ""
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "साइन इन आवश्यक"
msgid "Signed in as @{0}"
msgstr "@{0} कए रूप में साइन इन किया गया है"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "एक जैसे खाते"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "सॉफ़्टवेयर डेवलपर"
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "कुछ अन्य फ़ीड जो आपको शायद पसंद आएँ"
@@ -8994,7 +9095,7 @@ msgstr "कोई गड़बड़ हुई"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "कोई गड़बड़ हुई, फिर प्रयास करें"
@@ -9020,7 +9121,7 @@ msgstr ""
msgid "Something wrong? Let us know."
msgstr "कुछ गड़बड़ है? हमें बताएँ।"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "स्टार्टर पैक"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "स्टार्टर पैक आपको अपने पसंदीदा फ़ीड और लोगों को अपने दोस्तों के साथ आसानी से साझा करने देते हैं"
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "इन लेबलों का उपयोग करने के ल
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "लेबलकर्ता की सदस्यता लें"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "इस लेबलकर्ता की सदस्यता लें"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "आपके लिए सुझाव"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "भड़काऊ"
@@ -9354,8 +9459,8 @@ msgstr "शर्तें"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "सेवा की शर्तें"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "बस इतना ही, दोस्तों!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "अनअवरुद्ध करने के बाद खाता आपसे संपर्क कर सकेगा।"
@@ -9447,7 +9552,7 @@ msgstr "डिस्कवर फ़ीड"
msgid "The Discover feed now knows what you like"
msgstr "अब डिस्कवर फ़ीड को पता है कि आपको क्या पसंद है"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "यह अनुभव ऐप में बेहतर है। अभी Bluesky डाउनलोड करें और हम ठीक यहीं से जारी रखेंगे।"
@@ -9527,7 +9632,7 @@ msgstr "थीम"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "खाता निष्क्रियण पर कोई समय सीमा नहीं है, कभी भी वापस आएँ।"
@@ -9711,6 +9816,10 @@ msgstr "यह सामग्री Bluesky खाते के बिना
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "यह फ़ीड खाली है! आपको अधिक उपयोगकर्ताओं को फ़ॉलो करना पड़ेगा या अपने भाषा सेटिंग को बदलना पड़ेगा।"
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "यह फ़ीड खाली है।"
@@ -9798,7 +9907,7 @@ msgstr "यह सूची खाली है।"
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "यह मॉडरेशन सेवा अनुपलब्ध है। अधिक जानकारी के लिए नीचे देखें। यदि यहा समस्या बनी रहती है, हमसे संपर्क करें।"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "यह पोस्ट <0>{0}0> को बनने का दावा करता है, पर इसे Bluesky पर सबसे पहले <1>{1}1> को देखा गया।"
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "इस पोस्ट को फ़ीड और थ्रेड से छिपा दिया जाएगा। इसे पूर्ववत नहीं किया जा सकता।"
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "इस पोस्ट के लेखक ने क्वोट पोस्ट अक्षम किए हैं।"
@@ -9834,7 +9943,7 @@ msgstr "इस जवाब को आपके थ्रेड के नीच
msgid "This service has not provided terms of service or a privacy policy."
msgstr "इस सेवा ने कोई सेवा की शर्तें या गोपनियता नीति नहीं दी है।"
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "यह आपके पोस्ट को इस क्वोट पो
msgid "Thread options"
msgstr "थ्रेड विकल्प"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "थ्रेड प्राथमिकताएँ"
@@ -9951,7 +10060,7 @@ msgstr "आज"
msgid "Toggle to enable or disable adult content"
msgstr "वयस्क सामग्री सक्षम या अक्षम करने के लिए टॉगल करें"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr ""
@@ -9988,8 +10097,8 @@ msgstr "विषय"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "अनुवाद करें"
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "अनअवरुद्ध करें"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "अनअवरुद्ध करें"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "खाता अनअवरुद्ध करें"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "खाता अनअवरुद्ध करें?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "रीपोस्ट पूर्ववत करें"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "रीपोस्ट पूर्ववत करें ({0, plural, one {# रीपोस्ट} other {# रीपोस्ट}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "{0} को अनफ़ॉलो करें"
@@ -10151,7 +10264,7 @@ msgstr "{0} को अनफ़ॉलो करें"
msgid "Unfollow account"
msgstr "खाता अनफ़ॉलो करें"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr ""
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "नापसंद करें"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "नापसंद करें ({0, plural, one {# पसंद} other {# पसंद}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr ""
msgid "Unmute thread"
msgstr "थ्रेड अनम्यूट करें"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "वीडियो अनम्यूट करें"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "सदस्यता छोड़ें"
@@ -10285,7 +10398,7 @@ msgstr "सदस्यता छोड़ें"
msgid "Unsubscribe from list"
msgstr "सूची की सदस्यता छोड़ें"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "इस लेबलकर्ता की सदस्यता छोड़ें"
@@ -10293,7 +10406,7 @@ msgstr "इस लेबलकर्ता की सदस्यता छो
msgid "Unsubscribed from list"
msgstr "सूची की सदस्यता छोड़ी गई"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "फ़ाइलों से अपलोड करें"
msgid "Upload from Library"
msgstr "लाइब्रेरी से अपलोड करें"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "छवि अपलोड हो रहा है..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "लिंक थंबनेल अपलोड हो रहा है..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "वीडियो अपलोड हो रहा है..."
@@ -10389,8 +10506,8 @@ msgstr "डिफ़ॉल्ट प्रदाता का उपयोग
msgid "Use in-app browser"
msgstr "ऐप-आंतरिक ब्राउज़र का उपयोग करें"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "लिंक खोलने के लिए ऐप-आंतरिक ब्राउज़र का उपयोग करें"
@@ -10445,6 +10562,10 @@ msgstr "उपयोगकर्ता आपको अवरुद्ध कर
msgid "User list by {0}"
msgstr "{0} द्वारा उपयोगकर्ता सूची"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "आपके द्वारा उपयोगकर्ता सूची"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "वीडियो"
@@ -10614,20 +10735,24 @@ msgstr ""
msgid "Video from {0}: {text}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "वीडियो गेम"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "वीडियो नहीं मिला"
@@ -10635,11 +10760,11 @@ msgstr "वीडियो नहीं मिला"
msgid "Video settings"
msgstr "वीडियो सेटिंग"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "वीडियो अपलोड किया गया"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "वीडियो: {0}"
@@ -10647,23 +10772,23 @@ msgstr "वीडियो: {0}"
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "{0} का अवतार देखें"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "{0} का प्रोफ़ाइल देखें"
@@ -10708,7 +10833,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "हमें नेटवर्क समस्याएँ हो रही हैं, फिर प्रयास करें।"
@@ -10968,7 +11093,7 @@ msgstr "हमें क्षमा करें, पर हम अभी आ
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "हमें क्षमा करें, पर आपका खोज पूरा नहीं किया जा सके। कृपया कुछ मिनट बाद फिर प्रयास करें।"
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "हमें क्षमा करें! आप जिस पोस्ट को जवाब दे रहे हैं उसे मिटा दिया गया है।"
@@ -10977,7 +11102,7 @@ msgstr "हमें क्षमा करें! आप जिस पोस्
msgid "We're sorry! We can't find the page you were looking for."
msgstr "हमें क्षमा करें! हमें वह पृष्ठ नहीं मिल रहा जिसे आप ढूँढ रहे थे।"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "हमें क्षमा करें! आप केवल बीस लेबलकर्ताओं की सदस्यता ले सकते हैं, और आप बीस की सीमा तक पहुँच गए हैं।"
@@ -11018,10 +11143,9 @@ msgstr "आपकी क्या दिलचस्पियाँ हैं?"
msgid "What do you want to call your starter pack?"
msgstr "आप अपने स्टार्टर पैक को क्या नाम देना चाहते हैं?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "क्या चल रहा है?"
@@ -11097,6 +11221,14 @@ msgstr "इस उपयोगकर्ता की समीक्षा क
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "संदेश लिखें"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "पोस्ट लिखें"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "अपना जवाब दें"
@@ -11133,8 +11265,8 @@ msgstr ""
msgid "Yes"
msgstr "हाँ"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "हाँ, निष्क्रिय करें"
@@ -11188,7 +11320,7 @@ msgstr "आप पंक्ति में हैं"
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11200,7 +11332,7 @@ msgstr "आपको वीडियो अपलोड करने की अ
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "अब आप अपने नए पासवर्ड के साथ साइन इन कर सकते हैं।"
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "आप लॉग इन जारी रखने के लिए अपना खाता फिर से सक्रिय कर सकते हैं। आपके प्रोफ़ाइल और पोस्ट अन्य उपयोगकर्ताओं को "
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "आपने इस उपयोगकर्ता को अवरु
msgid "You have blocked this user. You cannot view their content."
msgstr "आपने इस उपयोगकर्ता को अवरुद्ध किया है। आप उनकी सामग्री नहीं देख सकते।"
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "आप अस्थायी रूप से वीडियो अपलोड की सीमा तक पहुँच गए हैं। कृपया बाद मे फिर प्रयास करें।"
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "आपने अभी तक कोई स्टार्टर पैक नहीं बनाई है!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "स्टार्टर पैक उत्पन्न करने के लिए आपको कम से कम सात अन्य लोगों को फ़ॉलो करना होगा।"
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "QR कोड सहेजने के लिए आपको फ़ोटो लाइब्रेरी तक पहुँच देनी पड़ेगी।"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "आप पंक्ति में हैं"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -11589,7 +11729,7 @@ msgstr "आप वीडियो अपलोड करने की दैन
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "आप वीडियो अपलोड करने की दैनिक सीमा तक पहुँच गए (अत्यधिक वीडियो)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
@@ -11625,7 +11765,7 @@ msgstr ""
msgid "Your birth date"
msgstr "आपकी जन्मतिथि"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "आपका ब्राउज़र वीडियो के प्रकार का समर्थन नहीं करता। कृपया कोई नया ब्राउज़र आज़माएँ।"
@@ -11692,8 +11832,8 @@ msgstr "आपका पूरा हैंडल <0>@{0}0> होगा"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr ""
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "आपके प्रोफ़ाइल, पोस्ट, फ़ीड और सूचियाँ अन्य Bluesky उपयोगकर्ताओं को और नहीं दिखेंगे। आप लॉग इन करके अपने खाते को फिर से सक्रिय कर सकते हैं।"
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/hu/messages.po b/src/locale/locales/hu/messages.po
index 0628dc0b95..b7c535311f 100644
--- a/src/locale/locales/hu/messages.po
+++ b/src/locale/locales/hu/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: hu\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# megosztás} other {# megosztás}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# másodperce} other {# másodperce}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# olvasatlan} other {# olvasatlan}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# olvasatlan} other {# olvasatlan}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# hónapja} other {# hónapja}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, other {# további bejegyzés}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {követő} other {követő}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {követett} other {követett}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {kedvelés} other {kedvelés}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {kedvelés} other {kedvelés}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {bejegyzés} other {bejegyzés}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {idézés} other {idézés}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {megosztás} other {megosztás}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, other {mentés}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (fiók)"
@@ -189,11 +193,11 @@ msgstr "{0} {1} emojival reagált"
msgid "{0} reacted {1} to {2}"
msgstr "{0} {1} emojival reagált erre: {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0} – szerző: {1}; {2} kedveli"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0} – szerző: {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {#}} felhasználó csatlakozott ezzel
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# perc} other {# perc}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# olvasatlan értesítés} other {# olvasatlan értesítés}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1} 1>és {2, plural, one {#} other {#}} további személy szerepel a kezdőcsomagodban"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {követő} other {követő}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {követett} other {követett}}"
@@ -580,6 +584,11 @@ msgstr "Bejegyzés egy új gomb társaságában, amely lehetővé teszi egy adot
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Képernyőkép egy felhasználói profilról, amelyen egy harang ikon látható a Követés gomb mellett. Ez az új, tevékenységértesítési funkciót ábrázolja."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "A folytatáshoz még {0} fiókot kell felvenned"
msgid "Add {displayName} to starter pack"
msgstr "{displayName} felvétele egy kezdőcsomagba"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Tartalomfigyelmeztetés felvétele"
@@ -754,11 +763,11 @@ msgstr "Helyettesítő szöveg hozzáadása (nem kötelező)"
msgid "Add another account"
msgstr "Fiók felvétele a listára"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Válaszlánc folytatása"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Válaszlánc bővítése"
@@ -776,12 +785,12 @@ msgstr "Alkalmazásjelszó létrehozása"
msgid "Add emoji reaction"
msgstr "Emoji-reakció hozzáfűzése"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Kép csatolása"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Médiatartalom csatolása a bejegyzéshez"
@@ -871,7 +880,7 @@ msgstr "További részletek (legfeljebb 1000 karakter)"
msgid "Additional details (limit 300 characters)"
msgstr "További részletek (legfeljebb 300 karakter)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Pornó"
@@ -879,10 +888,10 @@ msgstr "Pornó"
msgid "Adult content"
msgstr "Felnőtt tartalom"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Felnőtt tartalom"
@@ -894,8 +903,8 @@ msgstr "A felnőtt tartalmakat csak böngészőből, a <0>bsky.app0> honlapon
msgid "Adult content is disabled."
msgstr "A felnőtt tartalmak le vannak tiltva."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Felnőtt tartalmi feljegyzések"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "janos@pelda.hu"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Mind"
@@ -1017,7 +1026,7 @@ msgstr "Már van fiókod?"
msgid "Already signed in as @{0}"
msgstr "Már bejelentkeztél, mint @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "HLYT"
msgid "Alt text"
msgstr "Helyettesítő szöveg"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Helyettesítő szöveg"
@@ -1059,7 +1068,7 @@ msgstr "Küldtünk egy e-mailt a(z) {0} címre. Ez a levél egy ellenőrzőkódo
msgid "An error has occurred"
msgstr "Hiba történt"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Hiba történt"
@@ -1067,7 +1076,7 @@ msgstr "Hiba történt"
msgid "An error occurred while compressing the video."
msgstr "A videó tömörítése meghiúsult."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "Hiba történt a javasolt fiókok lekérése közben."
@@ -1076,7 +1085,7 @@ msgstr "Hiba történt a javasolt fiókok lekérése közben."
msgid "An error occurred while fetching the feed."
msgstr "A hírfolyam lekérdezése meghiúsult."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "A kezdőcsomag létrehozása meghiúsult. Szeretnéd újra megpróbálni?"
@@ -1088,7 +1097,7 @@ msgstr "Hiba történt a javaslat elrejtése közben. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "A videó betöltése meghiúsult. Próbáld újra később."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "A videó betöltése meghiúsult. Próbáld újra."
@@ -1181,7 +1190,7 @@ msgstr "Állatkínzás"
msgid "Animals"
msgstr "Állatok"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "Animált GIF"
@@ -1306,12 +1315,12 @@ msgstr "Ajánlott hírfolyamok elfogadása"
msgid "Apply Pull Request"
msgstr "Lekéréses kérelem alkalmazása"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Archiválás dátuma: {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Archivált bejegyzés"
@@ -1332,11 +1341,11 @@ msgstr "Biztosan törölni akarod ezt a kezdőcsomagot?"
msgid "Are you sure you want to discard your changes?"
msgstr "Biztosan el akarod vetni a változtatásokat?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Biztosan el akarod hagyni ezt a beszélgetést?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Biztosan el akarod hagyni ezt a csevegést? Már nem fogsz tudni hozzáférni az üzeneteidhez, a másik fél viszont igen."
@@ -1344,11 +1353,7 @@ msgstr "Biztosan el akarod hagyni ezt a csevegést? Már nem fogsz tudni hozzáf
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Biztosan el akarod távolítani ezt a hírfolyamgyűjteményedből?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Biztosan el akarod vetni ezt a piszkozatot?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Biztosan el akarod vetni ezt a bejegyzést?"
@@ -1364,7 +1369,7 @@ msgstr "Jelenleg <0>{suggestedLanguageName}0> nyelven írsz?"
msgid "Art"
msgstr "Művészet"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Művészi- vagy nem erotikus meztelenség"
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Sarki Fény"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Videók és GIF-ek automatikus lejátszása"
@@ -1404,11 +1409,13 @@ msgstr "Elérhető"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Vissza"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "A Bluesky nem tudja megerősíteni a létrehozás dátumát."
@@ -1623,7 +1630,7 @@ msgstr "A Bluesky felhasználási feltételei"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "A Bluesky titkosítva tárolja a névjegyeidet. Ha törölsz egy névjegyet, akkor a Bluesky ugyancsak azonnal törli azt."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "A Bluesky egy javasolt felhasználócsoportot fog kijelölni a hálózatodon."
@@ -1664,20 +1671,20 @@ msgstr "A Bluesky szabályzatának megszegése"
msgid "Browse custom feeds"
msgstr "Egyéni hírfolyamok böngészése"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "További fiókok böngészése"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "További hírfolyamokat a Felfedezés oldalon találsz"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "További javaslatok"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "További javaslatokat a Felfedezés oldalon találsz"
@@ -1770,8 +1777,8 @@ msgstr "Kamera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Keresés megszakítása"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Egy letiltott felhasználóval nem léphetsz kapcsolatba"
@@ -1901,9 +1908,9 @@ msgstr "Változtatások elmentve"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Csevegés"
@@ -1989,7 +1996,7 @@ msgstr "Tartományhitelesítési módszer"
msgid "Choose Feeds"
msgstr "Hírfolyamok böngészése"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Létrehozás automatikusan"
@@ -2096,6 +2103,7 @@ msgstr "Kipp 🐴 kopp 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Kipp 🐴 kopp 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,7 +2176,8 @@ msgstr "GIF-párbeszédablak bezárása"
msgid "Close image"
msgstr "Kép bezárása"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr "Képnézegető bezárása"
@@ -2190,7 +2199,7 @@ msgstr "Köszöntő-párbeszédablak bezárása"
msgid "Closes password update alert"
msgstr "Jelszófrissítési figyelmeztetés bezárása"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "A bejegyzésíró bezárása és a piszkozat elvetése"
@@ -2242,12 +2251,12 @@ msgstr "Regisztrációs varázsló befejezése és a Bluesky használatának meg
msgid "Complete the challenge"
msgstr "Biztonsági kihívás"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Új bejegyzés írása"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Egy bejegyzés legfeljebb {0, plural, other{#}} karakter hosszú lehet"
@@ -2255,7 +2264,11 @@ msgstr "Egy bejegyzés legfeljebb {0, plural, other{#}} karakter hosszú lehet"
msgid "Compose reply"
msgstr "Válaszírás"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Videó tömörítése folyamatban…"
@@ -2263,17 +2276,16 @@ msgstr "Videó tömörítése folyamatban…"
msgid "Configure content filtering setting for category: {name}"
msgstr "A(z) „{name}” tartalomkategória szűrési beállításai"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
-msgstr "Élő adásos reklámcsík testreszabása"
+msgstr "Élőeseményes reklámcsík testreszabása"
#: src/components/moderation/LabelPreference.tsx:253
msgid "Configured in <0>moderation settings0>."
msgstr "A <0>moderálási beállításokban0> módosítható."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "Névjegyek importálva"
msgid "Contacts removed"
msgstr "Névjegyek eltávolítva"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Tartalom és média"
@@ -2389,7 +2401,7 @@ msgstr "Önkárosítás ábrázolása vagy népszerűsítése"
msgid "Content Warning"
msgstr "Tartalomfigyelmeztetés"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Tartalomfigyelmeztetések"
@@ -2401,7 +2413,7 @@ msgstr "A környezetérzékeny menü háttere. Kattints ide a menü bezárásáh
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Folytatás"
@@ -2420,7 +2432,7 @@ msgstr "Válaszlánc folytatása…"
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "Az ismerőseid követése meghiúsult. {0}"
msgid "Could not leave chat"
msgstr "A csevegés elhagyása meghiúsult"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "A hírfolyam betöltése meghiúsult"
@@ -2643,8 +2655,8 @@ msgstr "QR-kód létrehozása egy kezdőcsomaghoz"
msgid "Create a starter pack"
msgstr "Kezdőcsomag létrehozása"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Kezdőcsomag létrehozása"
@@ -2654,12 +2666,12 @@ msgstr "Automatikus létrehozás"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Másik létrehozása"
msgid "Create moderation list"
msgstr "Moderálólista létrehozása"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Regisztráció"
@@ -2772,7 +2784,7 @@ msgstr "Születési dátum"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Fiók deaktiválása"
@@ -2871,7 +2883,7 @@ msgstr "Fiók törlése"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Bejegyzés törlése"
@@ -2981,7 +2993,7 @@ msgstr "A bejegyzés idézésének letiltása"
msgid "Disable replies entirely"
msgstr "Válaszadás letiltása"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Feliratok letiltása"
@@ -2996,8 +3008,11 @@ msgstr "Letiltva"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Elvetés"
@@ -3006,11 +3021,12 @@ msgstr "Elvetés"
msgid "Discard changes?"
msgstr "Változtatások elvetése"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Piszkozat elvetése"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Bejegyzés elvetése"
@@ -3037,7 +3053,7 @@ msgstr "Bezárás"
msgid "Dismiss banner"
msgstr "Reklámcsík bezárása"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Hiba bezárása"
@@ -3049,11 +3065,16 @@ msgstr "Gyorstalpaló bezárása"
msgid "Dismiss interests"
msgstr "Érdeklődési körök bezárása"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "Élőeseményes reklámcsík elrejtése"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Szakasz bezárása"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Javaslat mellőzése"
@@ -3121,8 +3142,8 @@ msgstr "Ne aggódj! A korábbi üzeneteid és beállításaid nem vesztek el és
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Koppints kétszer vagy tartsd lenyomva az üzenetet egy reakció hozzáf
msgid "Double tap to close the dialog"
msgstr "Koppints kétszer a párbeszédablak bezárásához"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Koppints kétszer a kedveléshez"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "A Bluesky letöltése"
@@ -3164,6 +3185,13 @@ msgstr "CAR fájl letöltése"
msgid "Doxxing"
msgstr "Személyes információ kiszivárogtatása"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "Piszkozatok"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "A csatoláshoz húzd ide a képet."
@@ -3285,13 +3313,13 @@ msgstr "A bejegyzés kapcsolatbalépési beállításainak szerkesztése"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Profil szerkesztése"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Profil szerkesztése"
@@ -3413,7 +3441,7 @@ msgstr "Leküldéses értesítések engedélyezése"
msgid "Enable quote posts of this post"
msgstr "A bejegyzés idézésének engedélyezése"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Feliratok engedélyezése"
@@ -3421,13 +3449,13 @@ msgstr "Feliratok engedélyezése"
msgid "Enable this source only"
msgstr "Csak ezen forrás engedélyezése"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Felkapott témakörök megjelenítése"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Felkapott videók megjelenítése a Követett hírfolyamon"
@@ -3464,7 +3492,7 @@ msgstr "Szó vagy címke megadása"
msgid "Enter code"
msgstr "Kód megadása"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Belépés teljes képernyős módba"
@@ -3501,7 +3529,7 @@ msgstr "Jelszó megadása"
msgid "Enter your username and password"
msgstr "Add meg a felhasználóneved és a jelszavad"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Teljes képernyős mód"
@@ -3509,7 +3537,7 @@ msgstr "Teljes képernyős mód"
msgid "Entertainment"
msgstr "Szórakozás"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Hiba"
@@ -3570,7 +3598,7 @@ msgstr "Követett felhasználók kihagyása a szűrésből"
msgid "Excludes users you follow"
msgstr "A követett felhasználók bejegyzéseit nem szűri"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Kilépés a teljes képernyős módból"
@@ -3578,11 +3606,7 @@ msgstr "Kilépés a teljes képernyős módból"
msgid "Exits account deletion process"
msgstr "Fióktörlés megszakítása"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Képnézegető bezárása"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Helyettesítő szöveg folytatásának megjelenítése"
@@ -3598,11 +3622,11 @@ msgstr "A válasz forrásaként származó bejegyzés kibontása/összecsukása"
msgid "Expand post text"
msgstr "Továbbiak"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Bejegyzés teljes szövegének kibontása/összecsukása"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Az URI nem old fel egy rekordot"
@@ -3639,7 +3663,7 @@ msgstr "Szexuális tartalmakat ábrázoló képek."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Felfedezés"
@@ -3657,8 +3681,8 @@ msgstr "Adatok exportálása"
msgid "Export My Data"
msgstr "Adatok exportálása"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Külső médiatartalmak"
@@ -3730,7 +3754,7 @@ msgstr "A bejegyzés törlése meghiúsult. Próbáld újra."
msgid "Failed to delete starter pack"
msgstr "A kezdőcsomag törlése meghiúsult"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "A javasolt fiókok automatikus követése meghiúsult. Próbáld újra"
@@ -3829,6 +3853,10 @@ msgstr "A hitelesítés eltávolítása meghiúsult"
msgid "Failed to resolve location. Please try again."
msgstr "A tartózkodási hely megállapítása meghiúsult. Próbáld újra."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "A piszkozat mentése meghiúsult"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Hírfolyam"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Hírfolyam – Szerző: {0}"
@@ -3941,7 +3970,7 @@ msgstr "A hírfolyam nem elérhető"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Visszajelzés"
@@ -3958,7 +3987,7 @@ msgstr "Elküldtük a visszajelzést az üzemeltetőnek"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Hírfolyamok"
@@ -4008,6 +4037,10 @@ msgstr "Értesítések forrásainak szűrése"
msgid "Finalizing"
msgstr "Befejezés folyamatban…"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Végre nyomon követheted a számodra fontos bejegyzéseket! Ha szeretnél könnyen újra megtalálni egy bejegyzést, mostantól elmentheted azt."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Ismerősök felkutatása"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Követendő személyek felfedezése"
@@ -4098,19 +4131,19 @@ msgstr "Fókuszálás a kódmezőre"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Követés"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "{0} követése"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "{handle} követése"
@@ -4133,7 +4166,7 @@ msgstr "Fiók követése"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Fiók követése"
msgid "Follow all"
msgstr "Összes követése"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Összes fiók követése"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Követés kölcsönzése"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Mostantól követed az összes fiókot!"
@@ -4195,8 +4228,8 @@ msgstr "Ismert követők"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Követett"
msgid "Following {0}"
msgstr "Mostantól követed: {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Mostantól követed: {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Követett hírfolyam"
@@ -4264,7 +4297,7 @@ msgstr "Biztonsági okokból ezt többé nem tekintheted meg. Ha elveszted ezt a
msgid "For the best experience, we recommend using the theme font."
msgstr "A legjobb élmény érdekében a témabetűtípus használatát javasoljuk."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Javasolt"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "A(z) <0/> hírfolyamból"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Kezdőcsomag létrehozása"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Súgó"
@@ -4376,10 +4409,15 @@ msgstr "Feliratkozás egy fiók új bejegyzéseire"
msgid "Get started"
msgstr "Rendben"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Adj arcot a profilodnak!"
@@ -4394,12 +4432,12 @@ msgstr "Az erőszak népszerűsítése"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Vissza"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "A fiókodról jelenleg nem képes élő adást indítani"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Grafikus médiatartalom"
@@ -4592,7 +4630,7 @@ msgstr "A visszaélések elkerülése érdekében a Bluesky 7 napig megtartja, m
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Súgó"
@@ -4632,9 +4670,9 @@ msgstr "Rejtett lista"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Felhasználólista elrejtése"
msgid "Hide verification badges"
msgstr "Hitelesítési jelvények elrejtése"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Tartalom elrejtése"
@@ -4760,9 +4798,9 @@ msgstr "Egy pillanat! A videófeltöltés lehetősége még nem mindenki számá
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Kezdőoldal"
@@ -4819,7 +4857,7 @@ msgstr "Értettem"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "A Blueskyon {0} néven találhatsz meg. Csatlakozz Te is! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Hosszabb helyettesítő szövegek megjelenítése/levágása"
@@ -4872,7 +4910,7 @@ msgstr "A saját fiókodra vonatkozó értesítési beállításokat a <0>Beáll
msgid "If you're a developer, you can host your own server."
msgstr "Ha fejlesztő vagy, saját kiszolgálót is üzemeltethetsz."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Ha meg akarod változtatni a felhasználónevedet vagy az e-mail-címedet, azt még a deaktiválás előtt tedd meg!"
@@ -4996,6 +5034,10 @@ msgstr "Kapcsolatbalépési beállítások"
msgid "Introducing activity notifications"
msgstr "Tevékenységértesítések"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "Mostantól a névjegyeid alapján is találhatsz ismerősöket!"
@@ -5089,7 +5131,7 @@ msgstr "Még csak <0>{0}0> személy szerepel a kezdőcsomagban. A fenti keres
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Még csak Te szerepelsz a kezdőcsomagban. A fenti keresővel másokat is hozzáadhatsz."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "Állásazonosító: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Feliratkozás értesítésekre"
msgid "KWS website"
msgstr "A KWS honlapja"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Feljegyezte a(z) {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Feljegyezte a szerző."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Feljegyzések"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Feljegyzések alkalmazva"
@@ -5218,8 +5260,8 @@ msgstr "További információ a névjegyimportálásról"
msgid "Learn more about self hosting your PDS."
msgstr "További információ a személyes adatkiszolgálók üzemeltetéséről."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "További információ a tartalommoderálásról"
@@ -5231,7 +5273,7 @@ msgstr "A változtatásokról és a visszajelzés mikéntjéről a <0>blogbejegy
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "A változtatásokról és a visszajelzés mikéntjéről a blogbejegyzésünkben olvashatsz (angol nyelven)."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "További információ erről a figyelmeztetésről"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "További információ a <0>fiókbeállításokban0>."
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "További információ."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Elhagyás"
@@ -5286,7 +5328,7 @@ msgstr "A Bluesky elhagyása"
msgid "left to go."
msgstr "maradt."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Fiókok választása kézileg"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Tetszik"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Tetszik ({0, plural, one {# kedvelés} other {# kedvelés}})"
@@ -5380,7 +5422,7 @@ msgstr "Megosztott bejegyzések kedvelése"
msgid "Likes of your reposts notifications"
msgstr "Értesítések megosztott bejegyzések kedveléséről"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "A bejegyzést kedvelők"
@@ -5474,7 +5516,7 @@ msgstr "Feloldottad a listán szereplő személyek némítását"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Listák"
@@ -5496,10 +5538,20 @@ msgstr "ÉLŐ"
msgid "Live event happening now: {0}"
msgstr "Jelenlegi élő esemény: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "Élő esemény elrejtve"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "Élő esemény beállításai"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "Élő esemény ismét megjelenítve"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "Időről-időre történhetnek olyan izgalmas élő események, amelyek itt jelennek meg. Ha szeretnéd, akkor lehetőséged van csak ezt vagy minden eseményt elrejteni innen."
@@ -5524,11 +5576,11 @@ msgstr "Továbbiak"
msgid "Load more suggested feeds"
msgstr "További javasolt hírfolyamok"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Új értesítések betöltése"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "A logó szerzője: @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "A logó szerzője: <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Automatikus létrehozás"
msgid "Make sure this is where you intend to go!"
msgstr "Ellenőrizd, hogy biztosan ide akarsz-e menni!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Mentett hírfolyamok kezelése"
@@ -5638,7 +5690,16 @@ msgstr "Talán később"
msgid "Media"
msgstr "Média"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "A médiatartalmak a következő eszközön érhetők el: {0}"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "A médiatartalmak egy másik eszközön érhetők el"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "A nyugalom megzavarására alkalmas vagy felnőtt témákat ábrázoló médiatartalom."
@@ -5653,7 +5714,7 @@ msgstr "a megemlített felhasználók"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Említések"
@@ -5716,6 +5777,10 @@ msgstr "Egyéb értesítések"
msgid "Misleading"
msgstr "Félrevezető tartalom"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "Hiányzó médiatartalmak"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "További nyelvek…"
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Filmek"
msgid "Music"
msgstr "Zene"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Ugrás a kezdőcsomaghoz"
msgid "Navigates to the next screen"
msgstr "Ugrás a következő képernyőre"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Ugrás a profilodra"
@@ -5983,6 +6049,7 @@ msgstr "Új e-mail-cím"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Új funkció"
@@ -6018,12 +6085,12 @@ msgstr "Új üzenetek"
msgid "New password"
msgstr "Új jelszó"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Új bejegyzés"
@@ -6085,7 +6152,7 @@ msgstr "Hírek"
msgid "Next"
msgstr "Tovább"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Következő kép"
@@ -6095,7 +6162,7 @@ msgstr "Ilyen egy közösségi oldal hirdetések, magánéletsértő nyomonköve
#: src/screens/Settings/AppPasswords.tsx:107
msgid "No app passwords yet"
-msgstr "Még nem hoztál létre alkalmazásjelszót"
+msgstr "Még nem hoztál létre alkalmazásjelszavakat"
#: src/components/contacts/screens/ViewMatches.tsx:680
msgid "No contacts found"
@@ -6114,6 +6181,10 @@ msgstr "Még nincsenek egyéni hírfolyamok"
msgid "No DNS Panel"
msgstr "DNS-panel nélkül"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "Még nem mentettél piszkozatokat"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Nem jár le"
@@ -6136,7 +6207,7 @@ msgstr "Nincs előnézet"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Még nincsenek kedvelések"
@@ -6150,13 +6221,13 @@ msgstr "Még nincsenek listák"
msgid "No longer following {0}"
msgstr "Abbahagytad {0} követését"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "Még nincsenek médiatartalmak"
#: src/screens/Messages/components/ChatListItem.tsx:142
msgid "No messages yet"
-msgstr "Még nincsenek üzenetek"
+msgstr "Még nem rendelkezel üzenetekkel"
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14
msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you."
@@ -6195,7 +6266,7 @@ msgstr "Még nincsenek bejegyzések"
msgid "No quotes yet"
msgstr "Még nincsenek idézések"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "Még nincsenek válaszok"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Nincs találat"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Nincs találat"
@@ -6238,7 +6309,7 @@ msgstr "Nincs találat."
msgid "No search results found for \"{search}\"."
msgstr "A(z) „{search}” kifejezésre nincs találat."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "Még nincsenek kezdőcsomagok"
@@ -6247,7 +6318,7 @@ msgstr "Még nincsenek kezdőcsomagok"
msgid "No thanks"
msgstr "Köszönöm, nem"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "Még nincsenek videós bejegyzések"
@@ -6298,6 +6369,10 @@ msgstr "Nincsenek ismert követők"
msgid "Not Found"
msgstr "Ez a tartalom nem található"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Korlátozott láthatóság"
@@ -6317,11 +6392,11 @@ msgstr "Nincs itt semmi"
#: src/screens/Bookmarks/components/EmptyState.tsx:35
#: src/screens/Bookmarks/index.tsx:301
msgid "Nothing saved yet"
-msgstr "Még nincsenek mentett bejegyzések"
+msgstr "Még semmit sem mentettél"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Értesítési beállítások"
@@ -6349,10 +6424,10 @@ msgstr "Értesítési hangok"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Értesítések"
@@ -6368,8 +6443,8 @@ msgstr "épp most"
msgid "Now"
msgstr "Épp most"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Meztelenség"
@@ -6390,7 +6465,7 @@ msgstr "Jaj, ne!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Oké"
@@ -6417,23 +6492,23 @@ msgstr "ekkor:<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Regisztrációs varázslót alaphelyzetbe állítva"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Legalább egy GIF-ről hiányzik a helyettesítő szöveg."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Legalább egy képről hiányzik a helyettesítő szöveg."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "A kiválasztott fájlok közül legalább egy nem támogatott formátumú."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "A kiválasztott fájlok közül legalább egy túl nagy. A korlát 100 MB."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Legalább egy videóról hiányzik a helyettesítő szöveg."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Hoppá! Valami balul sült el!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Hoppá!"
msgid "Open avatar creator"
msgstr "Profilképkészítő megnyitása"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "Kamera megnyitása"
@@ -6485,12 +6560,16 @@ msgstr "Kamera megnyitása"
msgid "Open conversation options"
msgstr "Beszélgetési beállítások megnyitása"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "Piszkozat szerkesztése"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Oldalsó menü megnyitása"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Emojiválasztó megnyitása"
@@ -6557,7 +6636,7 @@ msgstr "Rendszernapló megnyitása"
msgid "Opens {0} feed"
msgstr "Ugrás a(z) {0} hírfolyamra"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "A tartalomfigyelmeztetések alkalmazására alkalmas párbeszédablak megnyitása"
@@ -6589,25 +6668,25 @@ msgstr "Felhasználónév-megváltoztatási párbeszédablak megnyitása"
msgid "Opens composer"
msgstr "Bejegyzésíró megnyitása"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "A készülék kamerájának megnyitása"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "A készülék galériájának megnyitása. A bejegyzéshez legfeljebb {MAX_IMAGES, plural, other {# kép}}, vagy egy videó vagy GIF csatolható."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Emojiválasztó megnyitása"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Regisztrációs varázsló indítása"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Bejelentkezési varázsló megnyitása"
@@ -6620,7 +6699,7 @@ msgstr "GIF-választó párbeszédablak megnyitása"
msgid "Opens helpdesk in browser"
msgstr "Támogatási hivatkozás megnyitása böngészőben"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "Fényképválasztó megnyitása"
@@ -6640,10 +6719,14 @@ msgstr "Jelszóvisszaállítási űrlap megnyitása"
msgid "Opens post language settings"
msgstr "Bejegyzések nyelvi beállításainak megnyitása"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "Bejegyzésíró felület megnyitása"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "Piszkozat szerkesztése a bejegyzésíró felületen"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "Frissítési állapot: Nincs elérhető frissítés"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Egyéb"
@@ -6763,13 +6846,13 @@ msgstr "Megváltoztattad a jelszavad"
msgid "Password updated!"
msgstr "Megváltoztattad a jelszavad!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Szünet"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Videó szüneteltetése"
@@ -6829,7 +6912,7 @@ msgstr "Telefonszám hitelesítve"
msgid "Photography"
msgstr "Fényképészet"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Felnőtteknek szánt képek."
@@ -6874,9 +6957,9 @@ msgstr "Kitűzött hírfolyamok"
msgid "Pinned to your feeds"
msgstr "Kitűzted a hírfolyamot"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Lejátszás"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "{0} lejátszása"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Videó lejátszása"
@@ -6893,11 +6976,11 @@ msgstr "Videó lejátszása"
msgid "Play Video"
msgstr "Videó lejátszása"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "GIF lejátszása/szüneteltetése"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Videó lejátszása/szüneteltetése"
@@ -6909,7 +6992,7 @@ msgstr "GIF lejátszása"
msgid "Plays the video"
msgstr "Videó lejátszása"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Jelöld ki a releváns tartalomfigyelmeztetési kategóriákat."
@@ -7066,31 +7149,31 @@ msgstr "Üzenet megadása:"
msgid "Politics"
msgstr "Politika"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornó"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Bejegyzés"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Közzététel"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Fénykép közzététele"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Videó közzététele"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Összes közzététele"
@@ -7217,7 +7300,7 @@ msgstr "Kattints ide a fiók azon követőinek megjelenítéséhez, akiket Te is
msgid "Preview"
msgstr "Előnézet"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Előző kép"
@@ -7257,8 +7340,8 @@ msgstr "Adatvédelmi- és biztonsági beállítások"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Adatvédelmi irányelvek"
@@ -7266,7 +7349,11 @@ msgstr "Adatvédelmi irányelvek"
msgid "Privacy violation of a minor"
msgstr "Kiskorúak személyes jogainak megsértése"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Videó feldolgozása folyamatban…"
@@ -7280,10 +7367,10 @@ msgstr "Feldolgozás folyamatban…"
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Nyilvános, megosztható fióklisták a tömeges elnémításhoz vagy letiltáshoz."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Bejegyzés közzététele"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Bejegyzések közzététele"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Válaszok közzététele"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Válasz közzététele"
@@ -7360,6 +7447,7 @@ msgstr "Értesítések idézésekről"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Idézés"
@@ -7385,7 +7473,7 @@ msgstr "Idézés letiltva"
msgid "Quotes"
msgstr "Idézések"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "A bejegyzés idézései"
@@ -7424,11 +7512,11 @@ msgstr "További információ a keresésszűrőkről (angol nyelven)"
msgid "Read blog post"
msgstr "Blogbejegyzés megtekintése (angolul)"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Kevesebb"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Több"
@@ -7720,13 +7808,13 @@ msgstr "Válaszadás letiltva"
msgid "Replies to this post are disabled."
msgstr "A bejegyzés alatti válaszadás le van tiltva."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Válasz közzététele"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Válasz írása ({0, plural, one {# válasz} other {# válasz}})"
@@ -7892,7 +7980,7 @@ msgstr "Megosztottad"
msgid "Reposts"
msgstr "Megosztások"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "A bejegyzés megosztásai"
@@ -7996,14 +8084,14 @@ msgstr "A legutóbb meghiúsult folyamat újrapróbálása"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Vissza az előző oldalra"
msgid "Returns to home page"
msgstr "Vissza a kezdőoldalra"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Vissza az előző oldalra"
@@ -8063,7 +8151,7 @@ msgstr "Vissza az előző lépéshez"
msgid "Save"
msgstr "Mentés"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Mentés"
@@ -8076,9 +8164,26 @@ msgstr "Születési dátum mentése"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Változtatások mentése"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "Változtatások mentése"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "Mentés"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "Piszkozat mentése"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Mentés a hírfolyamgyűjteménybe"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Mentett"
@@ -8155,7 +8260,7 @@ msgstr "Vissza a tetejére"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Keresés"
@@ -8164,7 +8269,7 @@ msgstr "Keresés"
msgid "Search @{0}'s posts"
msgstr "Keresés @{0} bejegyzései között"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Keresés név vagy érdeklődési kör alapján"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Profilok keresése"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "Keresés: {interestsDisplayName}"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "Keresés: {interestsDisplayName} (aktív)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Keresés a bejegyzések között"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Profilok keresése"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Keresés…"
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Profilok keresése"
@@ -8283,12 +8388,12 @@ msgstr "A felhasználó #{tag} címkével ellátott bejegyzéseinek megtekintés
msgid "See jobs at Bluesky"
msgstr "Állások a Blueskynál"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Továbbiak"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "További javasolt profilok megjelenítése"
@@ -8456,7 +8561,7 @@ msgstr "Add meg, hogy milyen nyelvre szeretnéd lefordítani a bejegyzéseket."
msgid "Select your preferred notification channels"
msgstr "Kívánt értesítési csatornák megadása"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "Egy bejegyzéshez csak egyféle médiatartalom csatolható."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "E-mail küldése"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Visszajelzés küldése"
@@ -8566,7 +8671,7 @@ msgstr "E-mail cím beállítása jelszóvisszaállításhoz"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Beállítások"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Beállítások elmentve"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Szexuális aktusok vagy erotikus meztelenség."
@@ -8634,7 +8739,7 @@ msgstr "Szexuális tartalom"
msgid "Share"
msgstr "Továbbítás"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Továbbítás"
@@ -8712,13 +8817,13 @@ msgstr "Oszd meg a kedvenc hírfolyamod!"
msgid "Shared Preferences Tester"
msgstr "„Megosztott beállítások” tesztelő"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Megjelenítés"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Helyettesítő szöveg megjelenítése"
@@ -8820,7 +8925,7 @@ msgstr "Figyelmeztetés és kiszűrés a hírfolyamokból"
msgid "Show when you’re live"
msgstr "Saját élő állapot megjelenítése"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "További információ a bejegyzés dátumáról"
@@ -8828,8 +8933,8 @@ msgstr "További információ a bejegyzés dátumáról"
msgid "Shows other accounts you can switch to"
msgstr "További fiókok megjelenítése váltás céljából"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Tartalom megjelenítése"
@@ -8842,14 +8947,14 @@ msgstr "Tartalom megjelenítése"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Bejelentkezés szükséges"
msgid "Signed in as @{0}"
msgstr "Bejelentkezve, mint @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Hasonló fiókok"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "Kihagyás és az alkalmazás használatának folytatása"
msgid "Skip introduction and start using your account"
msgstr "Bevezető kihagyása és fiók használatának megkezdése"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Lépés kihagyása"
@@ -8967,7 +9068,7 @@ msgstr "Szoftverfejlesztő"
msgid "Some of your verifications are invalid."
msgstr "A hitelesítéseidnek egy része érvénytelen."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "További ajánlott hírfolyamok"
@@ -8994,7 +9095,7 @@ msgstr "Valami balul sült el"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Valami balul sült el. Próbáld újra"
@@ -9020,7 +9121,7 @@ msgstr "Valami balul sült el. Próbáld újra."
msgid "Something wrong? Let us know."
msgstr "Valami nem stimmel? Vedd fel velünk a kapcsolatot!"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Sajnáljuk, de a javasolt fiókok betöltése meghiúsult."
@@ -9113,7 +9214,11 @@ msgstr "Kezdőcsomagok"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "A kezdőcsomagokkal könnyen megoszthatod a kedvenc hírfolyamaidat és személyeidet."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "Egy kezdőcsomag segítségével megoszthatod a kedvenc hírfolyamaidat és személyeidet."
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "Egy kezdőcsomag segítségével megoszthatod a kedvenc hírfolyamaidat és személyeidet."
@@ -9181,11 +9286,11 @@ msgstr "Az alábbi feljegyzési kategóriák használatához iratkozz fel a(z) @
msgid "Subscribe to account activity"
msgstr "Feliratkozás fióktevékenységi értesítésekre"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Feliratkozás a feljegyzőre"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Feliratkozás a feljegyzőre"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Javasolt fiókok"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Számodra javasolt"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Felnőtt tartalom"
@@ -9356,8 +9461,8 @@ msgstr "Feltételek"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Felhasználási feltételek"
@@ -9405,12 +9510,12 @@ msgstr "Ez a felhasználónév már foglalt"
msgid "That's all, folks!"
msgstr "Ez van, srácok!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Ez minden!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "A fiók ismét képes lesz kapcsolatba lépni veled, ha feloldod a letiltását."
@@ -9449,7 +9554,7 @@ msgstr "A Felfedezés hírfolyam"
msgid "The Discover feed now knows what you like"
msgstr "A Felfedezés hírfolyam olyan tartalmakat jelenít meg, amelyek tetszhetnek Neked"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Az alkalmazás jobb. Töltsd le a Blueskyt és onnan folytatjuk, ahol abbahagytad!"
@@ -9529,7 +9634,7 @@ msgstr "Téma"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "A születési dátum szerkesztésének gyakorisága korlátozott. Lehetséges, hogy várnod kell egy pár napot, mielőtt ismét szerkeszthetnéd."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "A fiók deaktiválásához nem tartozik időkorlát. Bármikor visszajöhetsz."
@@ -9713,6 +9818,10 @@ msgstr "Ezt a tartalmat bejelentkezés nélkül nem tekintheted meg."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Ez a beszélgetés egy már törölt vagy deaktivált fiókkal történt. A lehetőségekhez kattints ide"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "Ez a művelet nem vonható vissza."
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Ez az e-mail-cím már hozzá van rendelve a fiókodhoz."
@@ -9742,7 +9851,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Ez a hírfolyam üres. Lehetséges, hogy nem követsz elég felhasználót vagy rosszul van beállítva a hírfolyam."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Ez a hírfolyam üres."
@@ -9800,7 +9909,7 @@ msgstr "Ez a lista üres."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Ez a moderálási szolgáltatás jelenleg nem elérhető. A részleteket alább olvashatod. Ha a probléma fennáll, lépj velünk kapcsolatba."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "A bejegyzés adatai szerint az eredeti létrehozási dátuma <0>{0}0> volt, de először ekkor jelent meg a Blueskyon: <1>{1}1>"
@@ -9820,7 +9929,7 @@ msgstr "Ezt a bejegyzést törölte a szerző"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Ez a bejegyzés el lesz rejtve a hírfolyamokból és a válaszláncokból. Ez a művelet nem vonható vissza."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "A szerző letiltotta az idézést."
@@ -9836,7 +9945,7 @@ msgstr "Ez a válasz egy rejtett részlegbe lesz sorolva a válaszláncok legalj
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Ez a szolgáltatás nem osztotta meg a felhasználási feltételeit vagy az adatvédelmi irányelveit."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "Az élőadásos funkció kísérleti fázisa alatt ez a szolgáltatás még nem elérhető. Elérhető szolgáltatások: {formatted}."
@@ -9902,8 +10011,8 @@ msgstr "Ezzel el fogod távolítani a bejegyzést az idézésből mindenki szám
msgid "Thread options"
msgstr "Válaszlánc-beállítások"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Válaszláncok"
@@ -9953,7 +10062,7 @@ msgstr "Ma"
msgid "Toggle to enable or disable adult content"
msgstr "Felnőtt tartalmak ki-/bekapcsolása"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Hang némítása"
@@ -9990,8 +10099,8 @@ msgstr "Témakör"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Fordítás"
@@ -10093,15 +10202,15 @@ msgstr "Nincs elérhető hírfolyam-információ"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Tiltás feloldása"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Tiltás feloldása"
@@ -10114,7 +10223,7 @@ msgid "Unblock account"
msgstr "Fiók tiltásának feloldása"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Fiók tiltásának feloldása"
@@ -10129,8 +10238,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Visszavonás"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Visszavonás"
@@ -10144,7 +10257,7 @@ msgstr "Megosztás visszavonása"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Megosztás visszavonása ({0, plural, one {# megosztás} other {# megosztás}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "{0} követésének megszüntetése"
@@ -10153,7 +10266,7 @@ msgstr "{0} követésének megszüntetése"
msgid "Unfollow account"
msgstr "Fiók követésének megszüntetése"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Követés megszüntetése"
@@ -10186,11 +10299,11 @@ msgid "Unlike"
msgstr "Mégse tetszik"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Kedvelés visszavonása ({0, plural, one {# kedvelés} other {# kedvelés}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10227,7 +10340,7 @@ msgstr "Lista némításának feloldása"
msgid "Unmute thread"
msgstr "Válaszlánc némításának feloldása"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Videó némításának feloldása"
@@ -10278,7 +10391,7 @@ msgstr "Kitűzetlen lista"
msgid "Unsnooze email reminder"
msgstr "E-mail-cím-emlékeztető elhalasztásának visszavonása"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Leiratkozás"
@@ -10287,7 +10400,7 @@ msgstr "Leiratkozás"
msgid "Unsubscribe from list"
msgstr "Leiratkozás a listáról"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Leiratkozás a feljegyzőről"
@@ -10295,7 +10408,7 @@ msgstr "Leiratkozás a feljegyzőről"
msgid "Unsubscribed from list"
msgstr "Leiratkoztál a listáról"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Nem támogatott videóformátum: {mimeType}"
@@ -10365,16 +10478,20 @@ msgstr "Feltöltés a fájlkezelőből"
msgid "Upload from Library"
msgstr "Feltöltés a galériából"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Képek feltöltése folyamatban…"
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Hivatkozás indexképének feltöltése folyamatban…"
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Videó feltöltése folyamatban…"
@@ -10391,8 +10508,8 @@ msgstr "Alapértelmezett adattárszolgáltató használata"
msgid "Use in-app browser"
msgstr "Alkalmazáson belüli böngésző használata"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Hivatkozások megnyitása az alkalmazáson belüli böngészővel"
@@ -10447,6 +10564,10 @@ msgstr "Ez a felhasználó letiltott Téged"
msgid "User list by {0}"
msgstr "Felhasználólista – Szerző: {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr "Felhasználólista – Szerző: {0}"
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Felhasználólista – Saját"
@@ -10599,8 +10720,8 @@ msgstr "Hitelesítés folyamatban…"
msgid "Version {0}"
msgstr "Verziószám: {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Videó"
@@ -10616,20 +10737,24 @@ msgstr "Videófolyam"
msgid "Video from {0}: {text}"
msgstr "{0} videója: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "{0} videója. Koppints ide a lejátszáshoz/szüneteltetéshez."
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Videojátékok"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Videó szüneteltetve"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Videó lejátszása folyamatban"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "A videó nem található."
@@ -10637,11 +10762,11 @@ msgstr "A videó nem található."
msgid "Video settings"
msgstr "Videóbeállítások"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "A videó feltöltése sikeresen befejeződött"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Videó: {0}"
@@ -10649,23 +10774,23 @@ msgstr "Videó: {0}"
msgid "Videos"
msgstr "Videók"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "A videónak 3 percnél rövidebbnek kell lennie."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Megtekintés"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "{0} profilképének megtekintése"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "{0} profiljának megtekintése"
@@ -10710,7 +10835,7 @@ msgstr "Továbbiak megtekintése"
msgid "View more trending videos"
msgstr "További felkapott videók megtekintése"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "Bejegyzés megtekintése"
@@ -10790,7 +10915,7 @@ msgstr "Erőszakos vagy fenyegető tartalom"
msgid "Visit site"
msgstr "Honlap felkeresése"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Értesítési beállítások megnyitása"
@@ -10940,7 +11065,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Hiba történt az életkor-igazolási folyamat elindítása közben. Ha segítségre van szükséged, vedd fel a kapcsolatot az <0>ügyfélszolgálattal0>."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Hálózati hiba történt. Próbáld újra."
@@ -10970,7 +11095,7 @@ msgstr "Sajnáljuk, de az elnémított szavak listájának betöltése meghiúsu
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Sajnáljuk, de a keresés meghiúsult. Próbáld újra egy pár percen belül."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Sajnáljuk, de törölték a bejegyzést, amire válaszolnál."
@@ -10979,7 +11104,7 @@ msgstr "Sajnáljuk, de törölték a bejegyzést, amire válaszolnál."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Sajnáljuk, de a keresett oldal nem található."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Sajnáljuk, de egyszerre csak 20 feljegyzőre iratkozhatsz fel és elérted ezt a korlátot."
@@ -11020,10 +11145,9 @@ msgstr "Milyen érdeklődési köreid vannak?"
msgid "What do you want to call your starter pack?"
msgstr "Milyen címet adnál a kezdőcsomagodnak?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Mi a helyzet?"
@@ -11099,6 +11223,14 @@ msgstr "Miért kell ezt a felhasználót átvizsgálni?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Szeretnéd letiltani ezt a felhasználót és/vagy törölni a beszélgetést?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "Szeretnéd piszkozatként menteni ezt a bejegyzést, mielőtt megnyitod a további piszkozataidat?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "Szeretnéd piszkozatként menteni ezt a bejegyzést?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11109,12 +11241,12 @@ msgstr "Üzenet írása"
msgid "Write a post"
msgstr "Bejegyzés írása"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Bejegyzés írása"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Válasz írása"
@@ -11135,8 +11267,8 @@ msgstr "www.sajátélőadás.tv"
msgid "Yes"
msgstr "Igen"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Igen – deaktiválás"
@@ -11190,7 +11322,7 @@ msgstr "Sorban állsz."
msgid "You are Live"
msgstr "Élő adásban vagy"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Az élő adásod véget ért"
@@ -11202,7 +11334,7 @@ msgstr "Nincs jogosultságod a videófeltöltésre."
msgid "You are not following anyone yet"
msgstr "Még senkit sem követsz"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Elkezdődött az élő adás!"
@@ -11257,11 +11389,11 @@ msgstr "Mostantól feliratkozhatsz egyes személyek tevékenységeire. Ha van ol
msgid "You can now sign in with your new password."
msgstr "Mostantól bejelentkezhetsz az új jelszóval."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "Egy bejegyzéshez csak egy GIF csatolható."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "Egy bejegyzéshez csak egy videó csatolható."
@@ -11270,7 +11402,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "A bejelentkezés folytatásához újraaktiválhatod a fiókodat. Ezek után a profilod és a bejegyzéseid ismét láthatóak lesznek más felhasználók számára."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "Egy bejegyzéshez csak {MAX_IMAGES, plural, other {# kép}} csatolható."
@@ -11319,7 +11451,7 @@ msgstr "Letiltottad ezt a felhasználót"
msgid "You have blocked this user. You cannot view their content."
msgstr "Letiltottad ezt a felhasználót, ezért nem tekintheted meg a tartalmait."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Ez a lap már nem fog új tartalmakkal bővülni, mivel teljesen kikapcsoltad a válasz-, idézési- és megemlítési értesítéseket. Ezeket a beállításokat az <0>értesítési beállításokban0> módosíthatod."
@@ -11378,6 +11510,14 @@ msgstr "Visszaigazoltad az e-mail-címedet – most már bezárhatod ezt az abla
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Átmenetileg elérted a videófeltöltési korlátot. Próbáld újra később."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "A piszkozat tartalma megváltozott. Szeretnéd menteni?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "A piszkozat tartalma megváltozott. Szeretnéd menteni mielőtt megnyitod a további piszkozataidat?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Még egy kezdőcsomagot sem hoztál létre."
@@ -11439,7 +11579,7 @@ msgstr "Regisztráláshoz be kell töltened a(z) {MIN_ACCESS_AGE}. életévedet.
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "A Bluesky használatához be kell töltened a 13. életévedet. További információért olvasd el a <0>felhasználási feltételeket0>."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Egy kezdőcsomag létrehozásához legalább hét különböző személyt követned kell."
@@ -11451,7 +11591,7 @@ msgstr "A hozzáféréshez életkor-igazolás szükséges."
msgid "You must grant access to your photo library to save a QR code"
msgstr "A QR-kód mentéséhez először hozzáférést kell biztosítanod a fényképeidhez"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "A galériához hozzáférés szükséges."
@@ -11546,7 +11686,7 @@ msgid "You're in line"
msgstr "Sorban állsz"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Jelenleg egy alkalmazásjelszóval vagy bejelentkezve. A fiókod deaktiválásához a valódi jelszavaddal kell bejelentkezned."
@@ -11591,7 +11731,7 @@ msgstr "Elérted a napi videófeltöltési korlátot (bájthatár meghaladva)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Elérted a napi videófeltöltési korlátot (videómennyiség meghaladva)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Kifogytunk a videókból. Mit szólnál egy kis szünethez?"
@@ -11627,7 +11767,7 @@ msgstr "A fellebbezést megkaptuk. Pozitív elbírálás esetén fogsz kapni egy
msgid "Your birth date"
msgstr "Születési dátum"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "A jelenlegi böngésződ nem támogatja ezt a videóformátumot. Próbáld meg egy másik böngészőben."
@@ -11694,8 +11834,8 @@ msgstr "A teljes felhasználóneved: <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Saját érdeklődési körök"
@@ -11733,11 +11873,11 @@ msgstr "A jelszóváltoztatás sikeresen megtörtént. A legközelebbi bejelentk
msgid "Your password must be at least 8 characters long."
msgstr "A jelszónak legalább 8 karakter hosszúnak kell lennie."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "Bejegyzés elküldve"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "Bejegyzések elküldve"
@@ -11754,11 +11894,11 @@ msgstr "Saját profilkép"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "A saját profilképed más fiókok profilképeivel körülvéve, többrétegű gyűrűs elrendezésben"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "A profilod, bejegyzéseid, hírfolyamaid és listáid mostantól el vannak rejtve a többi Bluesky-felhasználó elől. A fiókod újraaktiválásához jelentkezz be."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "Válasz elküldve"
diff --git a/src/locale/locales/ia/messages.po b/src/locale/locales/ia/messages.po
index 1af790ac89..a283e2d988 100644
--- a/src/locale/locales/ia/messages.po
+++ b/src/locale/locales/ia/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ia\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Interlingua\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# republication} other {# republicationes}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# secunda} other {# secundas}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# elemento non legite} other {# elementos non legite}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# elemento non legite} other {# elementos non legite}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {#me} other {#me}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {sequitor} other {sequitores}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {sequito} other {sequitos}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {appreciation} other {appreciationes}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {appreciation} other {appreciationes}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {publication} other {publicationes}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citation} other {citationes}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {republication} other {republicationes}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr "{0} ha reagite con {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} ha reagite con {1} a {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, un canal de {1}, appreciate per {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, un lista de {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {# usatores}} inscribite!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# minuta} other {# minutas}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# elemento non legite} other {# elementos non legite}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>e {2, plural, one {# altere} other {# alteres}} es includite in tu pacchetto de initio"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {sequitor} other {sequitores}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {sequito} other {sequitos}}"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Un captura de schermo de un pagina de profilo con un icone de campana proxime al button de sequer, indicante le nove function de notificationes de activitate."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Adde {0} plus pro continuar"
msgid "Add {displayName} to starter pack"
msgstr "Adder {displayName} al pacchetto de initio"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Adder un advertimento de contento"
@@ -754,11 +763,11 @@ msgstr "Adder texto alternative (optional)"
msgid "Add another account"
msgstr "Adder altere conto"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Adder un altere publication"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "Adder contrasigno de application"
msgid "Add emoji reaction"
msgstr "Adder reaction con emoji"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr "Detalios additional (limite: 300 characteres)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Adulto"
@@ -879,10 +888,10 @@ msgstr "Adulto"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Contento pro adultos"
@@ -894,8 +903,8 @@ msgstr "Le contento pro adultos solmente pote esser activate via le Web a <0>bsk
msgid "Adult content is disabled."
msgstr "Le contento pro adultos es disactivate."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Etiquettas de contento pro adultos"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@exemplo.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Toto"
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Tu es ja in session como @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Texto alternative"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Texto alternative"
@@ -1059,7 +1068,7 @@ msgstr "Un e-mail ha essite inviate a {0}. Illo include un codice de confirmatio
msgid "An error has occurred"
msgstr "Un error ha occurrite"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Un error ha occurrite"
@@ -1067,7 +1076,7 @@ msgstr "Un error ha occurrite"
msgid "An error occurred while compressing the video."
msgstr "Un error ha occurrite durante le compression del video."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr "Un error ha occurrite durante le recuperation del canal."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Un error ha occurrite durante le generation de tu pacchetto de initio. Vole tu tentar lo de novo?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "Un error ha occurrite durante le cargamento del video. Per favor tenta lo de novo plus tarde."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Un error ha occurrite durante le cargamento del video. Per favor tenta lo de novo."
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Animales"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF animate"
@@ -1306,12 +1315,12 @@ msgstr "Applicar le canales recommendate predefinite"
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Archivate desde {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Publication archivate"
@@ -1332,11 +1341,11 @@ msgstr "Es tu secur de voler deler iste pacchetto de initio?"
msgid "Are you sure you want to discard your changes?"
msgstr "Es tu secur de voler discartar tu cambiamentos?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Es tu secur de voler partir de iste conversation?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Es tu secur de voler partir de iste conversation? Tu messages essera delite pro te, mais non pro le altere participante."
@@ -1344,11 +1353,7 @@ msgstr "Es tu secur de voler partir de iste conversation? Tu messages essera del
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Es tu secur de voler remover isto de tu canales?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Es tu secur de voler discartar iste minuta?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Es tu secur de voler discartar iste publication?"
@@ -1364,7 +1369,7 @@ msgstr "Scribe tu in <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Arte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Nuditate artistic o non erotic."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Reproducer automaticamente videos e GIFs"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Retornar"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky non pote confirmar le authenticitate del data declarate."
@@ -1623,7 +1630,7 @@ msgstr "Conditiones de servicio de Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky eligera un insimul de contos recommendate inter le personas in tu rete."
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Percurre altere canales super le pagina Explorar"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Percurrer plus suggestiones"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Percurre plus suggestiones super le pagina Explorar"
@@ -1770,8 +1777,8 @@ msgstr "Camera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Camera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Cancellar cerca"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Impossibile interager con un usator blocate"
@@ -1901,9 +1908,9 @@ msgstr "Cambiamentos salvate"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Chat"
@@ -1989,7 +1996,7 @@ msgstr "Elige methodo de verification de dominio"
msgid "Choose Feeds"
msgstr "Eliger canales"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Elige por me"
@@ -2096,6 +2103,7 @@ msgstr "Cataclop 🐴 cataclop 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Cataclop 🐴 cataclop 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Clauder quadro de dialogo de GIF"
msgid "Close image"
msgstr "Clauder imagine"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Clauder visualisator de imagine"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Claude le alerta de actualisation de contrasigno"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Claude le fenestra de redaction e discarta le minuta del publication"
@@ -2242,12 +2251,12 @@ msgstr "Concluder le apprentissage e comenciar a usar tu conto"
msgid "Complete the challenge"
msgstr "Completa le defia"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Scriber un nove publication"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Redige publicationes de usque a {0, plural, other {# characteres}}"
@@ -2255,7 +2264,11 @@ msgstr "Redige publicationes de usque a {0, plural, other {# characteres}}"
msgid "Compose reply"
msgstr "Scriber un responsa"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Compression del video in curso..."
@@ -2263,7 +2276,6 @@ msgstr "Compression del video in curso..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Configurar le parametros de filtrage de contento pro le categoria: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Configurate in le <0>parametros de moderation0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Contento e multimedia"
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "Advertimento de contento"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Advertimentos de contento"
@@ -2401,7 +2413,7 @@ msgstr "Fundo de menu contextual. Clicca pro clauder le menu."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Continuar"
@@ -2420,7 +2432,7 @@ msgstr "Continuar filo..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "Non ha essite possibile partir del chat"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Non ha essite possibile cargar le canal"
@@ -2643,8 +2655,8 @@ msgstr "Crear un codice QR pro un pacchetto de initio"
msgid "Create a starter pack"
msgstr "Crear un pacchetto de initio"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "Crea un pacchetto de initio pro me"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Crear un altere"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Crear nove conto"
@@ -2772,7 +2784,7 @@ msgstr "Data de nascentia"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Disactivar conto"
@@ -2871,7 +2883,7 @@ msgstr "Deler mi conto"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Deler publication"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Disactivar subtitulos"
@@ -2996,8 +3008,11 @@ msgstr "Disactivate"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Discartar"
@@ -3006,11 +3021,12 @@ msgstr "Discartar"
msgid "Discard changes?"
msgstr "Discartar cambiamentos?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Discartar minuta?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Discartar publication?"
@@ -3037,7 +3053,7 @@ msgstr "Clauder"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Clauder error"
@@ -3049,11 +3065,16 @@ msgstr "Clauder le guida de introduction"
msgid "Dismiss interests"
msgstr "Clauder interesses"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Clauder iste section"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Tocca duo vices o preme longemente le message pro adder un reaction"
msgid "Double tap to close the dialog"
msgstr "Tocca duo vices pro clauder le quadro de dialogo"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Tocca duo vices pro appreciar"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Discargar Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Discargar file CAR"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Depone pro adder imagines"
@@ -3285,13 +3313,13 @@ msgstr "Modificar le parametros de interaction del publication"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Modificar profilo"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Modificar profilo"
@@ -3413,7 +3441,7 @@ msgstr "Activar notificationes push"
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Activar subtitulos"
@@ -3421,13 +3449,13 @@ msgstr "Activar subtitulos"
msgid "Enable this source only"
msgstr "Activar iste fonte solmente"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Activar tendentias"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Activar videos de tendentia in tu canal Discoperir"
@@ -3464,7 +3492,7 @@ msgstr "Insere un parola o etiquetta"
msgid "Enter code"
msgstr "Insere codice"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Passar a plen schermo"
@@ -3501,7 +3529,7 @@ msgstr "Insere tu contrasigno"
msgid "Enter your username and password"
msgstr "Insere tu nomine de usator e contrasigno"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Passa a plen schermo"
@@ -3509,7 +3537,7 @@ msgstr "Passa a plen schermo"
msgid "Entertainment"
msgstr "Intertenimento"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Error"
@@ -3570,7 +3598,7 @@ msgstr "Excluder usatores que tu seque"
msgid "Excludes users you follow"
msgstr "Exclude al usatores que tu seque"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Exir del schermo plen"
@@ -3578,11 +3606,7 @@ msgstr "Exir del schermo plen"
msgid "Exits account deletion process"
msgstr "Exi del processo de deletion de conto"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Exi del visualisation del imagine"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Expander texto alternative"
@@ -3598,11 +3622,11 @@ msgstr "Expander o contraher le publication integre al qual tu responde"
msgid "Expand post text"
msgstr "Expander le texto del publication"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Expande o contrahe le texto del publication"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Esseva expectate que le URI se resolve a un registro"
@@ -3639,7 +3663,7 @@ msgstr "Imagines sexual explicite."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Explorar"
@@ -3657,8 +3681,8 @@ msgstr "Exportar mi datos"
msgid "Export My Data"
msgstr "Exportar mi datos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Multimedia externe"
@@ -3730,7 +3754,7 @@ msgstr "Non ha essite possibile deler le publication, tenta de novo"
msgid "Failed to delete starter pack"
msgstr "Non ha essite possibile deler le pacchetto de initio"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr "Non ha essite possibile remover le verification"
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Canal"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Canal de {0}"
@@ -3941,7 +3970,7 @@ msgstr "Canal indisponibile"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Commentarios"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Canales"
@@ -4008,6 +4037,10 @@ msgstr "Filtrar de qui tu recipe notificationes"
msgid "Finalizing"
msgstr "Finalisante"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Trovar personas a sequer"
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Sequer"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Sequer {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Sequer {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Sequer conto"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Sequer conto"
msgid "Follow all"
msgstr "Sequer totes"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Sequer in retorno"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "Sequitores que tu cognosce"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Sequente"
msgid "Following {0}"
msgstr "Sequente {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Sequente {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Preferentias del canal Sequente"
@@ -4264,7 +4297,7 @@ msgstr "Pro rationes de securitate, tu non potera visualisar isto de novo. Si tu
msgid "For the best experience, we recommend using the theme font."
msgstr "Pro le melior experientia, nos recommenda usar le fonte del thema."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Pro te"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "De <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Generar un pacchetto de initio"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Obtener adjuta"
@@ -4376,10 +4409,15 @@ msgstr "Reciper notificationes quando alcuno publica"
msgid "Get started"
msgstr "Comenciar"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Da un facie a tu profilo"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Retornar"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Contento explicite"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Adjuta"
@@ -4632,9 +4670,9 @@ msgstr "Lista occultate"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Occultar lista de usatores"
msgid "Hide verification badges"
msgstr "Occultar insignias de verification"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Occulta le contento"
@@ -4760,9 +4798,9 @@ msgstr "Un momento! Nos concede gradualmente le accesso al video, e tu attende a
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Initio"
@@ -4819,7 +4857,7 @@ msgstr "Io comprende"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Si le texto alternative es longe, commuta le stato expandite del texto alternative"
@@ -4872,7 +4910,7 @@ msgstr "Si tu vole restringer qui pote reciper notificationes del activitates de
msgid "If you're a developer, you can host your own server."
msgstr "Si tu es un disveloppator, tu pote hospitar tu proprie servitor."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Si tu tenta cambiar de pseudonymo o de adresse de e-mail, face lo ante disactivar."
@@ -4996,6 +5034,10 @@ msgstr "Parametros de interaction"
msgid "Introducing activity notifications"
msgstr "Presentation del notificationes de activitate"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Tu es le unic al momento! Adde plus personas a tu pacchetto de initio cercante hic supra."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID del processo: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Tene me al currente"
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Etiquettate per {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Etiquettate per le autor."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Etiquettas"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Etiquettas addite"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "Saper plus super le auto-albergamento de tu PDS."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Saper plus super le moderation applicate a iste contento"
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Saper plus super iste advertimento"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Saper plus."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Partir"
@@ -5286,7 +5328,7 @@ msgstr "Quitar Bluesky"
msgid "left to go."
msgstr "remane."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Lassa me eliger"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Appreciar"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Appreciar ({0, plural, one {# appreciation} other {# appreciationes}})"
@@ -5380,7 +5422,7 @@ msgstr "Appreciationes de tu republicationes"
msgid "Likes of your reposts notifications"
msgstr "Notificationes de appreciationes de tu republicationes"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Appreciationes de iste publication"
@@ -5474,7 +5516,7 @@ msgstr "Lista dissilentiate"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Listas"
@@ -5496,10 +5538,20 @@ msgstr "IN DIRECTO"
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Cargar plus"
msgid "Load more suggested feeds"
msgstr "Cargar plus canales suggerite"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Cargar nove notificationes"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo de @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo de <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Face un pro me"
msgid "Make sure this is where you intend to go!"
msgstr "Assecura te que isto es ubi tu ha le intention de ir!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Gerer canales salvate"
@@ -5638,7 +5690,16 @@ msgstr "Forsan plus tarde"
msgid "Media"
msgstr "Multimedia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Contento multimedial que pote perturbar o esser innapropriate pro certe publicos."
@@ -5653,7 +5714,7 @@ msgstr "usatores mentionate"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Mentiones"
@@ -5716,6 +5777,10 @@ msgstr "Notificationes diverse"
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Cinema"
msgid "Music"
msgstr "Musica"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Navigar al pacchetto de initio"
msgid "Navigates to the next screen"
msgstr "Naviga al proxime schermo"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Naviga a tu profilo"
@@ -5983,6 +6049,7 @@ msgstr "Nove adresse de e-mail"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Nove function"
@@ -6018,12 +6085,12 @@ msgstr "Nove messages"
msgid "New password"
msgstr "Nove contrasigno"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Nove publication"
@@ -6085,7 +6152,7 @@ msgstr "Novas"
msgid "Next"
msgstr "Sequente"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Proxime imagine"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "Necun pannello de DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Expiration non definite"
@@ -6136,7 +6207,7 @@ msgstr "Necun imagine"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Necun appreciation ancora"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "Non plus sequente {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "Necun citation ancora"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Necun resultato"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Necun resultato"
@@ -6238,7 +6309,7 @@ msgstr "Necun resultato."
msgid "No search results found for \"{search}\"."
msgstr "Necun resultato trovate pro \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "No, gratias"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr "Non sequite per alcuno qui tu seque"
msgid "Not Found"
msgstr "Non trovate"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Nota super compartimento"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Parametros de notification"
@@ -6349,10 +6424,10 @@ msgstr "Sonos de notification"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Notificationes"
@@ -6368,8 +6443,8 @@ msgstr "ora"
msgid "Now"
msgstr "Ora"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Nuditate"
@@ -6390,7 +6465,7 @@ msgstr "Oh no!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "OK"
@@ -6417,23 +6492,23 @@ msgstr "in<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Reinitialisation del apprentissage"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Manca texto alternative a un o plus GIFs."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Manca texto alternative a un o plus imagines."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Manca texto alternative a un o plus videos."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ops, alcun error ha occurrite!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ops!"
msgid "Open avatar creator"
msgstr "Aperir creator de avatar"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "Aperir optiones de conversation"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Aperir le menu lateral"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Aperir selector de emojis"
@@ -6557,7 +6636,7 @@ msgstr "Aperir registro de systema"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Aperi un quadro de dialogo pro adder un advertimento de contento a tu publication"
@@ -6589,25 +6668,25 @@ msgstr "Aperi quadro de dialogo de modification de pseudonymo"
msgid "Opens composer"
msgstr "Aperi le fenestra de redaction"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Aperi le selector de emojis"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Aperi le fluxo pro crear un nove conto Bluesky"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Aperi le fluxo pro aperir session con tu conto Bluesky existente"
@@ -6620,7 +6699,7 @@ msgstr "Aperi quadro de dialogo de selection de GIF"
msgid "Opens helpdesk in browser"
msgstr "Aperi le servicio de assistentia technic in le navigator"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "Aperi le formulario de reinitialisation de contrasigno"
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "Stato OTA: Necun disponibile"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Altere"
@@ -6763,13 +6846,13 @@ msgstr "Contrasigno actualisate"
msgid "Password updated!"
msgstr "Contrasigno actualisate!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pausar"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Pausar video"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "Photographia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Imagines destinate a adultos."
@@ -6874,9 +6957,9 @@ msgstr "Canales fixate"
msgid "Pinned to your feeds"
msgstr "Fixate in tu canales"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Reproducer"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Reproducer {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Reproducer video"
@@ -6893,11 +6976,11 @@ msgstr "Reproducer video"
msgid "Play Video"
msgstr "Reproducer video"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Reproduce o pausa le GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Reproduce o pausa le video"
@@ -6909,7 +6992,7 @@ msgstr "Reproduce le GIF"
msgid "Plays the video"
msgstr "Reproduce le video"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Adde etiquettas de advertimento applicabile al contento multimedial que tu publica."
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "Politica"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornographia"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Publication"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Publicar"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Publicar toto"
@@ -7217,7 +7300,7 @@ msgstr "Preme pro vider sequitores de iste conto que tu tamben seque"
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Imagine precedente"
@@ -7257,8 +7340,8 @@ msgstr "Parametros de privatessa e securitate"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Politica de privatessa"
@@ -7266,7 +7349,11 @@ msgstr "Politica de privatessa"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Processante video..."
@@ -7280,10 +7367,10 @@ msgstr "Processante..."
msgid "profile"
msgstr "profilo"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profilo"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Listas public e compartibile de usatores a silentiar o blocar in massa."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Publicar"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Publicar publicationes"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Publicar responsas"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Publicar responsa"
@@ -7360,6 +7447,7 @@ msgstr "Notificationes de citation"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Citar publication"
@@ -7385,7 +7473,7 @@ msgstr "Citationes disactivate"
msgid "Quotes"
msgstr "Citationes"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Citationes de iste publication"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr "Leger publication del blog"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Leger minus"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Leger plus"
@@ -7720,13 +7808,13 @@ msgstr "Responsas disactivate"
msgid "Replies to this post are disabled."
msgstr "Responsas a iste publication es disactivate."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Responsa"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Responsa ({0, plural, one {# responsa} other {# responsas}})"
@@ -7892,7 +7980,7 @@ msgstr "Republicate per te"
msgid "Reposts"
msgstr "Republicationes"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Republicationes de iste publication"
@@ -7996,14 +8084,14 @@ msgstr "Tenta de novo le ultime action, que ha generate un error"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Retornar al pagina precedente"
msgid "Returns to home page"
msgstr "Retorna al pagina de initio"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Retorna al pagina precedente"
@@ -8063,7 +8151,7 @@ msgstr "Retorna al passo precedente"
msgid "Save"
msgstr "Salvar"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Salvar"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Salvar cambiamentos"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Salvar in mi canales"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "Rolar al alto"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Cercar"
@@ -8164,7 +8269,7 @@ msgstr "Cercar"
msgid "Search @{0}'s posts"
msgstr "Cercar publicationes de @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Cercar per nomine o interesse"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Cercar canales"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Cercar publicationes"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Cercar profilos"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Cercar..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Cercas per profilos"
@@ -8283,12 +8388,12 @@ msgstr "Vider le publicationes super #{tag} per usator"
msgid "See jobs at Bluesky"
msgstr "Vider offertas de empleo a Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "Selectiona tu lingua preferite pro traductiones in tu canal."
msgid "Select your preferred notification channels"
msgstr "Selige tu canales de notification preferite"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Inviar e-mail"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Inviar commentarios"
@@ -8566,7 +8671,7 @@ msgstr "Defini email pro reinitialisation de contrasigno"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Parametros"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Parametros salvate"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Activitate sexual o nuditate erotic."
@@ -8634,7 +8739,7 @@ msgstr "Sexualmente suggestive"
msgid "Share"
msgstr "Compartir"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Compartir"
@@ -8712,13 +8817,13 @@ msgstr "Comparti tu canal favorite!"
msgid "Shared Preferences Tester"
msgstr "Testator de preferentias compartite"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Monstrar"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Monstrar texto alternative"
@@ -8820,7 +8925,7 @@ msgstr "Monstrar advertimento e filtrar desde canales"
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Monstra information super quando iste publication ha essite create"
@@ -8828,8 +8933,8 @@ msgstr "Monstra information super quando iste publication ha essite create"
msgid "Shows other accounts you can switch to"
msgstr "Monstra altere contos al quales tu pote cambiar"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Monstra le contento"
@@ -8842,14 +8947,14 @@ msgstr "Monstra le contento"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Apertura de session necessari"
msgid "Signed in as @{0}"
msgstr "In session como @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Contos similar"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "Disveloppamento de software"
msgid "Some of your verifications are invalid."
msgstr "Alcunes de tu verificationes es invalide."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Alcun altere canales que pote placer te"
@@ -8994,7 +9095,7 @@ msgstr "Alcun error ha occurrite"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Alcun error ha occurrite, tenta de novo"
@@ -9020,7 +9121,7 @@ msgstr "Alcun error ha occurrite. Tenta de novo."
msgid "Something wrong? Let us know."
msgstr "Alcun problema? Informa nos."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "Pacchettos de initio"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Le pacchettos de initio te permitte compartir facilemente tu canales e personas favorite con tu amicos."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "Subscribe te a @{0} pro usar iste etiquettas:"
msgid "Subscribe to account activity"
msgstr "Subscribe te al activitate del conto"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Subscriber se al etiquettator"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Subscriber se a iste etiquettator"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Contos suggerite"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Suggerite pro te"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Suggestive"
@@ -9354,8 +9459,8 @@ msgstr "Terminos"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Conditiones de servicio"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "Illo es toto, gente!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Illo es toto!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Le conto potera interager con te post le disblocage."
@@ -9447,7 +9552,7 @@ msgstr "Le canal Discoperir"
msgid "The Discover feed now knows what you like"
msgstr "Le canal Discoperir ora sape lo que te place"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Le experientia es melior in le application. Discarga Bluesky ora e nos recomenciara desde ubi tu habera partite."
@@ -9527,7 +9632,7 @@ msgstr "Thema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Il non ha limite de tempore pro disactivation de conto, retorna a qualcunque momento."
@@ -9711,6 +9816,10 @@ msgstr "Le contento non se pote visualisar sin un conto de Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Iste conversation es con un conto delite o disactivate. Preme pro optiones"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Iste e-mail ja es associate a tu conto."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Iste canal es vacue! Es possibile que tu debe sequer plus usatores o adjustar tu parametros de lingua."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Iste canal es vacue."
@@ -9798,7 +9907,7 @@ msgstr "Iste lista es vacue."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Iste servicio de moderation es indisponibile. Vide hic infra pro plus detalios. Si iste problema persiste, contacta nos."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Iste publication affirma haber essite create in <0>{0}0>, mais illo ha essite vidite per Bluesky pro le prime vice in <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Iste publication essera occultate de canales e filos. Iste action es irreversibile."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Le autor del publication ha disactivate le citationes."
@@ -9834,7 +9943,7 @@ msgstr "Iste responsa essera placiate in un section occulte in basso de tu filo
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Iste servicio non ha fornite conditiones de servicio o un politica de privatessa."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "Isto removera tu publication de iste citation pro tote le usatores, e lo
msgid "Thread options"
msgstr "Optiones de filo"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Preferentias de filos"
@@ -9951,7 +10060,7 @@ msgstr "Hodie"
msgid "Toggle to enable or disable adult content"
msgstr "Commuta pro activar o disactivar contento pro adultos"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Commuta le sono"
@@ -9988,8 +10097,8 @@ msgstr "Topico"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Traducer"
@@ -10091,15 +10200,15 @@ msgstr "Information super le canal indisponibile"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Disblocar"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Disblocar"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Disblocar conto"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Disblocar le conto?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "Disfacer republication"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Disfacer republication ({0, plural, one {# republication} other {# republicationes}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Cessar de sequer {0}"
@@ -10151,7 +10264,7 @@ msgstr "Cessar de sequer {0}"
msgid "Unfollow account"
msgstr "Cessar de sequer conto"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Cessa de sequer le usator"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Disappreciar"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Disappreciar ({0, plural, one {# appreciation} other {# appreciationes}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Dissilentiar lista"
msgid "Unmute thread"
msgstr "Dissilentiar filo"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Dissilentiar video"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr "Disface le prorogation del recordatorio"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Cancellar le subscription"
@@ -10285,7 +10398,7 @@ msgstr "Cancellar le subscription"
msgid "Unsubscribe from list"
msgstr "Cancellar le subscription del lista"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Cancellar le subscription de iste etiquettator"
@@ -10293,7 +10406,7 @@ msgstr "Cancellar le subscription de iste etiquettator"
msgid "Unsubscribed from list"
msgstr "Cancellate le subscription del lista"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "Cargar desde files"
msgid "Upload from Library"
msgstr "Cargar desde bibliotheca"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Incargante imagines..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Incargante miniatura de ligamine..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Incargante video..."
@@ -10389,8 +10506,8 @@ msgstr "Usar fornitor predefinite"
msgid "Use in-app browser"
msgstr "Usar le navigator web interne al application"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Usar le navigator web interne al application pro aperir ligamines"
@@ -10445,6 +10562,10 @@ msgstr "Le usator te bloca"
msgid "User list by {0}"
msgstr "Lista de usatores de {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Lista de usatores tue"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Video"
@@ -10614,20 +10735,24 @@ msgstr "Canal de video"
msgid "Video from {0}: {text}"
msgstr "Video de {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Videojocos"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Video in pausa"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Video in reproduction"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Video non trovate."
@@ -10635,11 +10760,11 @@ msgstr "Video non trovate."
msgid "Video settings"
msgstr "Configurationes de video"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Video cargate"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Video: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videos"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Vider le avatar de {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Visualisar profilo de {0}"
@@ -10708,7 +10833,7 @@ msgstr "Vider plus"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr "Visitar sito"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Visitar tu parametros de notification"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Nos ha problemas de rete, tenta de novo"
@@ -10968,7 +11093,7 @@ msgstr "Pardono, mais non ha essite possibile cargar tu parolas silentiate in is
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Pardono, mais non ha essite possibile completar tu cerca. Tenta de novo in alcun minutas."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Nos regretta! Le publication que tu responde ha essite delite."
@@ -10977,7 +11102,7 @@ msgstr "Nos regretta! Le publication que tu responde ha essite delite."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Pardono! Non ha essite possibile trovar le pagina que tu ha cercate."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Pardono! Tu solo pote subscriber te a vinti etiquettatores, e tu ha attingite le limite de vinti."
@@ -11018,10 +11143,9 @@ msgstr "Qual es tu interesses?"
msgid "What do you want to call your starter pack?"
msgstr "Como tu vole nominar tu pacchetto de initio?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Qual es le novas?"
@@ -11097,6 +11221,14 @@ msgstr "Proque iste usator deberea esser revidite?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Scribe un message"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Scriber message"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Scribe tu responsa"
@@ -11133,8 +11265,8 @@ msgstr "www.mylivestream.tv"
msgid "Yes"
msgstr "Si"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Si, disactivar"
@@ -11188,7 +11320,7 @@ msgstr "Tu es in fila."
msgid "You are Live"
msgstr "Tu es in directo"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Tu non es plus in directo"
@@ -11200,7 +11332,7 @@ msgstr "Tu non es permitte incargar videos."
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Tu es ora in directo!"
@@ -11255,11 +11387,11 @@ msgstr "Ora tu pote eliger esser notificate quando personas specific publica. Si
msgid "You can now sign in with your new password."
msgstr "Tu pote ora aperir session con tu nove contrasigno."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Tu pote reactivar tu conto pro continuar a aperir session. Tu profilo e publicationes essera visibile a altere usatores."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "Tu ha blocate iste usator"
msgid "You have blocked this user. You cannot view their content."
msgstr "Tu ha blocate iste usator. Tu non pote visualisar lor contento."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Tu ha disactivate completemente le notificationes de responsa, citation e mention, consequentemente iste scheda non essera plus actualisate. Pro adjustar isto, visita tu <0>parametros de notification0>."
@@ -11376,6 +11508,14 @@ msgstr "Tu ha verificate tu adresse de e-mail con successo. Tu pote clauder iste
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Tu ha temporarimente attingite le limite pro le incargamento de video. Tenta lo de novo plus tarde."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Tu non ha create ancora un pacchetto de initio!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Tu debe sequer al minus septe altere personas pro generar un pacchetto de initio."
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "Tu debe conceder accesso a tu bibliotheca de photos pro salvar un codice QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Tu es in fila"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Tu ha aperite session con un contrasigno de application. Aperi session con tu contrasigno principal pro continuar le disactivation de tu conto."
@@ -11589,7 +11729,7 @@ msgstr "Tu ha attingite tu limite diari pro cargas de videos (troppo de bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Tu ha attingite tu limite diari pro cargas de videos (troppo de videos)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Il non ha plus videos a spectar. Forsan isto es un bon momento pro facer un pausa?"
@@ -11625,7 +11765,7 @@ msgstr "Tu appello ha essite inviate. Si tu appello ha successo, tu recipera un
msgid "Your birth date"
msgstr "Tu data de nascentia"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Tu navigator non supporta le formato de video. Retenta con un navigator differente."
@@ -11692,8 +11832,8 @@ msgstr "Tu pseudonymo complete essera <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Tu interesses"
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr "Tu contrasigno debe haber al minus 8 characteres."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Tu profilo, publicationes, canales e listas non essera plus visibile a altere usatores de Bluesky. Tu pote reactivar tu conto a qualcunque momento aperiente session."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po
index 904161226f..924b48cdf6 100644
--- a/src/locale/locales/id/messages.po
+++ b/src/locale/locales/id/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: id\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, other {# postingan ulang}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, other {# detik}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, other {# item belum dibaca}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, other {# item belum dibaca}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, other {# bln}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, other {pengikut}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, other {mengikuti}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, other {suka}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, other {suka}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, other {postingan}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, other {kutipan}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, other {posting ulang}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr "{0} menanggapi {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} menanggapi {1} pada {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, feed oleh {1}, disukai oleh {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, sebuah daftar oleh {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {# pengguna telah}} bergabung!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, other {# menit}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, other {# item belum dibaca}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>dan {2, plural, other {# lainnya}} sudah disertakan dalam paket pemula Anda"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, other {pengikut}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, other {mengikuti}}"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Tangkapan layar dari halaman profil dengan ikon lonceng sebelah tombol ikuti, yang menunjukkan fitur pemberitahuan aktifitas baru."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Tambah {0} lagi untuk melanjutkan"
msgid "Add {displayName} to starter pack"
msgstr "Tambahkan {displayName} dalam paket pemula"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Tambahkan peringatan konten"
@@ -754,11 +763,11 @@ msgstr "Tambahkan teks alt (opsional)"
msgid "Add another account"
msgstr "Tambahkan akun lain"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Tambahkan postingan lain"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "Tambahkan Sandi Aplikasi"
msgid "Add emoji reaction"
msgstr "Tambahkan emoji reaksi"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr "Rincian tambahan (batas 300 karakter)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Dewasa"
@@ -879,10 +888,10 @@ msgstr "Dewasa"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Konten Dewasa"
@@ -894,8 +903,8 @@ msgstr "Konten dewasa hanya dapat diaktifkan melalui laman <0>bsky.app0>."
msgid "Adult content is disabled."
msgstr "Konten dewasa dinonaktifkan."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Label Konten Dewasa"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "kresna@contoh.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Semua"
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Sudah masuk sebagai @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Teks alt"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Teks Alt"
@@ -1059,7 +1068,7 @@ msgstr "Email telah dikirim ke {0}. Email tersebut berisi kode konfirmasi yang d
msgid "An error has occurred"
msgstr "Telah terjadi kesalahan"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Terjadi kesalahan"
@@ -1067,7 +1076,7 @@ msgstr "Terjadi kesalahan"
msgid "An error occurred while compressing the video."
msgstr "Terjadi kesalahan saat mengompresi video."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr "Terjadi kesalahan saat mengambil feed."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Terjadi kesalahan saat membuat paket pemula. Coba lagi?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "Terjadi kesalahan saat memuat video. Silakan coba lagi nanti."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Terjadi kesalahan saat memuat video. Silakan coba lagi."
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Hewan"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "Animasi GIF"
@@ -1306,12 +1315,12 @@ msgstr "Tambahkan feed bawaan yang direkomendasikan"
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Arsip dari {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Arsip postingan"
@@ -1332,11 +1341,11 @@ msgstr "Anda yakin ingin menghapus paket pemula ini?"
msgid "Are you sure you want to discard your changes?"
msgstr "Anda yakin ingin membuang perubahan?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Anda yakin ingin meninggalkan percakapan ini?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Anda yakin ingin meninggalkan percakapan ini? Pesan akan dihapus untuk Anda, tetapi tidak untuk partisipan lainnya."
@@ -1344,11 +1353,7 @@ msgstr "Anda yakin ingin meninggalkan percakapan ini? Pesan akan dihapus untuk A
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Anda yakin ingin menghapus ini dari daftar feed Anda?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Anda yakin ingin membuang draf ini?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Anda yakin ingin membuang postingan ini?"
@@ -1364,7 +1369,7 @@ msgstr "Apakah Anda menulis dalam <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Seni"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Ketelanjangan artistik atau non-erotis."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Putar otomatis video dan GIF"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Kembali"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky tidak dapat memastikan keaslian tanggal yang diklaim."
@@ -1623,7 +1630,7 @@ msgstr "Ketentuan Layanan Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky akan memilih serangkaian akun yang direkomendasikan dari orang-orang dalam jaringan Anda."
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Jelajahi feed lainnya pada halaman Jelajah"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Jelajahi saran lainnya"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Jelajahi saran lainnya pada halaman Jelajah"
@@ -1770,8 +1777,8 @@ msgstr "Kamera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Batal mencari"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Tidak dapat berinteraksi dengan pengguna yang diblokir"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Obrolan"
@@ -1989,7 +1996,7 @@ msgstr "Pilih metode verifikasi domain"
msgid "Choose Feeds"
msgstr "Pilih Feed"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Pilihkan untuk saya"
@@ -2096,6 +2103,7 @@ msgstr "Keletak 🐴 keletuk 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Keletak 🐴 keletuk 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Tutup dialog GIF"
msgid "Close image"
msgstr "Tutup gambar"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Tutup penampil gambar"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Menutup peringatan pembaruan kata sandi"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Menutup komposer pos dan menghapus draf postingan"
@@ -2242,12 +2251,12 @@ msgstr "Selesaikan orientasi dan mulai menggunakan akun Anda"
msgid "Complete the challenge"
msgstr "Selesaikan tantangan"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Tulis postingan baru"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Tulis postingan hingga {0, plural, other {# karakter}} panjangnya"
@@ -2255,7 +2264,11 @@ msgstr "Tulis postingan hingga {0, plural, other {# karakter}} panjangnya"
msgid "Compose reply"
msgstr "Tulis balasan"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Mengompres video..."
@@ -2263,7 +2276,6 @@ msgstr "Mengompres video..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Konfigurasikan pengaturan penyaringan konten untuk kategori: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Diatur pada <0>pengaturan moderasi0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Konten & Media"
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "Peringatan Konten"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Peringatan konten"
@@ -2401,7 +2413,7 @@ msgstr "Latar menu konteks, klik untuk menutup menu."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Lanjutkan"
@@ -2420,7 +2432,7 @@ msgstr "Lanjutkan utas..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "Tidak dapat meninggalkan obrolan"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Tidak dapat memuat feed"
@@ -2643,8 +2655,8 @@ msgstr "Buat kode QR untuk paket pemula"
msgid "Create a starter pack"
msgstr "Buat paket pemula"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "Buatkan paket pemula untuk saya"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Buat paket lain"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Buat akun baru"
@@ -2772,7 +2784,7 @@ msgstr "Tanggal lahir"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Nonaktifkan akun"
@@ -2871,7 +2883,7 @@ msgstr "Hapus akun saya"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Hapus postingan"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Matikan subtitel"
@@ -2996,8 +3008,11 @@ msgstr "Dinonaktifkan"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Buang"
@@ -3006,11 +3021,12 @@ msgstr "Buang"
msgid "Discard changes?"
msgstr "Buang perubahan?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Buang draf?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Buang postingan?"
@@ -3037,7 +3053,7 @@ msgstr "Tutup"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Abaikan kesalahan"
@@ -3049,11 +3065,16 @@ msgstr "Tutup panduan memulai"
msgid "Dismiss interests"
msgstr "Abaikan minat"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Tutup bagian ini"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Ketuk dua kali atau tekan lama pada pesan untuk menambahkan reaksi"
msgid "Double tap to close the dialog"
msgstr "Ketuk dua kali untuk menutup dialog"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Ketuk dua kali untuk menyukai"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Unduh Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Unduh berkas CAR"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Lepaskan untuk menambahkan gambar"
@@ -3285,13 +3313,13 @@ msgstr "Ubah pengaturan interaksi postingan"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Edit profil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Edit Profil"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Nyalakan subtitel"
@@ -3421,13 +3449,13 @@ msgstr "Nyalakan subtitel"
msgid "Enable this source only"
msgstr "Aktifkan hanya sumber ini saja"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Aktifkan tren topik"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Aktifkan tren video dalam feed Discover Anda"
@@ -3464,7 +3492,7 @@ msgstr "Masukkan kata atau tagar"
msgid "Enter code"
msgstr "Masukkan kode"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Masuk ke layar penuh"
@@ -3501,7 +3529,7 @@ msgstr "Masukkan kata sandi"
msgid "Enter your username and password"
msgstr "Masukkan nama pengguna dan kata sandi Anda"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Masuk ke mode layar penuh"
@@ -3509,7 +3537,7 @@ msgstr "Masuk ke mode layar penuh"
msgid "Entertainment"
msgstr "Hiburan"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Galat"
@@ -3570,7 +3598,7 @@ msgstr "Kecualikan pengguna yang Anda ikuti"
msgid "Excludes users you follow"
msgstr "Kecuali pengguna yang Anda ikuti"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Keluar dari layar penuh"
@@ -3578,11 +3606,7 @@ msgstr "Keluar dari layar penuh"
msgid "Exits account deletion process"
msgstr "Keluar dari proses penghapusan akun"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Keluar dari tampilan gambar"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Bentangkan teks alt"
@@ -3598,11 +3622,11 @@ msgstr "Bentangkan atau ciutkan postingan lengkap yang Anda balas"
msgid "Expand post text"
msgstr "Bentangkan teks posting"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Bentangkan atau ciutkan postingan"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "URI diharapkan mengarah ke suatu catatan data"
@@ -3639,7 +3663,7 @@ msgstr "Gambar seksual eksplisit."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Jelajahi"
@@ -3657,8 +3681,8 @@ msgstr "Ekspor data saya"
msgid "Export My Data"
msgstr "Ekspor Data Saya"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Media eksternal"
@@ -3730,7 +3754,7 @@ msgstr "Gagal menghapus postingan, silakan coba lagi"
msgid "Failed to delete starter pack"
msgstr "Gagal menghapus paket pemula"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "Gagal mengikuti semua akun yang disarankan, silakan coba lagi"
@@ -3829,6 +3853,10 @@ msgstr "Gagal menghapus verifikasi"
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Feed"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Feed oleh {0}"
@@ -3941,7 +3970,7 @@ msgstr "Feed tidak tersedia"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Masukan"
@@ -3958,7 +3987,7 @@ msgstr "Masukkan dikirim ke operator feed"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Feed"
@@ -4008,6 +4037,10 @@ msgstr "Saring dari siapa saja Anda akan menerima notifikasi"
msgid "Finalizing"
msgstr "Menyelesaikan"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Terakhir! Pantau postingan yang penting bagi Anda. Simpan postingan tersebut untuk dilihat kembali kapan saja."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Cari orang untuk diikuti"
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Ikuti"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Ikuti {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Ikuti {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Ikuti akun"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Ikuti akun"
msgid "Follow all"
msgstr "Ikuti semua"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Ikuti semua akun"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Ikuti Balik"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Mengikuti semua akun!"
@@ -4195,8 +4228,8 @@ msgstr "Pengikut yang Anda kenal"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Mengikuti"
msgid "Following {0}"
msgstr "Mengikuti {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Mengikuti {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Preferensi feed Mengikuti"
@@ -4264,7 +4297,7 @@ msgstr "Untuk alasan keamanan, Anda tidak akan dapat melihat ini lagi. Jika Anda
msgid "For the best experience, we recommend using the theme font."
msgstr "Untuk pengalaman terbaik, kami sarankan menggunakan font tema."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Untuk Anda"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Dari <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Buatkan paket pemula"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Dapatkan bantuan"
@@ -4376,10 +4409,15 @@ msgstr "Dapatkan notifikasi ketika seseorang memposting"
msgid "Get started"
msgstr "Memulai"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Beri wajah pada profil Anda"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Kembali"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Media Sensitif"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Bantuan"
@@ -4632,9 +4670,9 @@ msgstr "Daftar yang disembunyikan"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Sembunyikan daftar pengguna"
msgid "Hide verification badges"
msgstr "Sembunyikan lencana verifikasi"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Menyembunyikan konten"
@@ -4760,9 +4798,9 @@ msgstr "Harap tunggu! Kami secara bertahap memberikan akses video, dan Anda masi
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Beranda"
@@ -4819,7 +4857,7 @@ msgstr "Saya mengerti"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Beralih ke status teks alt yang dibentangkan jika teks alt panjang"
@@ -4872,7 +4910,7 @@ msgstr "Jika Anda ingin membatasi siapa saja yang dapat menerima notifikasi untu
msgid "If you're a developer, you can host your own server."
msgstr "Jika Anda merupakan pengembang, Anda bisa menghosting peladen Anda sendiri."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Jika ingin mengubah panggilan atau email, lakukanlah sebelum Anda menonaktifkan akun."
@@ -4996,6 +5034,10 @@ msgstr "Pengaturan interaksi"
msgid "Introducing activity notifications"
msgstr "Memperkenalkan notifikasi aktivitas"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Hanya ada Anda saat ini! Tambahkan lebih banyak orang ke paket pemula Anda melalui pencarian di atas."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID Kerja: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Terus kabari saya"
msgid "KWS website"
msgstr "Situs KWS"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Dilabeli oleh {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Dilabeli oleh pemosting."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Label"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Label ditambahkan"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "Pelajari lebih lanjut mengenai hosting mandiri PDS Anda."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Pelajari lebih lanjut tentang moderasi yang diterapkan pada konten ini"
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Pelajari lebih lanjut tentang peringatan ini"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Pelajari lebih lanjut."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Tinggalkan"
@@ -5286,7 +5328,7 @@ msgstr "Meninggalkan Bluesky"
msgid "left to go."
msgstr "yang tersisa"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Biarkan saya memilih"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Suka"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Suka ({0, plural, other {# suka}})"
@@ -5380,7 +5422,7 @@ msgstr "Suka pada postingan ulang Anda"
msgid "Likes of your reposts notifications"
msgstr "Suka pada notifikasi postingan ulang Anda"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Suka pada postingan ini"
@@ -5474,7 +5516,7 @@ msgstr "Daftar batal dibisukan"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Daftar"
@@ -5496,10 +5538,20 @@ msgstr "Siaran langsung"
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Muat lebih banyak"
msgid "Load more suggested feeds"
msgstr "Muat lebih banyak feed yang disarankan"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Muat notifikasi baru"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo oleh @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo oleh <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Buatkan untuk saya"
msgid "Make sure this is where you intend to go!"
msgstr "Pastikan ini adalah situs web yang Anda tuju!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Kelola feed tersimpan"
@@ -5638,7 +5690,16 @@ msgstr "Mungkin nanti"
msgid "Media"
msgstr "Media"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Media yang mungkin mengganggu atau tidak pantas untuk sebagian orang."
@@ -5653,7 +5714,7 @@ msgstr "pengguna yang Anda sebut"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Sebutan"
@@ -5716,6 +5777,10 @@ msgstr "Notifikasi lainnya"
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Film"
msgid "Music"
msgstr "Musik"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Menuju ke paket pemula"
msgid "Navigates to the next screen"
msgstr "Menuju ke layar berikutnya"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Menuju ke profil Anda"
@@ -5983,6 +6049,7 @@ msgstr "Alamat email baru"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Fitur Baru"
@@ -6018,12 +6085,12 @@ msgstr "Pesan baru"
msgid "New password"
msgstr "Kata sandi baru"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Postingan baru"
@@ -6085,7 +6152,7 @@ msgstr "Berita"
msgid "Next"
msgstr "Berikutnya"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Gambar berikutnya"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "Tanpa Panel DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Tidak ada kadaluarsa dipasang"
@@ -6136,7 +6207,7 @@ msgstr "Tidak ada gambar"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Belum ada yang menyukai"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "Tidak lagi mengikuti {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "Belum ada kutipan"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Tidak ada hasil"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Tidak ada hasil"
@@ -6238,7 +6309,7 @@ msgstr "Tidak ada hasil."
msgid "No search results found for \"{search}\"."
msgstr "Tidak ditemukan hasil pencarian untuk \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "Tidak terima kasih"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr "Tidak diikuti oleh siapapun yang Anda ikuti"
msgid "Not Found"
msgstr "Tidak Ditemukan"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Catatan tentang berbagi"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Pengaturan notifikasi"
@@ -6349,10 +6424,10 @@ msgstr "Suara Notifikasi"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Notifikasi"
@@ -6368,8 +6443,8 @@ msgstr "sekarang"
msgid "Now"
msgstr "Sekarang"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Ketelanjangan"
@@ -6390,7 +6465,7 @@ msgstr "Oh tidak!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Oke"
@@ -6417,23 +6492,23 @@ msgstr "di<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Pengaturan ulang orientasi"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Satu atau beberapa GIF belum memiliki teks alt."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Satu atau beberapa gambar belum memiliki teks alt."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Satu atau beberapa video belum memiliki teks alt."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ups, ada yang tidak beres!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ups!"
msgid "Open avatar creator"
msgstr "Buka pembuat avatar"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "Buka opsi percakapan"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Buka menu geser"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Buka pemilih emoji"
@@ -6557,7 +6636,7 @@ msgstr "Buka log sistem"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Membuka dialog untuk menambahkan peringatan konten pada postingan Anda"
@@ -6589,25 +6668,25 @@ msgstr "Membuka dialog ubah panggilan"
msgid "Opens composer"
msgstr "Membuka penyusun postingan"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Membuka pemilih emoji"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Membuka alur untuk membuat akun baru Bluesky"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Membuka alur untuk masuk ke akun Bluesky Anda yang sudah ada"
@@ -6620,7 +6699,7 @@ msgstr "Membuka dialog pemilihan GIF"
msgid "Opens helpdesk in browser"
msgstr "Membuka bantuan dalam peramban"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "Membuka formulir pengaturan ulang kata sandi"
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "Status OTA: Tidak ada yang tersedia"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Lainnya"
@@ -6763,13 +6846,13 @@ msgstr "Kata sandi diganti"
msgid "Password updated!"
msgstr "Kata sandi diganti!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Jeda"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Jeda video"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "Fotografi"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Gambar yang ditujukan untuk orang dewasa."
@@ -6874,9 +6957,9 @@ msgstr "Feed Tersemat"
msgid "Pinned to your feeds"
msgstr "Disematkan ke daftar feed Anda"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Putar"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Putar {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Putar video"
@@ -6893,11 +6976,11 @@ msgstr "Putar video"
msgid "Play Video"
msgstr "Putar Video"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Memutar atau menjeda GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Memutar atau menjeda video"
@@ -6909,7 +6992,7 @@ msgstr "Putar GIF"
msgid "Plays the video"
msgstr "Memutar video"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Silakan tambahkan label peringatan konten yang sesuai dengan media yang Anda posting."
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "Politik"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornografi"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Postingan"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Posting"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Posting Semua"
@@ -7217,7 +7300,7 @@ msgstr "Tekan untuk melihat pengikut akun ini yang juga Anda ikuti"
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Gambar sebelumnya"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Kebijakan Privasi"
@@ -7266,7 +7349,11 @@ msgstr "Kebijakan Privasi"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Memproses video..."
@@ -7280,10 +7367,10 @@ msgstr "Memproses..."
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Daftar terbuka yang dapat dibagikan untuk membisukan atau memblokir pengguna secara massal."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Kirim postingan"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Kirim postingan"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Kirim balasan"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Kirim balasan"
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Kutip postingan"
@@ -7385,7 +7473,7 @@ msgstr "Kutipan dinonaktifkan"
msgid "Quotes"
msgstr "Kutipan"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Kutipan postingan ini"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr "Baca blog postingan (dalam bahasa Inggris)"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Sembunyikan"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Lihat selengkapnya"
@@ -7720,13 +7808,13 @@ msgstr "Balasan dinonaktifkan"
msgid "Replies to this post are disabled."
msgstr "Balasan ke postingan ini dinonaktifkan."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Balas"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Balas ({0, plural, other {# balasan}})"
@@ -7892,7 +7980,7 @@ msgstr "Diposting ulang oleh Anda"
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Postingan ulang postingan ini"
@@ -7996,14 +8084,14 @@ msgstr "Mencoba kembali tindakan terakhir yang gagal"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Kembali ke halaman sebelumnya"
msgid "Returns to home page"
msgstr "Kembali ke beranda"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Kembali ke halaman sebelumnya"
@@ -8063,7 +8151,7 @@ msgstr "Kembali ke langkah sebelumnya"
msgid "Save"
msgstr "Simpan"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Simpan"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Simpan perubahan"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Simpan ke daftar feed saya"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "Gulir ke atas"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Cari"
@@ -8164,7 +8269,7 @@ msgstr "Cari"
msgid "Search @{0}'s posts"
msgstr "Cari postingan @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Cari berdasarkan nama atau minat"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Cari feed"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Cari postingan"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Cari profil"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Cari..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Mencari profil"
@@ -8283,12 +8388,12 @@ msgstr "Lihat postingan #{tag} dari pengguna"
msgid "See jobs at Bluesky"
msgstr "Lihat lowongan pekerjaan di Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "Pilih bahasa yang disukai untuk terjemahan dalam feed Anda."
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Kirim Email"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Kirim masukan"
@@ -8566,7 +8671,7 @@ msgstr "Atur email untuk pengaturan ulang kata sandi"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Pengaturan"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Pengaturan disimpan"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Aktivitas seksual atau ketelanjangan erotis."
@@ -8634,7 +8739,7 @@ msgstr "Bermuatan Seksual"
msgid "Share"
msgstr "Bagikan"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Bagikan"
@@ -8712,13 +8817,13 @@ msgstr "Bagikan feed favorit Anda!"
msgid "Shared Preferences Tester"
msgstr "Penguji Preferensi Bersama"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Tampilkan"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Tampilkan teks alt"
@@ -8820,7 +8925,7 @@ msgstr "Tampilkan peringatan dan saring dari feed"
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Menampilkan informasi tentang kapan postingan ini dibuat"
@@ -8828,8 +8933,8 @@ msgstr "Menampilkan informasi tentang kapan postingan ini dibuat"
msgid "Shows other accounts you can switch to"
msgstr "Menampilkan akun lain yang dapat Anda alihkan"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Menampilkan konten"
@@ -8842,14 +8947,14 @@ msgstr "Menampilkan konten"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Wajib Masuk"
msgid "Signed in as @{0}"
msgstr "Masuk sebagai @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Akun serupa"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "Pengembang Perangkat Lunak"
msgid "Some of your verifications are invalid."
msgstr "Beberapa dari verifikasi Anda tidak valid."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Beberapa feed lain yang mungkin Anda suka"
@@ -8994,7 +9095,7 @@ msgstr "Ada yang tidak beres"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Ada yang tidak beres, silakan coba lagi"
@@ -9020,7 +9121,7 @@ msgstr "Ada yang tidak beres. Silakan coba lagi."
msgid "Something wrong? Let us know."
msgstr "Ada masalah? Beri tahu kami."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "Paket Pemula"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Paket pemula memudahkan Anda untuk berbagi feed dan akun favorit Anda dengan teman."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "Berlangganan @{0} untuk menggunakan label berikut:"
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Berlangganan Pelabel"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Berlangganan pelabel ini"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Akun yang disarankan"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Disarankan untuk Anda"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Sugestif"
@@ -9354,8 +9459,8 @@ msgstr "Ketentuan"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Ketentuan Layanan"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "Sekian!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Itu saja!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Akun ini dapat berinteraksi kembali dengan Anda setelah blokir dibuka."
@@ -9447,7 +9552,7 @@ msgstr "Feed Discover"
msgid "The Discover feed now knows what you like"
msgstr "Feed Discover kini tahu apa yang Anda sukai"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Dapatkan pengalaman yang lebih baik dalam aplikasi. Unduh Bluesky sekarang dan kami akan melanjutkan dari langkah terakhir yang Anda tinggalkan."
@@ -9527,7 +9632,7 @@ msgstr "Tema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Tidak ada batasan waktu untuk penonaktifan akun, Anda bisa kembali kapan saja."
@@ -9711,6 +9816,10 @@ msgstr "Konten ini tidak dapat dilihat tanpa akun Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Percakapan ini dilakukan dengan akun yang telah dihapus atau dinonaktifkan. Tekan untuk opsi lain"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Email ini sudah terhubung dengan akun Anda."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Feed ini kosong! Anda mungkin perlu mengikuti lebih banyak pengguna atau menyesuaikan pengaturan bahasa."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Feed ini kosong."
@@ -9798,7 +9907,7 @@ msgstr "Daftar ini kosong."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Layanan moderasi ini tidak tersedia. Lihat detail lebih lanjut di bawah. Jika masalah berlanjut, hubungi kami."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Postingan ini mengklaim dibuat pada <0>{0}0>, tetapi baru terlihat di Bluesky pada <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Postingan ini akan disembunyikan dari semua feed dan utas. Tindakan ini tidak dapat dibatalkan."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Pembuat postingan ini telah menonaktifkan kutipan."
@@ -9834,7 +9943,7 @@ msgstr "Balasan ini akan disortir ke bagian tersembunyi di bawah utas Anda dan a
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Layanan ini tidak menyediakan ketentuan layanan atau kebijakan privasi."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "Ini akan menghapus postingan Anda dari kutipan ini untuk semua pengguna,
msgid "Thread options"
msgstr "Opsi utas"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Preferensi utas"
@@ -9951,7 +10060,7 @@ msgstr "Hari ini"
msgid "Toggle to enable or disable adult content"
msgstr "Beralih untuk mengaktifkan atau menonaktifkan konten dewasa"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Mengaktifkan atau menonaktifkan suara"
@@ -9988,8 +10097,8 @@ msgstr "Topik"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Terjemahkan"
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Buka blokir"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Buka blokir"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Buka blokir akun"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Buka Blokir Akun?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "Batalkan posting ulang"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Batal posting ulang ({0, plural, other {# postingan ulang}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Berhenti ikuti {0}"
@@ -10151,7 +10264,7 @@ msgstr "Berhenti ikuti {0}"
msgid "Unfollow account"
msgstr "Berhenti ikuti akun"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Berhenti mengikuti pengguna"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Batal suka"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Batal suka ({0, plural, other {# suka}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Bunyikan daftar"
msgid "Unmute thread"
msgstr "Bunyikan utas"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Bunyikan video"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr "Batalkan penundaan pengingat email"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Berhenti langganan"
@@ -10285,7 +10398,7 @@ msgstr "Berhenti langganan"
msgid "Unsubscribe from list"
msgstr "Berhenti langganan daftar ini"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Berhenti langganan pelabel ini"
@@ -10293,7 +10406,7 @@ msgstr "Berhenti langganan pelabel ini"
msgid "Unsubscribed from list"
msgstr "Telah berhenti berlangganan dari daftar"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "Unggah dari Berkas"
msgid "Upload from Library"
msgstr "Unggah dari Pustaka"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Mengunggah gambar..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Mengunggah keluku tautan..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Mengunggah video..."
@@ -10389,8 +10506,8 @@ msgstr "Gunakan penyedia panggilan bawaan"
msgid "Use in-app browser"
msgstr "Gunakan peramban dalam aplikasi"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Gunakan peramban dalam aplikasi untuk membuka tautan"
@@ -10445,6 +10562,10 @@ msgstr "Pengguna Memblokir Anda"
msgid "User list by {0}"
msgstr "Daftar pengguna {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Daftar pengguna Anda"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Video"
@@ -10614,20 +10735,24 @@ msgstr "Feed Video"
msgid "Video from {0}: {text}"
msgstr "Video dari {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Permainan Video"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Video telah dijeda"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Video sedang diputar"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Video tidak ditemukan."
@@ -10635,11 +10760,11 @@ msgstr "Video tidak ditemukan."
msgid "Video settings"
msgstr "Pengaturan video"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Video diunggah"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Video: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Video"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Lihat avatar {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Lihat profil {0}"
@@ -10708,7 +10833,7 @@ msgstr "Lihat lainnya"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Kami mengalami masalah jaringan, coba lagi"
@@ -10968,7 +11093,7 @@ msgstr "Mohon maaf, untuk saat ini kami tidak dapat memuat kata yang Anda bisuka
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Maaf, pencarian Anda tidak dapat dilakukan. Mohon coba lagi dalam beberapa menit."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Kami mohon maaf! Postingan yang Anda balas telah dihapus."
@@ -10977,7 +11102,7 @@ msgstr "Kami mohon maaf! Postingan yang Anda balas telah dihapus."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Maaf! Kami tidak dapat menemukan halaman yang Anda cari."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Maaf! Anda hanya dapat berlangganan dua puluh pelabel, dan Anda telah mencapai batas tersebut."
@@ -11018,10 +11143,9 @@ msgstr "Apa saja minat Anda?"
msgid "What do you want to call your starter pack?"
msgstr "Apa nama paket pemula Anda?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Apa kabar?"
@@ -11097,6 +11221,14 @@ msgstr "Mengapa pengguna ini perlu ditinjau?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Tulis pesan"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Tulis postingan"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Tulis balasan Anda"
@@ -11133,8 +11265,8 @@ msgstr "www.mylivestream.tv"
msgid "Yes"
msgstr "Ya"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Ya, nonaktifkan"
@@ -11188,7 +11320,7 @@ msgstr "Anda sedang dalam antrian."
msgid "You are Live"
msgstr "Anda sedang siaran langsung"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Anda tidak lagi bersiaran langsung"
@@ -11200,7 +11332,7 @@ msgstr "Anda tidak diizinkan untuk mengunggah video."
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Anda sekarang bersiaran langsung!"
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Sekarang Anda dapat masuk dengan kata sandi baru."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Anda dapat mengaktifkan kembali akun Anda untuk melanjutkan masuk. Profil dan postingan Anda akan terlihat oleh pengguna lain."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "Anda telah memblokir pengguna ini"
msgid "You have blocked this user. You cannot view their content."
msgstr "Anda telah memblokir pengguna ini. Anda tidak dapat melihat konten mereka."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr "Anda telah berhasil memverifikasi alamat email Anda. Anda dapat menutup
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Anda telah mencapai batas sementara unggahan video. Silakan coba lagi nanti."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Anda belum membuat paket pemula!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Anda harus mengikuti setidaknya tujuh orang sebelum membuat paket pemula."
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "Anda harus memberikan akses ke pustaka foto Anda untuk menyimpan kode QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Anda sedang dalam antrian"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Anda masuk menggunakan Sandi Aplikasi. Mohon gunakan kata sandi utama untuk melanjutkan penonaktifan akun Anda."
@@ -11589,7 +11729,7 @@ msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak bita)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak video)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Anda kehabisan video untuk ditonton. Mungkin sudah saatnya untuk beristirahat?"
@@ -11625,7 +11765,7 @@ msgstr "Banding Anda telah diajukan. Jika banding Anda berhasil, Anda akan mener
msgid "Your birth date"
msgstr "Tanggal lahir Anda"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Peramban Anda tidak mendukung format video. Silakan coba peramban lain."
@@ -11692,8 +11832,8 @@ msgstr "Panggilan lengkap Anda akan menjadi <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Minat Anda"
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr "Kata sandi Anda harus terdiri dari setidaknya 8 karakter."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Profil, postingan, feed, dan daftar Anda tidak akan terlihat lagi oleh pengguna Bluesky lain. Anda dapat mengaktifkan kembali kapan saja dengan cara masuk ke akun."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po
index 02d54b0adb..89e834cc29 100644
--- a/src/locale/locales/it/messages.po
+++ b/src/locale/locales/it/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: it\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# ripubblicazione} other {# ripubblicazioni}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# secondo} other {# secondi}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# elemento non letto} other {# elementi non letti}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# elemento non letto} other {# elementi non letti}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# mese} other {# mesi}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, one {1 altro post} other {# altri post}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {follower} other {follower}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {seguito} other {seguiti}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {mi piace} other {mi piace}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {mi piace} other {mi piace}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {post} other {post}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citazione} other {citazioni}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {repost} other {repost}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {salvataggio} other {salvataggi}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (account)"
@@ -189,11 +193,11 @@ msgstr "{0} ha reagito con {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} ha reagito con {1} a {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, un feed di {1}, è piaciuto a {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, una lista di {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {# utenti si sono uniti}}!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# minuto} other {# minuti}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# elemento non letto} other {# elementi non letti}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>e {2, plural, one {# altro} other {# altri}} sono inclusi nel tuo starter pack"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {follower} other {follower}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {seguito} other {seguiti}}"
@@ -580,6 +584,11 @@ msgstr "Uno screenshot di un post con un nuovo pulsante accanto al pulsante di c
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Uno screenshot di una pagina del profilo con un'icona a forma di campanella accanto al pulsante Segui, che indica la nuova funzione di notifica delle attività."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Aggiungi {0} utenti per continuare"
msgid "Add {displayName} to starter pack"
msgstr "Aggiungi {displayName} allo starter pack"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Aggiungi un avviso sul contenuto"
@@ -754,11 +763,11 @@ msgstr "Aggiungi testo alternativo (opzionale)"
msgid "Add another account"
msgstr "Aggiungi un altro account"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Aggiungi un altro post"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Aggiungi un altro post al thread"
@@ -776,12 +785,12 @@ msgstr "Aggiungi password per app"
msgid "Add emoji reaction"
msgstr "Aggiungi reazione con emoji"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Aggiungi immagine"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Aggiungi media al post"
@@ -871,7 +880,7 @@ msgstr "Dettagli aggiuntivi (massimo 1000 caratteri)"
msgid "Additional details (limit 300 characters)"
msgstr "Ulteriori dettagli (massimo 300 caratteri)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Esplicito"
@@ -879,10 +888,10 @@ msgstr "Esplicito"
msgid "Adult content"
msgstr "Contenuto per adulti"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Contenuto per adulti"
@@ -894,8 +903,8 @@ msgstr "I contenuti per adulti possono essere abilitati solo dal sito Web a <0>b
msgid "Adult content is disabled."
msgstr "Il contenuto per adulti è disattivato."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Etichette per contenuti per adulti"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Tutte"
@@ -1017,7 +1026,7 @@ msgstr "Hai già un account?"
msgid "Already signed in as @{0}"
msgstr "Hai effettuato l'accesso come @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Testo alternativo"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Testo alternativo"
@@ -1059,7 +1068,7 @@ msgstr "È stata inviata un'email a {0}. Include un codice di conferma che puoi
msgid "An error has occurred"
msgstr "Si è verificato un errore"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Si è verificato un errore"
@@ -1067,7 +1076,7 @@ msgstr "Si è verificato un errore"
msgid "An error occurred while compressing the video."
msgstr "Si è verificato un errore durante la compressione del video."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "Si è verificato un errore durante il recupero degli account suggeriti."
@@ -1076,7 +1085,7 @@ msgstr "Si è verificato un errore durante il recupero degli account suggeriti."
msgid "An error occurred while fetching the feed."
msgstr "Si è verificato un errore recuperando il feed."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Si è verificato un errore nel creare il tuo starter pack. Vuoi riprovare?"
@@ -1088,7 +1097,7 @@ msgstr "Si è verificato un errore nascondendo il suggerimento. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "Si è verificato un errore durante il caricamento del video. Riprova più tardi."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Si è verificato un errore durante il caricamento del video. Riprova."
@@ -1181,7 +1190,7 @@ msgstr "Benessere degli animali"
msgid "Animals"
msgstr "Animali"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF animata"
@@ -1306,12 +1315,12 @@ msgstr "Applica i feed consigliati predefiniti"
msgid "Apply Pull Request"
msgstr "Applica pull request"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Archiviato da {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Post archiviato"
@@ -1332,11 +1341,11 @@ msgstr "Eliminare questo starter pack?"
msgid "Are you sure you want to discard your changes?"
msgstr "Annullare le modifiche?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Vuoi abbandonare questa conversazione?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Abbandonare questa conversazione? I messaggi verranno eliminati per te, ma non per gli altri partecipanti."
@@ -1344,11 +1353,7 @@ msgstr "Abbandonare questa conversazione? I messaggi verranno eliminati per te,
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Vuoi rimuoverlo dai tuoi feed?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Scartare questa bozza?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Scartare questo post?"
@@ -1364,7 +1369,7 @@ msgstr "Stai scrivendo in <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Arte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Nudità artistica o non erotica."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Riproduci automaticamente video e GIF"
@@ -1404,11 +1409,13 @@ msgstr "Disponibile"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Indietro"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky non può confermare l'autenticità della data dichiarata."
@@ -1623,7 +1630,7 @@ msgstr "Termini di servizio di Bluesky"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Bluesky memorizza i tuoi contatti come dati codificati. La rimozione dei tuoi contatti eliminerà immediatamente questi dati."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky sceglierà un set di account consigliati dal tuo network."
@@ -1664,20 +1671,20 @@ msgstr "Violazione regole del sito"
msgid "Browse custom feeds"
msgstr "Esplora feed personalizzati"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "Esplora più account"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Scopri nuovi feed nella pagina Esplora"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Scopri nuovi suggerimenti"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Scopri nuovi suggerimenti nella pagina Esplora"
@@ -1770,8 +1777,8 @@ msgstr "Fotocamera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Fotocamera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Annulla la ricerca"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Non puoi interagire con un utente bloccato"
@@ -1901,9 +1908,9 @@ msgstr "Modifiche salvate"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Messaggi"
@@ -1989,7 +1996,7 @@ msgstr "Scegli il metodo di verifica del dominio"
msgid "Choose Feeds"
msgstr "Scegli feed"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Scegli per me"
@@ -2096,6 +2103,7 @@ msgstr "Clop 🐴 clop 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Clop 🐴 clop 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Chiudi la finestra di dialogo GIF"
msgid "Close image"
msgstr "Chiudi l'immagine"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Chiudi il visualizzatore di immagini"
+msgstr "Chiudi visualizzatore immagini"
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr "Chiudi finestra di benvenuto"
msgid "Closes password update alert"
msgstr "Chiude l'avviso di aggiornamento della password"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Annulla la creazione del post ed elimina la bozza"
@@ -2242,12 +2251,12 @@ msgstr "Completa la registrazione e inizia a usare il tuo account"
msgid "Complete the challenge"
msgstr "Completa la challenge"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Scrivi un nuovo post"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Scrivi post fino a {0, plural, other {# caratteri}}"
@@ -2255,7 +2264,11 @@ msgstr "Scrivi post fino a {0, plural, other {# caratteri}}"
msgid "Compose reply"
msgstr "Scrivi la risposta"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Compressione del video..."
@@ -2263,7 +2276,6 @@ msgstr "Compressione del video..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Configura l'impostazione del filtro dei contenuti per la categoria: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "Configura il banner delle dirette"
@@ -2272,8 +2284,8 @@ msgstr "Configura il banner delle dirette"
msgid "Configured in <0>moderation settings0>."
msgstr "Configurato nelle <0>impostazioni di moderazione0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "Contatti importati"
msgid "Contacts removed"
msgstr "Contatti rimossi"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Contenuti e media"
@@ -2389,7 +2401,7 @@ msgstr "Contenuti che promuovono o raffigurano autolesionismo"
msgid "Content Warning"
msgstr "Avviso sul contenuto"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Avviso sui contenuti"
@@ -2401,7 +2413,7 @@ msgstr "Sfondo del menu contestuale, clicca per chiudere il menu."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Continua"
@@ -2420,7 +2432,7 @@ msgstr "Continua thread..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "Impossibile seguire tutte le corrispondenze. {0}"
msgid "Could not leave chat"
msgstr "Errore nell'abbandonare la conversazione"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Non è stato possibile caricare il feed"
@@ -2643,8 +2655,8 @@ msgstr "Crea un codice QR per uno starter pack"
msgid "Create a starter pack"
msgstr "Crea uno starter pack"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Crea uno starter pack"
@@ -2654,12 +2666,12 @@ msgstr "Crea uno starter pack per me"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Creane un altro"
msgid "Create moderation list"
msgstr "Crea lista di moderazione"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Crea un nuovo account"
@@ -2772,7 +2784,7 @@ msgstr "Data di nascita"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Disattiva account"
@@ -2871,7 +2883,7 @@ msgstr "Elimina il mio account"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Elimina il post"
@@ -2981,7 +2993,7 @@ msgstr "Disabilita le citazioni di questo post"
msgid "Disable replies entirely"
msgstr "Disabilita tutte le risposte"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Disattiva sottotitoli"
@@ -2996,8 +3008,11 @@ msgstr "Disabilitato"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Scartare"
@@ -3006,11 +3021,12 @@ msgstr "Scartare"
msgid "Discard changes?"
msgstr "Scartare le modifiche?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Scartare la bozza?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Scartare il post?"
@@ -3037,7 +3053,7 @@ msgstr "Ignora"
msgid "Dismiss banner"
msgstr "Chiudi banner"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Ignora errore"
@@ -3049,11 +3065,16 @@ msgstr "Ignora la guida iniziale"
msgid "Dismiss interests"
msgstr "Ignora gli interessi"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "Chiudi il banner delle dirette"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Ignora questa sezione"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Ignora questo suggerimento"
@@ -3121,8 +3142,8 @@ msgstr "Non preoccuparti! Tutti i messaggi e le impostazioni esistenti sono stat
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Tocca due volte o tieni premuto il messaggio per aggiungere una reazione
msgid "Double tap to close the dialog"
msgstr "Tocca due volte per chiudere la finestra"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Tocca due volte per mettere mi piace"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Scarica Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Scarica il file CAR"
msgid "Doxxing"
msgstr "Diffusione di dati personali"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "Bozze"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Trascina e rilascia per aggiungere immagini"
@@ -3285,13 +3313,13 @@ msgstr "Modifica impostazioni di interazione del post"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Modifica profilo"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Modifica profilo"
@@ -3413,7 +3441,7 @@ msgstr "Abilita notifiche push"
msgid "Enable quote posts of this post"
msgstr "Abilita le citazioni di questo post"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Attiva sottotitoli"
@@ -3421,13 +3449,13 @@ msgstr "Attiva sottotitoli"
msgid "Enable this source only"
msgstr "Abilita solo questa fonte"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Abilita gli argomenti di tendenza"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Attiva i video di tendenza nel feed Discover"
@@ -3464,7 +3492,7 @@ msgstr "Inserisci una parola o tag"
msgid "Enter code"
msgstr "Inserisci codice"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Passa a schermo intero"
@@ -3501,7 +3529,7 @@ msgstr "Inserisci la tua password"
msgid "Enter your username and password"
msgstr "Inserisci il tuo nome utente e la tua password"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Passa a schermo intero"
@@ -3509,7 +3537,7 @@ msgstr "Passa a schermo intero"
msgid "Entertainment"
msgstr "Intrattenimento"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Errore"
@@ -3570,7 +3598,7 @@ msgstr "Escludi utenti che segui"
msgid "Excludes users you follow"
msgstr "Esclude gli utenti che segui"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Esci da schermo intero"
@@ -3578,11 +3606,7 @@ msgstr "Esci da schermo intero"
msgid "Exits account deletion process"
msgstr "Uscita dall'eliminazione dell'account"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Uscita dalla visualizzazione dell'immagine"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Espandi il testo alternativo"
@@ -3598,11 +3622,11 @@ msgstr "Espandi o comprimi il post a cui stai rispondendo"
msgid "Expand post text"
msgstr "Espandi testo del post"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Espande o comprime il testo del post"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "L'URI dovrebbe risolvere in un record"
@@ -3639,7 +3663,7 @@ msgstr "Immagini sessuali esplicite."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Esplora"
@@ -3657,8 +3681,8 @@ msgstr "Esporta i miei dati"
msgid "Export My Data"
msgstr "Esporta i miei dati"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Media esterni"
@@ -3730,7 +3754,7 @@ msgstr "Non è stato possibile eliminare il post, riprovare"
msgid "Failed to delete starter pack"
msgstr "Impossibile eliminare lo starter pack"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "Non è stato possibile seguire tutti gli account suggeriti, riprova"
@@ -3829,6 +3853,10 @@ msgstr "Non è stato possibile rimuovere la verifica"
msgid "Failed to resolve location. Please try again."
msgstr "Impossibile determinare la posizione. Riprova."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "Impossibile salvare la bozza"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Feed"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Feed creato da {0}"
@@ -3941,7 +3970,7 @@ msgstr "Feed non disponibile"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Commenti"
@@ -3958,7 +3987,7 @@ msgstr "Feedback inviato"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Feed"
@@ -4008,6 +4037,10 @@ msgstr "Filtra da chi ricevi le notifiche"
msgid "Finalizing"
msgstr "Finalizzando"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Finalmente! Tieni traccia dei post che ti interessano. Salvali per rivederli in qualsiasi momento."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Trova i miei amici"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Trova persone da seguire"
@@ -4098,19 +4131,19 @@ msgstr "Attiva il campo dove inserire il codice"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Segui"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Segui {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Segui {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Segui account"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Segui account"
msgid "Follow all"
msgstr "Segui tutti"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Segui tutti gli account"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Ricambia follow"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Tutti gli account seguiti!"
@@ -4195,8 +4228,8 @@ msgstr "Follower che conosci"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Seguito"
msgid "Following {0}"
msgstr "Stai seguendo {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Stai seguendo {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Preferenze del feed Seguiti"
@@ -4264,7 +4297,7 @@ msgstr "Per motivi di sicurezza non potrai più visualizzarla. Se perdi questa p
msgid "For the best experience, we recommend using the theme font."
msgstr "Per una migliore esperienza, consigliamo di usare il font del tema."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Per te"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Da <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Genera uno starter pack"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Ottieni aiuto"
@@ -4376,10 +4409,15 @@ msgstr "Ricevi notifiche quando qualcuno pubblica un post"
msgid "Get started"
msgstr "Per cominciare"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Dai un volto al tuo profilo"
@@ -4394,12 +4432,12 @@ msgstr "Glorificazione della violenza"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Torna indietro"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "La diretta è attualmente disabilitata per il tuo account"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Contenuto sensibile"
@@ -4592,7 +4630,7 @@ msgstr "Conservato da Bluesky per 7 giorni per prevenire abusi, poi eliminato"
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Aiuto"
@@ -4632,9 +4670,9 @@ msgstr "Lista nascosta"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Nascondi elenco utenti"
msgid "Hide verification badges"
msgstr "Nascondi spunta di verifica"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Nasconde il contenuto"
@@ -4760,9 +4798,9 @@ msgstr "Un po' di pazienza: stiamo gradualmente dando accesso al video e tu sei
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Home"
@@ -4819,7 +4857,7 @@ msgstr "Ho capito"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "Sono su Bluesky come {0}: vieni a trovarmi! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Se il testo alternativo è lungo, attiva l'opzione Espandi testo alternativo"
@@ -4872,7 +4910,7 @@ msgstr "Per limitare chi può ricevere notifiche sull'attività del tuo account
msgid "If you're a developer, you can host your own server."
msgstr "Se sei uno sviluppatore, puoi utilizzare il tuo server."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Se stai cercando di cambiare nome utente o email, puoi farlo prima di disattivare l'account."
@@ -4996,6 +5034,10 @@ msgstr "Impostazioni per le interazioni"
msgid "Introducing activity notifications"
msgstr "Introduzione alle notifiche di attività"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "Introduzione alla ricerca di amici tramite contatti"
@@ -5089,7 +5131,7 @@ msgstr "C'è solo <0>{0} 0>al momento! Aggiungi altre persone al tuo starter p
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Sei solo tu al momento! Aggiungi altre persone al tuo starter pack cercandole qui in alto."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID processo: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Tienimi aggiornato"
msgid "KWS website"
msgstr "Sito web di KWS"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Etichettato da {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Etichettato dall'autore."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Etichette"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Etichette aggiunte"
@@ -5218,8 +5260,8 @@ msgstr "Ulteriori informazioni sull'importazione dei contatti"
msgid "Learn more about self hosting your PDS."
msgstr "Maggiori informazioni su come ospitare il tuo server."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Scopri di più sulla moderazione applicata a questo contenuto"
@@ -5231,7 +5273,7 @@ msgstr "Scopri di più su queste modifiche e su come condividere le tue opinioni
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Scopri di più su queste modifiche e su come condividere le tue opinioni con noi leggendo il nostro post sul blog."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Ulteriori informazioni su questo avviso"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "Scopri di più nelle <0>impostazioni dell'account0>."
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Saperne di più."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Abbandona"
@@ -5286,7 +5328,7 @@ msgstr "Stai lasciando Bluesky"
msgid "left to go."
msgstr "mancanti."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Lascia scegliere a me"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Mi piace"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Mi piace ({0, plural, one {# mi piace} other {# mi piace}})"
@@ -5380,7 +5422,7 @@ msgstr "Mi piace dei tuoi repost"
msgid "Likes of your reposts notifications"
msgstr "Notifiche dei mi piace dei tuoi repost"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Mi piace in questo post"
@@ -5474,7 +5516,7 @@ msgstr "Lista riattivata"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Liste"
@@ -5496,10 +5538,20 @@ msgstr "LIVE"
msgid "Live event happening now: {0}"
msgstr "Evento attualmente in diretta: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "Evento in diretta nascosto"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "Opzioni eventi in diretta"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "Evento in diretta non nascosto"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "Gli eventi in diretta vengono visualizzati occasionalmente quando accade qualcosa di entusiasmante. Se lo desideri, puoi nascondere questo evento specifico o tutti gli eventi in questa sezione dell'interfaccia dell'app."
@@ -5524,11 +5576,11 @@ msgstr "Carica di più"
msgid "Load more suggested feeds"
msgstr "Carica più feed consigliati"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Carica più notifiche"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo di @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo di <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Creane uno per me"
msgid "Make sure this is where you intend to go!"
msgstr "Assicurati che questo sia dove intendi andare!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Gestisci i feed salvati"
@@ -5638,7 +5690,16 @@ msgstr "Forse più tardi"
msgid "Media"
msgstr "Media"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "Media salvati su {0}"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "Media salvati su un altro dispositivo"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Contenuti che potrebbero disturbare o risultare inappropriati per alcuni tipi di pubblico."
@@ -5653,7 +5714,7 @@ msgstr "utenti menzionati"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Menzioni"
@@ -5716,6 +5777,10 @@ msgstr "Notifiche varie"
msgid "Misleading"
msgstr "Ingannevole"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "File multimediale mancante"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "Altre lingue..."
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Film"
msgid "Music"
msgstr "Musica"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Vai allo starter pack"
msgid "Navigates to the next screen"
msgstr "Vai alla schermata successiva"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Vai al tuo profilo"
@@ -5983,6 +6049,7 @@ msgstr "Nuovo indirizzo email"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Nuova funzionalità"
@@ -6018,12 +6085,12 @@ msgstr "Nuovo messaggio"
msgid "New password"
msgstr "Nuova password"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Nuovo post"
@@ -6085,7 +6152,7 @@ msgstr "Notizie"
msgid "Next"
msgstr "Avanti"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Immagine successiva"
@@ -6114,6 +6181,10 @@ msgstr "Ancora nessun feed personalizzato"
msgid "No DNS Panel"
msgstr "Nessun pannello DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "Ancora nessuna bozza"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Scadenza non impostata"
@@ -6136,7 +6207,7 @@ msgstr "Nessuna immagine"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Ancora nessun mi piace"
@@ -6150,7 +6221,7 @@ msgstr "Nessuna lista"
msgid "No longer following {0}"
msgstr "Non segui più {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "Ancora nessun media"
@@ -6195,7 +6266,7 @@ msgstr "Ancora nessun post"
msgid "No quotes yet"
msgstr "Ancora nessuna citazione"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "Ancora nessuna risposta"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Nessun risultato"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Nessun risultato"
@@ -6238,7 +6309,7 @@ msgstr "Nessun risultato."
msgid "No search results found for \"{search}\"."
msgstr "Nessun risultato trovato per \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "Ancora nessuno starter pack"
@@ -6247,7 +6318,7 @@ msgstr "Ancora nessuno starter pack"
msgid "No thanks"
msgstr "No grazie"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "Ancora nessun post video"
@@ -6298,6 +6369,10 @@ msgstr "Non seguito da nessuno degli account che segui"
msgid "Not Found"
msgstr "Non trovato"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Nota sulla condivisione"
@@ -6321,7 +6396,7 @@ msgstr "Non è stato ancora salvato nulla"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Impostazioni notifiche"
@@ -6349,10 +6424,10 @@ msgstr "Suoni di notifica"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Notifiche"
@@ -6368,8 +6443,8 @@ msgstr "adesso"
msgid "Now"
msgstr "Adesso"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Nudità"
@@ -6390,7 +6465,7 @@ msgstr "Oh no!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Va bene"
@@ -6417,23 +6492,23 @@ msgstr "su<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Reimposta account"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Una o più GIF non hanno un testo alternativo."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "A una o più immagini manca il testo alternativo."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "Uno o più file selezionati non sono supportati."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "Uno o più dei file selezionati è troppo grande. La dimensione massima è 100 MB."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "In uno o più video manca il testo alternativo."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ops, c'è stato qualche problema!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ops!"
msgid "Open avatar creator"
msgstr "Apri il creatore di avatar"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "Apri fotocamera"
@@ -6485,12 +6560,16 @@ msgstr "Apri fotocamera"
msgid "Open conversation options"
msgstr "Apri opzioni conversazione"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "Apri bozza"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Apri il menu a scomparsa"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Apri il selettore emoji"
@@ -6557,7 +6636,7 @@ msgstr "Apri il registro di sistema"
msgid "Opens {0} feed"
msgstr "Apre il feed {0}"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Apre una finestra di dialogo per aggiungere un avviso sul contenuto al tuo post"
@@ -6589,25 +6668,25 @@ msgstr "Apre la schermata per modificare il nome utente"
msgid "Opens composer"
msgstr "Apre il compositore"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "Apre la fotocamera del dispositivo"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "Apre la galleria del dispositivo per selezionare fino a {MAX_IMAGES, plural, other {# immagini}} o un singolo video o GIF."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Apre il selettore emoji"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Apre il procedimento per creare un nuovo account Bluesky"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Apre la procedura per accedere al tuo account esistente di Bluesky"
@@ -6620,7 +6699,7 @@ msgstr "Apre la finestra per selezionare i GIF"
msgid "Opens helpdesk in browser"
msgstr "Apre il centro assistenza nel browser"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "Apre selettore immagini"
@@ -6640,10 +6719,14 @@ msgstr "Apre il modulo di reimpostazione della password"
msgid "Opens post language settings"
msgstr "Apre le impostazioni sulla lingua dei post"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "Apre l'editor dei post"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "Apre questa bozza nell’editor"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "Stato OTA: non disponibile"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Altro"
@@ -6763,13 +6846,13 @@ msgstr "Password aggiornata"
msgid "Password updated!"
msgstr "Password aggiornata!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pausa"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Metti video in pausa"
@@ -6829,7 +6912,7 @@ msgstr "Numero di telefono verificato"
msgid "Photography"
msgstr "Foto"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Immagini consigliate ad un pubblico adulto."
@@ -6874,9 +6957,9 @@ msgstr "Feed fissati"
msgid "Pinned to your feeds"
msgstr "Fissato ai tuoi feed"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Riproduci"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Riproduci {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Riproduci video"
@@ -6893,11 +6976,11 @@ msgstr "Riproduci video"
msgid "Play Video"
msgstr "Riproduci video"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Riproduce o mette in pausa la GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Riproduce o mette in pausa il video"
@@ -6909,7 +6992,7 @@ msgstr "Riproduci questa GIF"
msgid "Plays the video"
msgstr "Riproduce il video"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Aggiungi eventuali etichette di avviso applicabili ai contenuti che stai pubblicando."
@@ -7066,31 +7149,31 @@ msgstr "Scrivi il tuo messaggio qui sotto:"
msgid "Politics"
msgstr "Politica"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Porno"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Post"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Post"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Pubblica una foto"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Pubblica un video"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Posta tutti"
@@ -7217,7 +7300,7 @@ msgstr "Clicca per vedere i follower di questo account che condividete"
msgid "Preview"
msgstr "Anteprima"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Immagine precedente"
@@ -7257,8 +7340,8 @@ msgstr "Impostazioni privacy e sicurezza"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Informativa sulla privacy"
@@ -7266,7 +7349,11 @@ msgstr "Informativa sulla privacy"
msgid "Privacy violation of a minor"
msgstr "Violazione della privacy di un minore"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Elaborazione video in corso..."
@@ -7280,10 +7367,10 @@ msgstr "Elaborazione in corso…"
msgid "profile"
msgstr "profilo"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profilo"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Elenchi pubblici e condivisibili di utenti da silenziare o bloccare in massa."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Pubblica post"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Pubblica i post"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Pubblica risposte"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Pubblica risposta"
@@ -7360,6 +7447,7 @@ msgstr "Notifiche delle citazioni"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Cita post"
@@ -7385,7 +7473,7 @@ msgstr "Citazioni disattivate"
msgid "Quotes"
msgstr "Citazioni"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Citazioni post"
@@ -7424,11 +7512,11 @@ msgstr "scopri come utilizzare i filtri di ricerca"
msgid "Read blog post"
msgstr "Leggi post del blog"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Leggi di meno"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Leggi di più"
@@ -7720,13 +7808,13 @@ msgstr "Risposte disattivate"
msgid "Replies to this post are disabled."
msgstr "Le risposte a questo post sono disattivate."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Rispondi"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Rispondi ({0, plural, one {# risposta} other {# risposte}})"
@@ -7892,7 +7980,7 @@ msgstr "Ripubblicato da te"
msgid "Reposts"
msgstr "Repost"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Ripubblicazioni di questo post"
@@ -7996,14 +8084,14 @@ msgstr "Ritenta l'ultima azione che ha generato un errore"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Ritorna alla pagina precedente"
msgid "Returns to home page"
msgstr "Ritorna alla home"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Ritorna alla pagina precedente"
@@ -8063,7 +8151,7 @@ msgstr "Ritorna al passo precedente"
msgid "Save"
msgstr "Salva"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Salva"
@@ -8076,9 +8164,26 @@ msgstr "Salva data di nascita"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Salva modifiche"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "Salvare le modifiche?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "Salva bozza"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "Salvare la bozza?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Salva nei miei feed"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Salvato"
@@ -8155,7 +8260,7 @@ msgstr "Scorri verso l'alto"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Cerca"
@@ -8164,7 +8269,7 @@ msgstr "Cerca"
msgid "Search @{0}'s posts"
msgstr "Cerca post di @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Cerca per nome o interesse"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Cerca feed"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "Cerca \"{interestsDisplayName}\""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "Cerca \"{interestsDisplayName}\" (attivo)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Cerca post"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Cerca profili"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Cerca..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Cerca profili"
@@ -8283,12 +8388,12 @@ msgstr "Vedi post dell'utente su #{tag}"
msgid "See jobs at Bluesky"
msgstr "Vedi offerte di lavoro in Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Vedi di più"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "Vedi altri profili consigliati"
@@ -8456,7 +8561,7 @@ msgstr "Seleziona la tua lingua preferita per le traduzioni nel tuo feed."
msgid "Select your preferred notification channels"
msgstr "Seleziona i tuoi canali di notifica preferiti"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "La selezione di più tipi di media non è supportata."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Invia email"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Invia feedback"
@@ -8566,7 +8671,7 @@ msgstr "Imposta l'email per la reimpostazione della password"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Impostazioni"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Impostazioni aggiornate"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Attività sessuale o nudità erotica."
@@ -8634,7 +8739,7 @@ msgstr "Sessualmente allusivo"
msgid "Share"
msgstr "Condividi"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Condividi"
@@ -8712,13 +8817,13 @@ msgstr "Condividi il tuo feed preferito!"
msgid "Shared Preferences Tester"
msgstr "Test preferenze condivise"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Mostra"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Mostra testo alternativo"
@@ -8820,7 +8925,7 @@ msgstr "Mostra avviso e filtra dai feed"
msgid "Show when you’re live"
msgstr "Mostra quando sei in diretta"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Mostra informazioni sulla data di creazione del post"
@@ -8828,8 +8933,8 @@ msgstr "Mostra informazioni sulla data di creazione del post"
msgid "Shows other accounts you can switch to"
msgstr "Mostra gli altri account a cui puoi passare"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Mostra il contenuto"
@@ -8842,14 +8947,14 @@ msgstr "Mostra il contenuto"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "È richiesto l'accesso"
msgid "Signed in as @{0}"
msgstr "Accesso effettuato come @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Account simili"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "Salta la condivisione dei contatti e continua con l'app"
msgid "Skip introduction and start using your account"
msgstr "Salta l'introduzione e inizia a usare il tuo account"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Vai al passo successivo"
@@ -8967,7 +9068,7 @@ msgstr "Sviluppo software"
msgid "Some of your verifications are invalid."
msgstr "Alcune delle tue verifiche non sono valide."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Altri feed che potrebbero piacerti"
@@ -8994,7 +9095,7 @@ msgstr "Qualcosa è andato storto"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Qualcosa è andato storto: riprova"
@@ -9020,7 +9121,7 @@ msgstr "C'è stato qualche problema. Riprovare."
msgid "Something wrong? Let us know."
msgstr "Qualcosa non va? Faccelo sapere."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Al momento non è possibile caricare gli account suggeriti."
@@ -9113,7 +9214,11 @@ msgstr "Starter pack"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Gli starter pack ti permettono di condividere utenti e feed preferiti con i tuoi amici."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "Gli starter pack ti permettono di condividere i tuoi feed e utenti preferiti con i tuoi amici."
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "Gli starter pack ti permettono di condividere utenti e feed preferiti con i tuoi amici."
@@ -9181,11 +9286,11 @@ msgstr "Iscriviti a @{0} per usare queste etichette:"
msgid "Subscribe to account activity"
msgstr "Iscriviti all'attività dell'account"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Iscriviti all'etichettatore"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Iscriviti a questo etichettatore"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Account suggeriti"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Suggerito per te"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Suggestivo"
@@ -9354,8 +9459,8 @@ msgstr "Termini"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Termini di servizio"
@@ -9403,12 +9508,12 @@ msgstr "Questo nome utente è già in uso"
msgid "That's all, folks!"
msgstr "Questo è tutto, gente!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "È tutto!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "L'account sarà in grado di interagire con te dopo lo sblocco."
@@ -9447,7 +9552,7 @@ msgstr "Il feed Discover"
msgid "The Discover feed now knows what you like"
msgstr "Ora il feed Discover sa cosa ti piace"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "L'esperienza è migliore tramite l'app. Scarica ora Bluesky e ritorneremo da dove eravamo rimasti."
@@ -9527,7 +9632,7 @@ msgstr "Tema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "C'è un limite alla frequenza con cui puoi cambiare la tua data di nascita. Potresti dover aspettare un giorno o due prima di porterla aggiornare di nuovo."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Non c'è limite di tempo per la disattivazione dell'account, torna quando vuoi."
@@ -9711,6 +9816,10 @@ msgstr "Questo contenuto non è visualizzabile senza un account Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "L'utente di questa conversazione ha disattivato o eliminato l'account. Premi per le opzioni"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "Questa bozza sarà eliminata definitivamente."
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Questa email è già associata al tuo account."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Questo feed è vuoto! Prova a seguire più utenti o ottimizza le impostazioni della lingua."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Questo feed è vuoto."
@@ -9798,7 +9907,7 @@ msgstr "Questa lista è vuota."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Questo servizio di moderazione non è disponibile. Vedi giù per ulteriori dettagli. Se il problema persiste, contattaci."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Questo post dichiara di essere stato creato il <0>{0}0>, ma è stato visto per la prima volta da Bluesky il <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr "Questo post è stato eliminato dal suo autore"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Questo post verrà nascosto dai feed e dai thread. L'azione è irreversibile."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "L'autore del post ha disattivato le citazioni."
@@ -9834,7 +9943,7 @@ msgstr "Questa risposta verrà spostata in una sezione nascosta in fondo al thre
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Questo servizio non ha fornito termini di servizio o un'informativa sulla privacy."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "Questo servizio non è supportato mentre la funzione In diretta è in versione beta. Servizi consentiti: {formatted}."
@@ -9900,8 +10009,8 @@ msgstr "Il tuo post verrà rimosso da questa citazione per tutti gli utenti, ed
msgid "Thread options"
msgstr "Opzioni thread"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Preferenze delle discussioni"
@@ -9951,7 +10060,7 @@ msgstr "Oggi"
msgid "Toggle to enable or disable adult content"
msgstr "Seleziona per abilitare o disabilitare i contenuti per adulti"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Attiva/disattiva il suono"
@@ -9988,8 +10097,8 @@ msgstr "Argomento"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Traduci"
@@ -10091,15 +10200,15 @@ msgstr "Informazioni sui feed non disponibili"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Sblocca"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Sblocca"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Sblocca account"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Sblocca account?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Annulla"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Annulla"
@@ -10142,7 +10255,7 @@ msgstr "Annulla repost"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Annulla repost ({0, plural, one {# repost} other {# repost}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Smetti di seguire {0}"
@@ -10151,7 +10264,7 @@ msgstr "Smetti di seguire {0}"
msgid "Unfollow account"
msgstr "Smetti di seguire"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Smetti di seguire"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Non mi piace più"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Non mi piace più ({0, plural, one {# mi piace} other {# mi piace}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Riattiva lista"
msgid "Unmute thread"
msgstr "Riattiva questa discussione"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Riattiva audio"
@@ -10276,7 +10389,7 @@ msgstr "Lista non più fissata"
msgid "Unsnooze email reminder"
msgstr "Riattiva l'email di promemoria"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Disiscriviti"
@@ -10285,7 +10398,7 @@ msgstr "Disiscriviti"
msgid "Unsubscribe from list"
msgstr "Disiscriviti dalla lista"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Disiscriviti da etichetta"
@@ -10293,7 +10406,7 @@ msgstr "Disiscriviti da etichetta"
msgid "Unsubscribed from list"
msgstr "Disiscritto dalla lista"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Tipo di video non supportato: {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "Carica dai file"
msgid "Upload from Library"
msgstr "Carica dalla galleria"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Caricamento immagini..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Caricamento miniatura del link..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Caricamento del video..."
@@ -10389,8 +10506,8 @@ msgstr "Usa il fornitore predefinito"
msgid "Use in-app browser"
msgstr "Usa il browser dell'app"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Usa il browser dell'app per aprire i link"
@@ -10445,6 +10562,10 @@ msgstr "Questo utente ti blocca"
msgid "User list by {0}"
msgstr "Lista di {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr "Elenco utenti di {0}"
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "La tua lista"
@@ -10597,8 +10718,8 @@ msgstr "Verifica in corso..."
msgid "Version {0}"
msgstr "Versione {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Video"
@@ -10614,20 +10735,24 @@ msgstr "Feed dei video"
msgid "Video from {0}: {text}"
msgstr "Video da {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "Video di {0}. Tocca per riprodurre o mettere in pausa il video"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Videogiochi"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Video in pausa"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Video in riproduzione"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Video non trovato."
@@ -10635,11 +10760,11 @@ msgstr "Video non trovato."
msgid "Video settings"
msgstr "Impostazioni video"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Video caricato"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Video: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Video"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "I video devono durare meno di 3 minuti."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Vedi"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Vedi l'avatar di {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Vedi il profilo di {0}"
@@ -10708,7 +10833,7 @@ msgstr "Mostra di più"
msgid "View more trending videos"
msgstr "Vedi altri video di tendenza"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "Vedi post"
@@ -10788,7 +10913,7 @@ msgstr "Contenuto violento o minaccioso"
msgid "Visit site"
msgstr "Visita sito"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Vedi le impostazioni di notifica"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Stiamo riscontrando problemi nell'inizializzazione del processo di verifica dell'età per il tuo account. <0>Contatta il supporto0> per ricevere assistenza."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Stiamo riscontrando problemi di rete, riprova"
@@ -10968,7 +11093,7 @@ msgstr "Non è stato possibile caricare le parole silenziate. Riprova."
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Siamo spiacenti, ma non è stato possibile completare la ricerca. Riprova tra qualche minuto."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Ci dispiace! Il post a cui cerchi di rispondere è stato eliminato."
@@ -10977,7 +11102,7 @@ msgstr "Ci dispiace! Il post a cui cerchi di rispondere è stato eliminato."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Ci dispiace! Non riusciamo a trovare la pagina che stavi cercando."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Ci dispiace! Puoi iscriverti solo a venti etichettatori e al momento hai raggiunto questo limite."
@@ -11018,10 +11143,9 @@ msgstr "Quali sono i tuoi interessi?"
msgid "What do you want to call your starter pack?"
msgstr "Come vuoi chiamare il tuo starter pack?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Come va?"
@@ -11097,6 +11221,14 @@ msgstr "Perché questo utente dovrebbe essere esaminato?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Vuoi bloccare questo utente e/o eliminare questa conversazione?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "Salvarlo come bozza prima di visualizzare le tue bozze?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "Salvarlo come bozza da modificare più tardi?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Scrivi un messaggio"
msgid "Write a post"
msgstr "Scrivi un post"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Scrivi un post"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Scrivi la tua risposta"
@@ -11133,8 +11265,8 @@ msgstr "www.miadiretta.tv"
msgid "Yes"
msgstr "Si"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Sì, disattiva il mio account"
@@ -11188,7 +11320,7 @@ msgstr "Sei nella lista."
msgid "You are Live"
msgstr "Sei in diretta"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Non sei più in diretta"
@@ -11200,7 +11332,7 @@ msgstr "Non sei autorizzato a caricare video."
msgid "You are not following anyone yet"
msgstr "Non segui ancora nessuno"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Adesso sei in diretta!"
@@ -11255,11 +11387,11 @@ msgstr "Ora puoi scegliere di ricevere una notifica quando determinate persone p
msgid "You can now sign in with your new password."
msgstr "Adesso puoi accedere con la tua nuova password."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "Puoi selezionare una sola GIF alla volta."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "Puoi selezionare un solo video alla volta."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Puoi riattivare il tuo account per accedere. Il tuo profilo e i tuoi post saranno visibili agli altri utenti."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "È possibile selezionare fino a {MAX_IMAGES, plural, other {# immagini}} in totale."
@@ -11317,7 +11449,7 @@ msgstr "Hai bloccato questo utente"
msgid "You have blocked this user. You cannot view their content."
msgstr "Hai bloccato questo utente. Non è possibile visualizzare il contenuto."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Hai disattivato completamente le notifiche di risposte, citazioni e menzioni, quindi questa scheda non verrà aggiornata. Per modificare questa impostazione, vai alle <0>impostazioni di notifica0>."
@@ -11376,6 +11508,14 @@ msgstr "Hai verificato correttamente il tuo indirizzo email. Puoi chiudere quest
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Hai raggiunto il limite temporaneo dei video caricati. Riprova più tardi."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "Hai delle modifiche non salvate a questa bozza: vuoi salvarle?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "Hai delle modifiche non salvate. Salvarle prima di visualizzare le tue bozze?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Non hai ancora creato uno starter pack!"
@@ -11437,7 +11577,7 @@ msgstr "Per creare un account devi avere almeno {MIN_ACCESS_AGE} anni."
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Devi avere almeno 13 anni per usare Bluesky. Leggi i <0>Termini di Servizio0> per maggiori informazioni."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Devi seguire almeno altri 7 utenti per creare uno starter pack."
@@ -11449,7 +11589,7 @@ msgstr "Per accedere a questa schermata è necessario completare la verifica del
msgid "You must grant access to your photo library to save a QR code"
msgstr "Devi concedere il permesso alla galleria per salvare il codice QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "È necessario consentire l'accesso alla tua libreria multimediale."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Sei in fila"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Hai effettuato l'accesso con una password per app. Accedi con la tua password personale per disattivare il tuo account."
@@ -11589,7 +11729,7 @@ msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi byte)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi video)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Non ci sono altri video da guardare. Forse è il momento giusto per fare una pausa?"
@@ -11625,7 +11765,7 @@ msgstr "La richiesta di revisione è stata inviata. Se il ricorso ha esito posit
msgid "Your birth date"
msgstr "Data di nascita"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Il tuo browser non supporta questo formato video. Prova con un altro browser."
@@ -11692,8 +11832,8 @@ msgstr "Il tuo nome utente completo sarà <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "I tuoi interessi"
@@ -11731,11 +11871,11 @@ msgstr "La tua password è stata cambiata con successo! D'ora in poi usa la tua
msgid "Your password must be at least 8 characters long."
msgstr "La tua password deve essere lunga almeno 8 caratteri."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "Il tuo post è stato inviato"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "I tuoi post sono stati inviati"
@@ -11752,11 +11892,11 @@ msgstr "Immagine del tuo profilo"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "L'immagine del tuo profilo circondata da cerchi concentrici con immagini del profilo di altri utenti"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Il tuo profilo, post, feed, e liste non saranno più visibili agli altri utenti. Puoi riattivare il tuo account in qualsiasi momento effettuando l'accesso."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "Risposta inviata"
diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po
index 3dce2d06c7..0d99b1bdfd 100644
--- a/src/locale/locales/ja/messages.po
+++ b/src/locale/locales/ja/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ja\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, other {# リポスト}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, other {#秒}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, other {#件の未読}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, other {#件の未読}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, other {#ヶ月}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, other {さらに#件の投稿}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, other {フォロワー}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, other {フォロー中}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, other {いいね}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, other {いいね}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, other {投稿}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, other {引用}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, other {リポスト}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, other {保存}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{1} {0}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0}(アカウント)"
@@ -189,11 +193,11 @@ msgstr "{0}が{1}とリアクションしました"
msgid "{0} reacted {1} to {2}"
msgstr "{0}が{2}に{1}とリアクションしました"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}、{1}によるフィード、{2}人がいいね"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}、{1}によるリスト"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {#人のユーザーが}}参加しま
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, other {#分}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, other {#件の未読}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}、0><1>{1}、1>そして{2, plural, other {他#人}}があなたのスターターパックに含まれています"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, other {フォロワー}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, other {フォロー}}"
@@ -580,6 +584,11 @@ msgstr "共有ボタンの隣に投稿をブックマークに保存できるよ
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "プロフィールページのスクリーンショットには、フォローボタンの横にベルのアイコンが付いており、新しいアクティビティ通知機能を示します。"
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "続けるにはさらに{0}ユーザー追加してください"
msgid "Add {displayName} to starter pack"
msgstr "{displayName}をスターターパックに加える"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "コンテンツの警告を追加"
@@ -754,11 +763,11 @@ msgstr "ALTテキストを追加(オプション)"
msgid "Add another account"
msgstr "他のアカウントを追加"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "他の投稿を追加"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "スレッドに他の投稿を追加"
@@ -776,12 +785,12 @@ msgstr "アプリパスワードを追加"
msgid "Add emoji reaction"
msgstr "絵文字リアクションを追加"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "画像を追加"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "投稿にメディアを追加する"
@@ -871,7 +880,7 @@ msgstr "追加の詳細(1000文字まで)"
msgid "Additional details (limit 300 characters)"
msgstr "追加の詳細(300文字まで)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "成人向け(ポルノ等)"
@@ -879,10 +888,10 @@ msgstr "成人向け(ポルノ等)"
msgid "Adult content"
msgstr "成人向けコンテンツ"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "成人向けコンテンツ"
@@ -894,8 +903,8 @@ msgstr "成人向けコンテンツは<0>bsky.app0>のウェブ版からしか
msgid "Adult content is disabled."
msgstr "成人向けコンテンツは無効になっています。"
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "成人向けコンテンツのラベル"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "すべて"
@@ -1017,7 +1026,7 @@ msgstr "既にアカウントを持ってますか?"
msgid "Already signed in as @{0}"
msgstr "@{0}としてすでにサインイン済み"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "ALTテキスト"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "ALTテキスト"
@@ -1059,7 +1068,7 @@ msgstr "メールが{0}に送信されました。以下に入力できる確認
msgid "An error has occurred"
msgstr "エラーが発生しました"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "エラーが発生しました"
@@ -1067,7 +1076,7 @@ msgstr "エラーが発生しました"
msgid "An error occurred while compressing the video."
msgstr "ビデオの圧縮中にエラーが発生しました。"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "オススメアカウントの取得中にエラーが発生しました。"
@@ -1076,7 +1085,7 @@ msgstr "オススメアカウントの取得中にエラーが発生しました
msgid "An error occurred while fetching the feed."
msgstr "フィードの取得中にエラーが発生しました。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "スターターパックの生成中にエラーが発生しました。もう一度試しますか?"
@@ -1088,7 +1097,7 @@ msgstr "提案を非表示中にエラーが発生しました。{0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "ビデオの読み込み時にエラーが発生しました。時間をおいてもう一度お試しください。"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "ビデオの読み込み時にエラーが発生しました。もう一度お試しください。"
@@ -1181,7 +1190,7 @@ msgstr "動物の福祉"
msgid "Animals"
msgstr "動物"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "アニメーションGIF"
@@ -1306,12 +1315,12 @@ msgstr "デフォルトのおすすめフィードを追加"
msgid "Apply Pull Request"
msgstr "プルリクエストを適用"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "{0}のアーカイブ"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "アーカイブ投稿"
@@ -1332,11 +1341,11 @@ msgstr "本当にこのスターターパックを削除したいですか?"
msgid "Are you sure you want to discard your changes?"
msgstr "本当に変更を破棄したいですか?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "本当にこの会話を終了しますか?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "この会話から退出しますか?あなたのメッセージはあなたからは削除したように見えますが、他の参加者からは削除されません。"
@@ -1344,11 +1353,7 @@ msgstr "この会話から退出しますか?あなたのメッセージはあ
msgid "Are you sure you want to remove this from your feeds?"
msgstr "本当にこのフィードをあなたのフィードから削除したいですか?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "本当にこの下書きを削除しますか?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "本当にこの投稿を削除しますか?"
@@ -1364,7 +1369,7 @@ msgstr "<0>{suggestedLanguageName}0>で書かれた投稿ですか?"
msgid "Art"
msgstr "アート"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "芸術的または性的ではないヌード。"
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "オーロラ"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "ビデオとGIFの自動再生"
@@ -1404,11 +1409,13 @@ msgstr "利用可能"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "戻る"
@@ -1578,7 +1585,7 @@ msgstr "ブログ"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Blueskyでは、この投稿日時の信憑性を確認できません。"
@@ -1623,7 +1630,7 @@ msgstr "Bluesky Social利用規約"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Blueskyは連絡先を符号化したデータとして保存します。連絡先を削除するとすぐにこのデータが削除されます。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Blueskyはあなたのつながっているユーザーからおすすめのアカウントを選びます。"
@@ -1664,20 +1671,20 @@ msgstr "サイト規約違反"
msgid "Browse custom feeds"
msgstr "カスタムフィードを見る"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "さらにアカウントを見る"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "検索ページでさらにフィードを見る"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "さらにおすすめを見る"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "検索ページでさらにおすすめを見る"
@@ -1770,8 +1777,8 @@ msgstr "カメラ"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "カメラ"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "検索をキャンセル"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "ブロックしたユーザーとはやりとりできません"
@@ -1901,9 +1908,9 @@ msgstr "変更を保存しました"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "チャット"
@@ -1989,7 +1996,7 @@ msgstr "ドメイン名の確認方法を選択"
msgid "Choose Feeds"
msgstr "フィードの選択"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "私向けに選んで"
@@ -2096,6 +2103,7 @@ msgstr "パカラッ 🐴 パカラッ 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "パカラッ 🐴 パカラッ 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "GIFのダイアログを閉じる"
msgid "Close image"
msgstr "画像を閉じる"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "画像ビューアを閉じる"
+msgstr "画像ビューワーを閉じる"
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr "ウェルカムモーダルを閉じる"
msgid "Closes password update alert"
msgstr "パスワード更新アラートを閉じる"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "投稿の編集画面を閉じて下書きを破棄"
@@ -2242,12 +2251,12 @@ msgstr "初期設定を完了してアカウントを使い始める"
msgid "Complete the challenge"
msgstr "テストをクリアしてください"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "新しい投稿を作成"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "最大{0, plural, other {#文字}}まで投稿を編集"
@@ -2255,7 +2264,11 @@ msgstr "最大{0, plural, other {#文字}}まで投稿を編集"
msgid "Compose reply"
msgstr "返信を作成"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "ビデオを圧縮中…"
@@ -2263,7 +2276,6 @@ msgstr "ビデオを圧縮中…"
msgid "Configure content filtering setting for category: {name}"
msgstr "このカテゴリのコンテンツフィルタリングを設定:{name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "ライブイベントのバナーを設定"
@@ -2272,8 +2284,8 @@ msgstr "ライブイベントのバナーを設定"
msgid "Configured in <0>moderation settings0>."
msgstr "<0>モデレーションの設定0>で設定されています。"
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "連絡先を読み込みました"
msgid "Contacts removed"
msgstr "連絡先を削除しました"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "コンテンツ&メディア"
@@ -2389,7 +2401,7 @@ msgstr "自傷行為を助長または描写するコンテンツ"
msgid "Content Warning"
msgstr "コンテンツの警告"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "コンテンツの警告"
@@ -2401,7 +2413,7 @@ msgstr "コンテキストメニューの背景をクリックし、メニュー
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "続行"
@@ -2420,7 +2432,7 @@ msgstr "スレッドの続き…"
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "マッチした全員をフォローできませんでした。{0}"
msgid "Could not leave chat"
msgstr "チャットからの退出に失敗しました"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "フィードの読み込みに失敗しました"
@@ -2643,8 +2655,8 @@ msgstr "スターターパックのQRコードを作成"
msgid "Create a starter pack"
msgstr "スターターパックを作成"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "スターターパックを作成"
@@ -2654,12 +2666,12 @@ msgstr "私向けのスターターパックを作成"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "別のものを作成"
msgid "Create moderation list"
msgstr "モデレーションリストを作成"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "新しいアカウントを作成"
@@ -2772,7 +2784,7 @@ msgstr "生年月日"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "アカウントを無効化"
@@ -2871,7 +2883,7 @@ msgstr "アカウントを削除"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "投稿を削除"
@@ -2981,7 +2993,7 @@ msgstr "この投稿の引用投稿を無効にする"
msgid "Disable replies entirely"
msgstr "返信を完全に無効にする"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "サブタイトル(字幕)を無効にする"
@@ -2996,8 +3008,11 @@ msgstr "無効"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "破棄"
@@ -3006,11 +3021,12 @@ msgstr "破棄"
msgid "Discard changes?"
msgstr "変更を破棄しますか?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "下書きを削除しますか?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "投稿を削除しますか?"
@@ -3037,7 +3053,7 @@ msgstr "消す"
msgid "Dismiss banner"
msgstr "バナーを閉じる"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "エラーを消す"
@@ -3049,11 +3065,16 @@ msgstr "入門ガイドを消す"
msgid "Dismiss interests"
msgstr "「気になること」を消す"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "ライブイベントのバナーを消す"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "このセクションを消す"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "提案を消す"
@@ -3121,8 +3142,8 @@ msgstr "心配しないでください!すべての既存のメッセージと
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "メッセージをダブルタップか長押しでリアクションを
msgid "Double tap to close the dialog"
msgstr "ダブルタップでダイアログを閉じる"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "ダブルタップでいいね"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Blueskyをダウンロード"
@@ -3164,6 +3185,13 @@ msgstr "CARファイルをダウンロード"
msgid "Doxxing"
msgstr "ドクシング(個人情報晒し)"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "下書き"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "ドロップして画像を追加する"
@@ -3285,13 +3313,13 @@ msgstr "投稿への反応の設定を編集"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "プロフィールを編集"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "プロフィールを編集"
@@ -3413,7 +3441,7 @@ msgstr "プッシュ通知を有効にする"
msgid "Enable quote posts of this post"
msgstr "この投稿の引用投稿を有効にする"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "サブタイトル(字幕)を有効にする"
@@ -3421,13 +3449,13 @@ msgstr "サブタイトル(字幕)を有効にする"
msgid "Enable this source only"
msgstr "このソースのみ有効にする"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "トレンド・トピックを有効にする"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Discoverフィードでトレンド・ビデオを有効にする"
@@ -3464,7 +3492,7 @@ msgstr "ワードまたはタグを入力"
msgid "Enter code"
msgstr "コードを入力"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "全画面表示にする"
@@ -3501,7 +3529,7 @@ msgstr "パスワードを入力"
msgid "Enter your username and password"
msgstr "ユーザー名とパスワードを入力してください"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "フルスクリーンで表示"
@@ -3509,7 +3537,7 @@ msgstr "フルスクリーンで表示"
msgid "Entertainment"
msgstr "エンターテインメント"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "エラー"
@@ -3570,7 +3598,7 @@ msgstr "フォローしているユーザーは除外"
msgid "Excludes users you follow"
msgstr "フォローしているユーザーは除外"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "全画面表示を終了"
@@ -3578,11 +3606,7 @@ msgstr "全画面表示を終了"
msgid "Exits account deletion process"
msgstr "アカウントの削除処理を終了"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "画像表示を終了"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "ALTテキストを展開"
@@ -3598,11 +3622,11 @@ msgstr "返信する投稿全体を展開または折りたたむ"
msgid "Expand post text"
msgstr "投稿のテキストを展開"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "テキストを展開または折りたたむ"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "レコードを指すURIではありません"
@@ -3639,7 +3663,7 @@ msgstr "露骨な性的画像。"
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "検索"
@@ -3657,8 +3681,8 @@ msgstr "私のデータをエクスポートする"
msgid "Export My Data"
msgstr "私のデータをエクスポートする"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "外部メディア"
@@ -3730,7 +3754,7 @@ msgstr "投稿の削除に失敗しました。もう一度お試しください
msgid "Failed to delete starter pack"
msgstr "スターターパックの削除に失敗しました"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "すべての推奨アカウントをフォローできませんでした。もう一度やり直してください"
@@ -3829,6 +3853,10 @@ msgstr "認証の削除に失敗しました"
msgid "Failed to resolve location. Please try again."
msgstr "位置情報の調査に失敗しました。もう一度試してください。"
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "下書きの保存に失敗しました"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "フィード"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "{0}によるフィード"
@@ -3941,7 +3970,7 @@ msgstr "フィードを利用できません"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "フィードバック"
@@ -3958,7 +3987,7 @@ msgstr "フィードの運営者にフィードバックを送りました"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "フィード"
@@ -4008,6 +4037,10 @@ msgstr "通知を受け取るユーザーをフィルターする"
msgid "Finalizing"
msgstr "最後に"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "ついに!気になる投稿を追いかけましょう。いつでも見返せるように保存。"
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "友達を見つける"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "フォローするユーザーを探す"
@@ -4098,19 +4131,19 @@ msgstr "コード入力にフォーカス"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "フォロー"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "{0}をフォロー"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "{handle}をフォロー"
@@ -4133,7 +4166,7 @@ msgstr "アカウントをフォロー"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "アカウントをフォロー"
msgid "Follow all"
msgstr "すべてフォロー"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "すべてのアカウントをフォロー"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "フォローバック"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "すべてのアカウントをフォローしました!"
@@ -4195,8 +4228,8 @@ msgstr "あなたが知っているフォロワー"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "フォロー中"
msgid "Following {0}"
msgstr "{0}をフォローしました"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "{handle}をフォローしています"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Followingフィードの設定"
@@ -4264,7 +4297,7 @@ msgstr "セキュリティ上の理由から、これを再度表示すること
msgid "For the best experience, we recommend using the theme font."
msgstr "ベストな体験のために、テーマフォントの使用をお勧めします。"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "あなたへ"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "<0/>から"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "スターターパックを生成"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "ヘルプを表示"
@@ -4376,10 +4409,15 @@ msgstr "誰かが投稿したときに通知を受け取る"
msgid "Get started"
msgstr "開始"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "プロフィールに顔をつける"
@@ -4394,12 +4432,12 @@ msgstr "暴力の賛美"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "戻る"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "ライブの開始はあなたのアカウントでは現在無効です
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "生々しいメディア(グロ・事故・戦争・災害等)"
@@ -4592,7 +4630,7 @@ msgstr "不正利用防止のため、Bluesky が7日間保持した後に削除
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "ヘルプ"
@@ -4632,9 +4670,9 @@ msgstr "非表示のリスト"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "ユーザーリストを非表示"
msgid "Hide verification badges"
msgstr "認証バッジを非表示"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "コンテンツを非表示"
@@ -4760,9 +4798,9 @@ msgstr "待って!徐々にビデオへのアクセスを許可しています
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "ホーム"
@@ -4819,7 +4857,7 @@ msgstr "理解した"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "私は {0} としてBlueskyにいます。私を見つけて! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "ALTテキストが長い場合、ALTテキストの展開状態を切り替える"
@@ -4872,7 +4910,7 @@ msgstr "あなたのアクティビティの通知を受信できるユーザー
msgid "If you're a developer, you can host your own server."
msgstr "あなたが開発者ならば、自分でサーバーをホストできます。"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "ハンドルやメールアドレスを変えるのであれば、無効化の前に変更してください。"
@@ -4996,6 +5034,10 @@ msgstr "反応関連の設定"
msgid "Introducing activity notifications"
msgstr "アクティビティの通知の紹介"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "連絡先から友達を見つける機能のご紹介"
@@ -5089,7 +5131,7 @@ msgstr "ちょうど今<0>{0} 0>です!上記で検索して多くの人々
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "今はあなただけ!上で検索してスターターパックにより多くのユーザーを追加してください。"
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ジョブID:{0}"
@@ -5122,20 +5164,20 @@ msgstr "投稿を逃さない"
msgid "KWS website"
msgstr "KWS のウェブサイト"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "{0}によるラベル"
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "投稿者によるラベル。"
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "ラベル"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "ラベルが追加されました"
@@ -5218,8 +5260,8 @@ msgstr "連絡先の読み込みについて詳細を見る"
msgid "Learn more about self hosting your PDS."
msgstr "自分用のPDSをホスティングする方法を学ぶ。"
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "このコンテンツに適用されるモデレーションはこちらを参照してください"
@@ -5231,7 +5273,7 @@ msgstr "<0>私たちのブログの記事を読んで0>、これらの変更
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "私たちのブログの記事を読んで、これらの変更についての詳細と、あなたの考えを私たちと共有する方法をご覧ください。"
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "この警告の詳細"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "<0>アカウント設定で詳細を確認する。0>"
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "詳細。"
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "退出"
@@ -5286,7 +5328,7 @@ msgstr "Blueskyから離れる"
msgid "left to go."
msgstr "あと少しです。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "選ばせて"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "いいねする"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "いいねする({0, plural, other {#件のいいね}})"
@@ -5380,7 +5422,7 @@ msgstr "リポストへのいいね"
msgid "Likes of your reposts notifications"
msgstr "リポストへのいいねの通知"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "この投稿をいいねする"
@@ -5474,7 +5516,7 @@ msgstr "リストのミュートを解除しました"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "リスト"
@@ -5496,10 +5538,20 @@ msgstr "ライブ"
msgid "Live event happening now: {0}"
msgstr "ライブイベント開催中: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "ライブイベントを非表示にする"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "ライブイベントのオプション"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "ライブイベントの非表示を解除"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "何かエキサイティングなことが起こっている時、ライブイベントが時々表示されます。 必要に応じて、この特定のイベント、またはすべてのイベントをアプリのインターフェースのこの場所で非表示にすることができます。"
@@ -5524,11 +5576,11 @@ msgstr "さらに読み込む"
msgid "Load more suggested feeds"
msgstr "おすすめのフィードをさらに読み込む"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "最新の通知を読み込む"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "@sawaratsuki.bsky.socialによるロゴ"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "<0>@sawaratsuki.bsky.social0>によるロゴ"
@@ -5600,8 +5652,8 @@ msgstr "私のために作って"
msgid "Make sure this is where you intend to go!"
msgstr "意図した場所であることを確認してください!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "保存されたフィードを管理"
@@ -5638,7 +5690,16 @@ msgstr "後で"
msgid "Media"
msgstr "メディア"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "{0} に保存されているメディア"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "他のデバイスに保存されているメディア"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "一部の閲覧者にとっては困惑する、あるいは不適切なメディアです。"
@@ -5653,7 +5714,7 @@ msgstr "メンションされたユーザー"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "メンション"
@@ -5716,6 +5777,10 @@ msgstr "その他の通知"
msgid "Misleading"
msgstr "誤解を招くこと"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "メディアが見つかりません"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "その他の言語…"
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "映画"
msgid "Music"
msgstr "音楽"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "スターターパックに移動"
msgid "Navigates to the next screen"
msgstr "次の画面に移動します"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "あなたのプロフィールに移動します"
@@ -5983,6 +6049,7 @@ msgstr "新しいメールアドレス"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "新機能"
@@ -6018,12 +6085,12 @@ msgstr "新しいメッセージ"
msgid "New password"
msgstr "新しいパスワード"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "新しい投稿"
@@ -6085,7 +6152,7 @@ msgstr "ニュース"
msgid "Next"
msgstr "次へ"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "次の画像"
@@ -6114,6 +6181,10 @@ msgstr "まだカスタムフィードはありません"
msgid "No DNS Panel"
msgstr "DNSパネルがない場合"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "下書きはありません"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "終了時間未定"
@@ -6136,7 +6207,7 @@ msgstr "画像なし"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "いいねはありません"
@@ -6150,7 +6221,7 @@ msgstr "リストなし"
msgid "No longer following {0}"
msgstr "{0}のフォローを解除しました"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "まだメディアがありません"
@@ -6195,7 +6266,7 @@ msgstr "まだ投稿がありません"
msgid "No quotes yet"
msgstr "まだ引用がありません"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "まだ返信がありません"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "結果はありません"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "結果はありません"
@@ -6238,7 +6309,7 @@ msgstr "見つかりませんでした。"
msgid "No search results found for \"{search}\"."
msgstr "「{search}」の検索結果はありません。"
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "まだスターターパックはありません"
@@ -6247,7 +6318,7 @@ msgstr "まだスターターパックはありません"
msgid "No thanks"
msgstr "結構です"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "まだビデオの投稿がありません"
@@ -6298,6 +6369,10 @@ msgstr "フォローしている人は誰にもフォローしていません"
msgid "Not Found"
msgstr "見つかりません"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "共有についての注意事項"
@@ -6321,7 +6396,7 @@ msgstr "まだ何も保存されていません"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "通知設定"
@@ -6349,10 +6424,10 @@ msgstr "通知音"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "通知"
@@ -6368,8 +6443,8 @@ msgstr "今"
msgid "Now"
msgstr "今"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "ヌード"
@@ -6390,7 +6465,7 @@ msgstr "ちょっと!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "OK"
@@ -6417,23 +6492,23 @@ msgstr "<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "オンボーディングのリセット"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "1つもしくは複数のGIFにALTテキストがありません。"
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "1つもしくは複数の画像にALTテキストがありません。"
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "選択したファイルの 1つ以上がサポートされていません。"
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "選択したファイルのうちの1つ以上が大きすぎます。最大で100MBです。"
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "1つもしくは複数のビデオにALTテキストがありません。"
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "おっと、何らかの問題が発生したようです!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "おっと!"
msgid "Open avatar creator"
msgstr "アバター・クリエイターを開く"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "カメラを起動"
@@ -6485,12 +6560,16 @@ msgstr "カメラを起動"
msgid "Open conversation options"
msgstr "会話のオプションを開く"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "下書きを開く"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "引き出しメニューを開く"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "絵文字を入力"
@@ -6557,7 +6636,7 @@ msgstr "システムのログを開く"
msgid "Opens {0} feed"
msgstr "{0} フィードを開く"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "自分の投稿にコンテンツの警告を追加するダイアログを開く"
@@ -6589,25 +6668,25 @@ msgstr "ハンドル変更ダイアログを開く"
msgid "Opens composer"
msgstr "編集画面を開く"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "デバイスのカメラを起動"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "デバイスのギャラリーを開いて最大{MAX_IMAGES, plural, other {#枚の画像}}、あるいは動画またはGIFを1つを選択します。"
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "絵文字選択を開く"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "新しいBlueskyのアカウントを作成するフローを開く"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "既存のBlueskyアカウントにサインインする画面を開きます"
@@ -6620,7 +6699,7 @@ msgstr "GIFの選択のダイアログを開く"
msgid "Opens helpdesk in browser"
msgstr "ブラウザでヘルプデスクを開く"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "画像選択を開く"
@@ -6640,10 +6719,14 @@ msgstr "パスワードリセットのフォームを開く"
msgid "Opens post language settings"
msgstr "投稿言語の設定を開く"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "投稿作成画面を開く"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "この下書きを編集画面で開く"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "OTA ステータス:利用可能なものはありません"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "その他"
@@ -6763,13 +6846,13 @@ msgstr "パスワードが更新されました"
msgid "Password updated!"
msgstr "パスワードが更新されました!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "一時停止"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "ビデオを一時停止"
@@ -6829,7 +6912,7 @@ msgstr "電話番号を確認しました"
msgid "Photography"
msgstr "写真"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "成人向けの画像です。"
@@ -6874,9 +6957,9 @@ msgstr "ピン留めされたフィード"
msgid "Pinned to your feeds"
msgstr "フィードにピン留めしました"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "再生"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "{0}を再生"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "ビデオを再生"
@@ -6893,11 +6976,11 @@ msgstr "ビデオを再生"
msgid "Play Video"
msgstr "ビデオを再生"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "GIFの再生や一時停止"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "ビデオの再生や一時停止"
@@ -6909,7 +6992,7 @@ msgstr "GIFを再生"
msgid "Plays the video"
msgstr "ビデオを再生"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "投稿するメディアに該当するコンテンツ警告ラベルを追加してください。"
@@ -7066,31 +7149,31 @@ msgstr "メッセージを以下に記入してください:"
msgid "Politics"
msgstr "政治"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "ポルノ"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "投稿"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "投稿"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "写真を投稿"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "ビデオを投稿"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "すべてポスト"
@@ -7217,7 +7300,7 @@ msgstr "あなたもフォローしているこのアカウントのフォロワ
msgid "Preview"
msgstr "プレビュー"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "前の画像"
@@ -7257,8 +7340,8 @@ msgstr "プライバシーとセキュリティの設定"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "プライバシーポリシー"
@@ -7266,7 +7349,11 @@ msgstr "プライバシーポリシー"
msgid "Privacy violation of a minor"
msgstr "未成年者のプライバシー侵害"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "ビデオを処理中…"
@@ -7280,10 +7367,10 @@ msgstr "処理中…"
msgid "profile"
msgstr "プロフィール"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "プロフィール"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "ユーザーを一括でミュートまたはブロックする、公開された共有可能なリスト。"
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "投稿を公開"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "投稿を公開"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "返信を公開"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "返信を公開"
@@ -7360,6 +7447,7 @@ msgstr "引用の通知"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "引用"
@@ -7385,7 +7473,7 @@ msgstr "引用投稿は無効です"
msgid "Quotes"
msgstr "引用"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "この投稿を引用する"
@@ -7424,11 +7512,11 @@ msgstr "検索フィルタの使い方を読む"
msgid "Read blog post"
msgstr "ブログ記事を読む"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "文字を減らす"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "もっと読む"
@@ -7720,13 +7808,13 @@ msgstr "返信できません"
msgid "Replies to this post are disabled."
msgstr "この投稿への返信は無効化されています。"
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "返信"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "返信する({0, plural, other {#件の返信}})"
@@ -7892,7 +7980,7 @@ msgstr "あなたのリポスト"
msgid "Reposts"
msgstr "リポスト"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "この投稿をリポストする"
@@ -7996,14 +8084,14 @@ msgstr "エラーになった最後のアクションをやり直す"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "前のページに戻る"
msgid "Returns to home page"
msgstr "ホームページに戻る"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "前のページに戻る"
@@ -8063,7 +8151,7 @@ msgstr "前のステップに戻る"
msgid "Save"
msgstr "保存"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "保存"
@@ -8076,9 +8164,26 @@ msgstr "生年月日を保存"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "変更を保存"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "変更を保存しますか?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "下書きを保存"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "下書きを保存しますか?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "マイフィードに保存"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "保存済"
@@ -8155,7 +8260,7 @@ msgstr "一番上までスクロール"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "検索"
@@ -8164,7 +8269,7 @@ msgstr "検索"
msgid "Search @{0}'s posts"
msgstr "@{0}の投稿を検索"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "名前や興味で検索"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "フィードを検索"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "「{interestsDisplayName}」を検索"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "\"{interestsDisplayName}\" を検索 (アクティブ)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "投稿を検索"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "プロフィールを検索"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "検索…"
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "プロフィールを検索"
@@ -8283,12 +8388,12 @@ msgstr "#{tag} の投稿を表示(このユーザーのみ)"
msgid "See jobs at Bluesky"
msgstr "Blueskyの求人を見る"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "もっと見る"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "推奨プロフィールをもっと見る"
@@ -8456,7 +8561,7 @@ msgstr "フィード内の翻訳に使用する言語を選択します。"
msgid "Select your preferred notification channels"
msgstr "お好みの通知チャンネルを選択してください"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "複数のメディアタイプの選択はサポートされていません。"
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "メールを送信"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "フィードバックを送信"
@@ -8566,7 +8671,7 @@ msgstr "パスワードをリセットするためのメールアドレスを入
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "設定"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "設定を保存しました"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "性的行為または性的なヌード。"
@@ -8634,7 +8739,7 @@ msgstr "性的にきわどい"
msgid "Share"
msgstr "共有"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "共有"
@@ -8712,13 +8817,13 @@ msgstr "お気に入りのフィードをシェアして!"
msgid "Shared Preferences Tester"
msgstr "Shared Preferencesのテスター"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "表示"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "ALTテキストを表示"
@@ -8820,7 +8925,7 @@ msgstr "警告の表示とフィードからのフィルタリング"
msgid "Show when you’re live"
msgstr "ライブ状態を表示"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "この投稿がいつ作成されたかについての情報を表示する"
@@ -8828,8 +8933,8 @@ msgstr "この投稿がいつ作成されたかについての情報を表示す
msgid "Shows other accounts you can switch to"
msgstr "切替可能な他のアカウントを表示"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "コンテンツを表示"
@@ -8842,14 +8947,14 @@ msgstr "コンテンツを表示"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "サインインが必要"
msgid "Signed in as @{0}"
msgstr "@{0}でサインイン"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "似ているアカウント"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "連絡先の共有をスキップしてアプリに進む"
msgid "Skip introduction and start using your account"
msgstr "チュートリアルをスキップしてアカウントの使用を開始"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "次のステップへスキップ"
@@ -8967,7 +9068,7 @@ msgstr "ソフトウェア開発"
msgid "Some of your verifications are invalid."
msgstr "認証の一部が無効です。"
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "お好みかもしれない他のフィード"
@@ -8994,7 +9095,7 @@ msgstr "何らかの問題が発生したようです"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "何らかの問題が発生したようなので、もう一度お試しください"
@@ -9020,7 +9121,7 @@ msgstr "問題が発生しました。もう一度お試しください。"
msgid "Something wrong? Let us know."
msgstr "何か問題がありますか?お知らせください。"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "申し訳ありません。現在、アカウントのおすすめを読み込むことができません。"
@@ -9113,7 +9214,11 @@ msgstr "スターターパック"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "スターターパックを使ってお気に入りのフィードやユーザーを友人へ簡単に共有できます。"
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "スターターパックを使ってお気に入りのフィードやユーザーを友人へ簡単に共有できます。"
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "スターターパックを使ってお気に入りのフィードやユーザーを友人へ共有できます。"
@@ -9181,11 +9286,11 @@ msgstr "これらのラベルを使用するには@{0}を登録してくださ
msgid "Subscribe to account activity"
msgstr "アカウントアクティビティを購読する"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "ラベラーを登録する"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "このラベラーを登録"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "おすすめアカウント"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "あなたへのおすすめ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "きわどい"
@@ -9354,8 +9459,8 @@ msgstr "規約"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "利用規約"
@@ -9403,12 +9508,12 @@ msgstr "そのユーザー名は既に使用されています"
msgid "That's all, folks!"
msgstr "以上です、皆さん!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "これで全部です!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "このアカウントは、ブロック解除後にあなたとやり取りすることができます。"
@@ -9447,7 +9552,7 @@ msgstr "Discoverフィード"
msgid "The Discover feed now knows what you like"
msgstr "Discoverフィードはあなたの好みを学習しました"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "アプリのほうがより良い体験をすることができます。今すぐBlueskyをダウンロードして、中断したところから再開しましょう。"
@@ -9527,7 +9632,7 @@ msgstr "テーマ"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "生年月日を変更できる頻度に制限があります。再度更新する前に1日か2日待つ必要があるかもしれません。"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "アカウントの無効化に期限はありません。いつでも戻ってこられます。"
@@ -9711,6 +9816,10 @@ msgstr "このコンテンツはBlueskyのアカウントがないと閲覧で
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "削除あるいは無効化されたアカウントとの会話です。押すと選択肢が表示されます"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "この下書きは完全に削除されます。"
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "このメールアドレスはすでにあなたのアカウントと関連付けられています。"
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "このフィードは空です!もっと多くのユーザーをフォローするか、言語の設定を調整する必要があるかもしれません。"
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "このフィードは空です。"
@@ -9798,7 +9907,7 @@ msgstr "このリストは空です。"
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "このモデレーションのサービスはご利用できません。詳細は以下をご覧ください。この問題が解決しない場合は、サポートへお問い合わせください。"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "<0>{0}0>に投稿されたと表示されていますが、Blueskyに初めて登場したのは<1>{1}1>です。"
@@ -9818,7 +9927,7 @@ msgstr "この投稿は投稿者によって削除されました"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "この投稿はフィードとスレッドから非表示になります。元に戻すことはできません。"
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "この投稿の投稿者は引用投稿を無効にしています。"
@@ -9834,7 +9943,7 @@ msgstr "この返信はスレッドの一番下にある非表示のセクショ
msgid "This service has not provided terms of service or a privacy policy."
msgstr "このサービスには、利用規約もプライバシーポリシーもありません。"
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "このサービスは、Live機能がベータ版の間はサポートされません。許可されているサービス: {formatted}"
@@ -9900,8 +10009,8 @@ msgstr "これによってあなたの投稿が全員に見える引用投稿か
msgid "Thread options"
msgstr "スレッドのオプション"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "スレッドの設定"
@@ -9951,7 +10060,7 @@ msgstr "今日"
msgid "Toggle to enable or disable adult content"
msgstr "成人向けコンテンツの有効もしくは無効の切り替え"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "音の切り替え"
@@ -9988,8 +10097,8 @@ msgstr "トピック"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "翻訳"
@@ -10091,15 +10200,15 @@ msgstr "フィードの情報が利用できません"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "ブロックを解除"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "ブロックを解除"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "アカウントのブロックを解除"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "アカウントのブロックを解除しますか?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "元に戻す"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "元に戻す"
@@ -10142,7 +10255,7 @@ msgstr "リポストを元に戻す"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "リポストを元に戻す({0, plural, other {#件のリポスト}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "{0}のフォローを解除"
@@ -10151,7 +10264,7 @@ msgstr "{0}のフォローを解除"
msgid "Unfollow account"
msgstr "アカウントのフォローを解除"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "ユーザーのフォローを解除"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "いいねを外す"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "いいねを外す({0, plural, other {#件のいいね}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "リストのミュートを解除"
msgid "Unmute thread"
msgstr "スレッドのミュートを解除"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "ビデオのミュートを解除"
@@ -10276,7 +10389,7 @@ msgstr "リストのピン留めを解除しました"
msgid "Unsnooze email reminder"
msgstr "メールのリマインダーのスヌーズを解除"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "登録を解除"
@@ -10285,7 +10398,7 @@ msgstr "登録を解除"
msgid "Unsubscribe from list"
msgstr "リストの登録を解除"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "このラベラーの登録を解除"
@@ -10293,7 +10406,7 @@ msgstr "このラベラーの登録を解除"
msgid "Unsubscribed from list"
msgstr "リストの登録を解除しました"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "サポートしていないビデオ形式:{mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "ファイルからアップロード"
msgid "Upload from Library"
msgstr "ライブラリーからアップロード"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "画像をアップロード中…"
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "リンクのサムネイルをアップロード中…"
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "ビデオをアップロード中…"
@@ -10389,8 +10506,8 @@ msgstr "デフォルトプロバイダーを使用"
msgid "Use in-app browser"
msgstr "アプリ内ブラウザを使用"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "リンクを開く時にアプリ内ブラウザを使用"
@@ -10445,6 +10562,10 @@ msgstr "あなたをブロックしているユーザー"
msgid "User list by {0}"
msgstr "<0/>の作成したユーザーリスト"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "あなたの作成したユーザーリスト"
@@ -10597,8 +10718,8 @@ msgstr "確認中…"
msgid "Version {0}"
msgstr "バージョン {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "ビデオ"
@@ -10614,20 +10735,24 @@ msgstr "ビデオフィード"
msgid "Video from {0}: {text}"
msgstr "{0}からのビデオ:{text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "{0}のビデオ。タップして再生または一時停止します"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "ビデオゲーム"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "ビデオは一時停止中です"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "ビデオを再生中です"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "ビデオが見つかりません。"
@@ -10635,11 +10760,11 @@ msgstr "ビデオが見つかりません。"
msgid "Video settings"
msgstr "ビデオの設定"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "ビデオをアップロードしました"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "ビデオ:{0}"
@@ -10647,23 +10772,23 @@ msgstr "ビデオ:{0}"
msgid "Videos"
msgstr "ビデオ"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "ビデオは3分未満でなければなりません。"
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "表示"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "{0}のアバターを表示"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "{0}のプロフィールを表示"
@@ -10708,7 +10833,7 @@ msgstr "もっと表示"
msgid "View more trending videos"
msgstr "話題のビデオをもっと見る"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "投稿を表示"
@@ -10788,7 +10913,7 @@ msgstr "暴力的または脅迫的なコンテンツ"
msgid "Visit site"
msgstr "サイトへアクセス"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "通知設定を開く"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "あなたのアカウントの年齢保証手順の初期化に問題が発生しました。<0>サポートにお問い合わせください0>。"
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "ネットワークで問題が発生しています。もう一度試してください"
@@ -10968,7 +11093,7 @@ msgstr "大変申し訳ありませんが、現在ミュートされたワード
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "大変申し訳ありませんが、検索を完了できませんでした。数分後にもう一度お試しください。"
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "大変申し訳ありません!返信しようとしている投稿は削除されました。"
@@ -10977,7 +11102,7 @@ msgstr "大変申し訳ありません!返信しようとしている投稿は
msgid "We're sorry! We can't find the page you were looking for."
msgstr "大変申し訳ありません!お探しのページは見つかりません。"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "大変申し訳ありません!ラベラーは20までしか登録できず、すでに上限に達しています。"
@@ -11018,10 +11143,9 @@ msgstr "なにに興味がありますか?"
msgid "What do you want to call your starter pack?"
msgstr "あなたのスターターパックを何と呼びたいですか?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "最近どう?"
@@ -11097,6 +11221,14 @@ msgstr "なぜこのユーザーをレビューする必要がありますか?
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "ユーザーをブロックするかこの会話を削除しますか(あるいは両方)?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "保存されている下書きを表示する前にこれを下書きとして保存しますか?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "後で編集するためにこれを下書きとして保存しますか?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "メッセージを書く"
msgid "Write a post"
msgstr "投稿を書く"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "投稿を書く"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "返信を書く"
@@ -11133,8 +11265,8 @@ msgstr "live.example.jp"
msgid "Yes"
msgstr "はい"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "はい、無効化します"
@@ -11188,7 +11320,7 @@ msgstr "あなたは並んでいます。"
msgid "You are Live"
msgstr "ライブ中"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "もうライブ中ではありません"
@@ -11200,7 +11332,7 @@ msgstr "あなたはビデオのアップロードを許可されていません
msgid "You are not following anyone yet"
msgstr "まだ誰もフォローしていません"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "現在ライブ中です!"
@@ -11255,11 +11387,11 @@ msgstr "特定のユーザーが投稿した時に通知を受け取ることが
msgid "You can now sign in with your new password."
msgstr "新しいパスワードでサインインできるようになりました。"
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "一度に1つのGIFしか選択できません。"
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "一度に1つのビデオしか選択できません。"
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "アカウントを再有効化してログインし続けることができます。あなたのプロフィールと投稿は他のユーザーに見えるようになります。"
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "合計で{MAX_IMAGES, plural, other {#枚の画像}}まで選択できます。"
@@ -11317,7 +11449,7 @@ msgstr "あなたはこのユーザーをブロックしました"
msgid "You have blocked this user. You cannot view their content."
msgstr "あなたはこのユーザーをブロックしているため、コンテンツを閲覧できません。"
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "返信、引用、メンションの通知が完全に無効になっているので、このタブは更新されません。調整するには、<0>通知設定0>を開いてください。"
@@ -11376,6 +11508,14 @@ msgstr "メールアドレスの確認に成功しました。このダイアロ
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "ビデオのアップロードの制限に一時的に到達しました。時間をおいてもう一度お試しください。"
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "この下書きに未保存の変更があります。保存しますか?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "未保存の変更があります。既存の下書きを表示する前に保存しますか?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "スターターパックをまだ作成していません!"
@@ -11437,7 +11577,7 @@ msgstr "アカウントを作成するには、 {MIN_ACCESS_AGE} 歳以上であ
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Blueskyを使用するには、13歳以上である必要があります。詳細については、<0>利用規約0>をご覧ください。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "スターターパックを作成するには、少なくとも7人をフォローしなければなりません。"
@@ -11449,7 +11589,7 @@ msgstr "この画面にアクセスするには年齢保証を完了する必要
msgid "You must grant access to your photo library to save a QR code"
msgstr "QRコードを保存するには写真ライブラリへのアクセスを許可する必要があります"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "メディアライブラリへのアクセスを許可する必要があります。"
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "あなたは並んでいます。"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "アプリパスワードでサインインしています。アカウントを無効にするには、メインパスワードでサインインしてください。"
@@ -11589,7 +11729,7 @@ msgstr "ビデオのアップロードの一日の上限に到達しました(
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "ビデオのアップロードの一日の上限に到達しました(ビデオの数が多すぎます)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "見るべきビデオがなくなりました。休憩を取ってもいい時間かも?"
@@ -11625,7 +11765,7 @@ msgstr "あなたの異議申し立てが送信されました。異議申し立
msgid "Your birth date"
msgstr "生年月日"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "使用中のブラウザが、このビデオ形式に対応していません。他のブラウザをお試しください。"
@@ -11692,8 +11832,8 @@ msgstr "フルハンドルは<0>@{0}0>になります"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "気になること"
@@ -11731,11 +11871,11 @@ msgstr "パスワードが正常に変更されました!これからBluesky
msgid "Your password must be at least 8 characters long."
msgstr "パスワードは 8 文字以上である必要があります。"
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "投稿が送信されました"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "投稿が送信されました"
@@ -11752,11 +11892,11 @@ msgstr "あなたのプロフィール画像"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "あなたのプロフィール写真のまわりを、他のユーザーのプロフィール写真が同心円状に取り囲んでいる"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "あなたのプロフィール、投稿、フィード、そしてリストは他のBlueskyユーザーに見えなくなります。ログインすることでいつでもアカウントを再有効化できます。"
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "返信が送信されました"
diff --git a/src/locale/locales/kab/messages.po b/src/locale/locales/kab/messages.po
index b1349a9a02..09cf2aca8d 100644
--- a/src/locale/locales/kab/messages.po
+++ b/src/locale/locales/kab/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: kab\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Kabyle\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -23,7 +23,7 @@ msgstr ""
msgid "\"{interestsDisplayName}\" category (active)"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:162
+#: src/screens/Messages/components/ChatListItem.tsx:163
msgid "(contains embedded content)"
msgstr ""
@@ -43,7 +43,7 @@ msgstr ""
msgid "{0, plural, one {# following} other {# following}}"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:265
+#: src/components/contacts/screens/ViewMatches.tsx:267
msgid "{0, plural, one {# friend found!} other {# friends found!}}"
msgstr ""
@@ -83,9 +83,9 @@ msgstr ""
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr ""
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:489
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
@@ -112,28 +116,28 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:455
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:500
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:79
msgid "{0, plural, other {{1} posts}}"
msgstr ""
#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
-#: src/screens/StarterPack/StarterPackScreen.tsx:492
+#: src/screens/StarterPack/StarterPackScreen.tsx:496
msgid "{0, plural, other {# people have}} used this starter pack!"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:360
+#: src/components/dialogs/StarterPackDialog.tsx:361
msgid "{0, plural, other {+# more}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -164,11 +168,11 @@ msgstr ""
msgid "{0} is live"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:188
+#: src/screens/Signup/StepHandle/index.tsx:185
msgid "{0} is not available"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
msgid "{0} joined this week"
msgstr ""
@@ -185,20 +189,20 @@ msgstr ""
msgid "{0} reacted {1}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:233
+#: src/screens/Messages/components/ChatListItem.tsx:234
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:577
-#: src/view/com/util/UserAvatar.tsx:595
+#: src/view/com/util/UserAvatar.tsx:575
+#: src/view/com/util/UserAvatar.tsx:593
msgid "{0}'s avatar"
msgstr ""
@@ -243,7 +247,7 @@ msgid "{DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Display name is too long. The
msgstr ""
#: src/lib/generate-starterpack.ts:104
-#: src/screens/StarterPack/Wizard/index.tsx:201
+#: src/screens/StarterPack/Wizard/index.tsx:202
msgid "{displayName}'s Starter Pack"
msgstr ""
@@ -432,11 +436,11 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:430
+#: src/screens/Settings/FindContactsSettings.tsx:435
msgid "{numMatches, plural, one {# contact found} other {# contacts found}}"
msgstr ""
@@ -449,25 +453,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago"
msgstr ""
#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:108
msgid "{rank}."
msgstr ""
#. trending topic time spent trending. should be as short as possible to fit in a pill
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:203
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200
msgid "{type}h ago"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:60
+#: src/components/verification/VerifierDialog.tsx:61
msgid "{userName} is a trusted verifier"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:67
+#: src/components/verification/VerificationsDialog.tsx:68
msgid "{userName} is verified"
msgstr ""
#. Possessive, meaning "the verifications of {userName}"
-#: src/components/verification/VerificationsDialog.tsx:69
+#: src/components/verification/VerificationsDialog.tsx:70
msgid "{userName}'s verifications"
msgstr ""
@@ -476,34 +480,34 @@ msgstr ""
msgid "+{computedTotal}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:524
+#: src/screens/StarterPack/Wizard/index.tsx:525
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:577
+#: src/screens/StarterPack/Wizard/index.tsx:578
msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:511
-#: src/screens/StarterPack/Wizard/index.tsx:565
+#: src/screens/StarterPack/Wizard/index.tsx:512
+#: src/screens/StarterPack/Wizard/index.tsx:566
msgid "<0>{0}0> and<1> 1><2>{1} 2>are included in your starter pack"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:558
+#: src/screens/StarterPack/Wizard/index.tsx:559
msgid "<0>{0}0> is included in your starter pack"
msgstr ""
-#: src/components/WhoCanReply.tsx:351
+#: src/components/WhoCanReply.tsx:352
msgid "<0>{0}0> members"
msgstr ""
@@ -516,7 +520,7 @@ msgstr ""
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:502
+#: src/screens/StarterPack/Wizard/index.tsx:503
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr ""
@@ -545,24 +549,24 @@ msgid "A collection of popular feeds you can find on Bluesky, including News, Bo
msgstr ""
#. If last message does not contain text, fall back to "{user} reacted to {a message}"
-#: src/screens/Messages/components/ChatListItem.tsx:212
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "a message"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:99
+#: src/components/contacts/screens/PhoneInput.tsx:101
msgid "A network error occurred. Please check your internet connection"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:96
-#: src/components/contacts/screens/VerifyNumber.tsx:152
+#: src/components/contacts/screens/VerifyNumber.tsx:98
+#: src/components/contacts/screens/VerifyNumber.tsx:154
msgid "A network error occurred. Please check your internet connection."
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:140
+#: src/components/contacts/screens/VerifyNumber.tsx:142
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:92
msgid "A new form of verification"
msgstr ""
@@ -580,8 +584,8 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
-#: src/Navigation.tsx:534
-#: src/screens/Settings/AboutSettings.tsx:75
+#: src/Navigation.tsx:535
+#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
#: src/screens/Settings/Settings.tsx:263
msgid "About"
@@ -615,11 +619,11 @@ msgstr ""
msgid "Accessibility"
msgstr ""
-#: src/Navigation.tsx:385
+#: src/Navigation.tsx:386
msgid "Accessibility Settings"
msgstr ""
-#: src/Navigation.tsx:401
+#: src/Navigation.tsx:402
#: src/screens/Login/LoginForm.tsx:194
#: src/screens/Settings/AccountSettings.tsx:51
#: src/screens/Settings/Settings.tsx:178
@@ -627,20 +631,20 @@ msgstr ""
msgid "Account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:419
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423
#: src/screens/Messages/components/RequestButtons.tsx:91
-#: src/view/com/profile/ProfileMenu.tsx:181
+#: src/view/com/profile/ProfileMenu.tsx:182
msgctxt "toast"
msgid "Account blocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:194
+#: src/view/com/profile/ProfileMenu.tsx:195
msgctxt "toast"
msgid "Account followed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442
-#: src/view/com/profile/ProfileMenu.tsx:157
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:446
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account muted"
msgstr ""
@@ -668,45 +672,45 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:84
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:290
-#: src/view/com/profile/ProfileMenu.tsx:171
+#: src/view/com/profile/ProfileMenu.tsx:172
msgctxt "toast"
msgid "Account unblocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:206
+#: src/view/com/profile/ProfileMenu.tsx:207
msgctxt "toast"
msgid "Account unfollowed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:432
-#: src/view/com/profile/ProfileMenu.tsx:147
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unmuted"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:97
+#: src/components/verification/VerifierDialog.tsx:98
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:182
+#: src/lib/hooks/useNotificationHandler.ts:185
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102
#: src/screens/Settings/NotificationSettings/index.tsx:192
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:502
+#: src/Navigation.tsx:503
msgid "Activity notifications"
msgstr ""
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:333
-#: src/components/dialogs/StarterPackDialog.tsx:374
-#: src/components/dialogs/StarterPackDialog.tsx:380
+#: src/components/dialogs/StarterPackDialog.tsx:375
+#: src/components/dialogs/StarterPackDialog.tsx:381
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:613
+#: src/screens/StarterPack/Wizard/index.tsx:614
msgid "Add {0} more to continue"
msgstr ""
@@ -714,8 +718,8 @@ msgstr ""
msgid "Add {displayName} to starter pack"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr ""
@@ -754,11 +758,11 @@ msgstr ""
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:856
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1496
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,7 +780,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:220
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
@@ -785,8 +789,8 @@ msgstr ""
msgid "Add media to post"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:520
-#: src/components/moderation/ReportDialog/index.tsx:524
+#: src/components/moderation/ReportDialog/index.tsx:514
+#: src/components/moderation/ReportDialog/index.tsx:518
msgid "Add more details (optional)"
msgstr ""
@@ -815,7 +819,7 @@ msgstr ""
msgid "Add recommended feeds"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:546
+#: src/screens/StarterPack/Wizard/index.tsx:547
msgid "Add some feeds to your starter pack!"
msgstr ""
@@ -831,18 +835,18 @@ msgstr ""
msgid "Add this feed to your feeds"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:342
-#: src/view/com/profile/ProfileMenu.tsx:345
+#: src/view/com/profile/ProfileMenu.tsx:343
+#: src/view/com/profile/ProfileMenu.tsx:346
msgid "Add to lists"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:141
+#: src/components/PostControls/BookmarkButton.tsx:142
msgid "Add to saved posts"
msgstr ""
#: src/components/dialogs/StarterPackDialog.tsx:176
-#: src/view/com/profile/ProfileMenu.tsx:333
-#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:334
+#: src/view/com/profile/ProfileMenu.tsx:337
msgid "Add to starter packs"
msgstr ""
@@ -850,7 +854,7 @@ msgstr ""
msgid "Add user to list"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:231
+#: src/ageAssurance/components/NoAccessScreen.tsx:228
msgid "Add your birthdate"
msgstr ""
@@ -859,19 +863,19 @@ msgstr ""
msgid "Added to list"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:258
+#: src/components/dialogs/StarterPackDialog.tsx:259
msgid "Added to starter pack"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:111
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:113
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:538
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr ""
@@ -879,10 +883,10 @@ msgstr ""
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr ""
@@ -894,8 +898,8 @@ msgstr ""
msgid "Adult content is disabled."
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr ""
@@ -911,17 +915,17 @@ msgstr ""
msgid "Age Assurance"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:69
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:71
msgid "Age assurance inquiry failed to send, please try again."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:77
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:79
msgctxt "toast"
msgid "Age assurance inquiry was submitted"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:354
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:199
+#: src/ageAssurance/components/NoAccessScreen.tsx:352
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:201
msgid "Age assurance only takes a few minutes"
msgstr ""
@@ -930,17 +934,17 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:174
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:91
-#: src/screens/StarterPack/StarterPackScreen.tsx:386
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:390
msgid "All accounts have been followed!"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:141
+#: src/components/contacts/screens/ViewMatches.tsx:143
msgid "All friends followed!"
msgstr ""
@@ -960,7 +964,7 @@ msgstr ""
msgid "Allow access to your direct messages"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:448
msgid "Allow anyone to reply"
msgstr ""
@@ -979,23 +983,23 @@ msgstr ""
msgid "Allow others to be notified of your posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:498
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:501
msgid "Allow people you follow to reply"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:512
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:515
msgid "Allow people you mention to reply"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:630
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:633
msgid "Allow quote posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:592
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:595
msgid "Allow users in {0} to reply"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:484
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:487
msgid "Allow your followers to reply"
msgstr ""
@@ -1009,15 +1013,15 @@ msgstr ""
msgid "Already have a code?"
msgstr ""
-#: src/components/WelcomeModal.tsx:189
+#: src/components/WelcomeModal.tsx:191
msgid "Already have an account?"
msgstr ""
-#: src/screens/Login/ChooseAccountForm.tsx:43
+#: src/screens/Login/ChooseAccountForm.tsx:44
msgid "Already signed in as @{0}"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1037,7 @@ msgstr ""
msgid "Alt text"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
msgid "Alt Text"
msgstr ""
@@ -1067,7 +1071,7 @@ msgstr ""
msgid "An error occurred while compressing the video."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:196
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,11 +1080,11 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:240
+#: src/components/contacts/screens/ViewMatches.tsx:242
msgid "An error occurred while hiding suggestion. {0}"
msgstr ""
@@ -1092,18 +1096,18 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:575
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:578
msgid "An error occurred while loading your lists :/"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:75
+#: src/components/StarterPack/QrCodeDialog.tsx:77
msgid "An error occurred while saving the QR code!"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:51
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:76
-#: src/screens/StarterPack/StarterPackScreen.tsx:352
-#: src/screens/StarterPack/StarterPackScreen.tsx:374
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:53
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:78
+#: src/screens/StarterPack/StarterPackScreen.tsx:356
+#: src/screens/StarterPack/StarterPackScreen.tsx:378
msgid "An error occurred while trying to follow all"
msgstr ""
@@ -1111,9 +1115,9 @@ msgstr ""
msgid "An error occurred while uploading the video."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:117
-#: src/components/contacts/screens/VerifyNumber.tsx:128
-#: src/components/contacts/screens/VerifyNumber.tsx:181
+#: src/components/contacts/screens/PhoneInput.tsx:119
+#: src/components/contacts/screens/VerifyNumber.tsx:130
+#: src/components/contacts/screens/VerifyNumber.tsx:183
msgid "An error occurred. {0}"
msgstr ""
@@ -1126,8 +1130,8 @@ msgstr ""
msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
-#: src/components/verification/VerifierDialog.tsx:86
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:85
+#: src/components/verification/VerifierDialog.tsx:87
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
@@ -1135,11 +1139,11 @@ msgstr ""
msgid "An issue not included in these options"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:38
+#: src/components/dms/dialogs/NewChatDialog.tsx:39
msgid "An issue occurred starting the chat"
msgstr ""
-#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47
+#: src/components/dms/dialogs/ShareViaChatDialog.tsx:48
msgid "An issue occurred while trying to open the chat"
msgstr ""
@@ -1152,7 +1156,7 @@ msgstr ""
msgid "An issue occurred, please try again."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:119
msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
msgstr ""
@@ -1165,7 +1169,7 @@ msgstr ""
msgid "an unknown labeler"
msgstr ""
-#: src/components/WhoCanReply.tsx:372
+#: src/components/WhoCanReply.tsx:373
msgid "and"
msgstr ""
@@ -1181,7 +1185,7 @@ msgstr ""
msgid "Animals"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:154
msgid "Animated GIF"
msgstr ""
@@ -1189,15 +1193,15 @@ msgstr ""
msgid "Announcement"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:38
msgid "Announcing verification on Bluesky"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:451
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:454
msgid "Anyone"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:134
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:136
msgid "Anyone can interact"
msgstr ""
@@ -1207,7 +1211,7 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:543
#: src/screens/Settings/AppIconSettings/index.tsx:64
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
@@ -1248,7 +1252,7 @@ msgstr ""
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:354
#: src/screens/Settings/AppPasswords.tsx:50
msgid "App Passwords"
msgstr ""
@@ -1289,7 +1293,7 @@ msgstr ""
msgid "Appeal this decision"
msgstr ""
-#: src/Navigation.tsx:393
+#: src/Navigation.tsx:394
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:228
#: src/screens/Settings/Settings.tsx:231
@@ -1306,12 +1310,12 @@ msgstr ""
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:670
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:678
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr ""
@@ -1319,11 +1323,11 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:200
+#: src/components/dms/MessageContextMenu.tsx:197
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:659
+#: src/screens/StarterPack/StarterPackScreen.tsx:664
msgid "Are you sure you want to delete this starter pack?"
msgstr ""
@@ -1332,11 +1336,11 @@ msgstr ""
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr ""
@@ -1344,11 +1348,7 @@ msgstr ""
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:805
-msgid "Are you sure you'd like to discard this draft?"
-msgstr ""
-
-#: src/view/com/composer/Composer.tsx:995
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -1364,12 +1364,12 @@ msgstr ""
msgid "Art"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:558
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:560
msgid "Assign topic for algo"
msgstr ""
@@ -1394,8 +1394,8 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:333
#: src/components/moderation/LabelsOnMeDialog.tsx:334
-#: src/screens/Login/ChooseAccountForm.tsx:91
-#: src/screens/Login/ChooseAccountForm.tsx:96
+#: src/screens/Login/ChooseAccountForm.tsx:92
+#: src/screens/Login/ChooseAccountForm.tsx:97
#: src/screens/Login/ForgotPasswordForm.tsx:123
#: src/screens/Login/ForgotPasswordForm.tsx:129
#: src/screens/Login/LoginForm.tsx:313
@@ -1404,11 +1404,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:184
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
-#: src/screens/StarterPack/Wizard/index.tsx:323
+#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr ""
@@ -1448,8 +1450,8 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:54
-#: src/components/dms/MessageProfileButton.tsx:58
+#: src/components/dms/dialogs/NewChatDialog.tsx:55
+#: src/components/dms/MessageProfileButton.tsx:59
#: src/screens/Messages/ChatList.tsx:371
#: src/screens/Messages/Conversation.tsx:228
msgid "Before you can message another user, you must first verify your email."
@@ -1463,7 +1465,7 @@ msgstr ""
msgid "Begin age assurance process"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:50
msgid "Begin the age assurance process by completing the fields below."
msgstr ""
@@ -1479,30 +1481,30 @@ msgstr ""
msgid "Birthday"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:821
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/view/com/profile/ProfileMenu.tsx:550
+#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Block"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:261
#: src/components/dms/ConvoMenu.tsx:264
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:706
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708
#: src/screens/Messages/components/RequestButtons.tsx:144
#: src/screens/Messages/components/RequestButtons.tsx:146
-#: src/view/com/profile/ProfileMenu.tsx:456
-#: src/view/com/profile/ProfileMenu.tsx:463
+#: src/view/com/profile/ProfileMenu.tsx:457
+#: src/view/com/profile/ProfileMenu.tsx:464
msgid "Block account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:813
-#: src/view/com/profile/ProfileMenu.tsx:533
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:816
+#: src/view/com/profile/ProfileMenu.tsx:534
msgid "Block Account?"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:97
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:100
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:90
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:93
msgid "Block accounts"
msgstr ""
@@ -1510,7 +1512,7 @@ msgstr ""
msgid "Block and Delete"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:125
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:118
msgid "Block list"
msgstr ""
@@ -1518,7 +1520,7 @@ msgstr ""
msgid "Block or report"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:120
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:113
msgid "Block these accounts?"
msgstr ""
@@ -1543,13 +1545,13 @@ msgstr ""
msgid "Blocked accounts"
msgstr ""
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:195
#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:815
-#: src/view/com/profile/ProfileMenu.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818
+#: src/view/com/profile/ProfileMenu.tsx:546
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -1561,11 +1563,11 @@ msgstr ""
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:122
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:115
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:542
+#: src/view/com/profile/ProfileMenu.tsx:543
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr ""
@@ -1578,7 +1580,7 @@ msgstr ""
msgid "Bluesky"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:700
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr ""
@@ -1587,7 +1589,7 @@ msgctxt "Name of app icon variant"
msgid "Bluesky Classic™"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:232
+#: src/components/contacts/screens/GetContacts.tsx:234
msgid "Bluesky helps friends find each other by creating an encoded digital fingerprint, called a \"hash\", and then looking for matching hashes."
msgstr ""
@@ -1603,7 +1605,7 @@ msgstr ""
msgid "Bluesky is better with friends!"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:35
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:42
msgid "Bluesky is more fun with friends"
msgstr ""
@@ -1611,7 +1613,7 @@ msgstr ""
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:312
+#: src/components/contacts/screens/ViewMatches.tsx:314
msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>"
msgstr ""
@@ -1619,11 +1621,11 @@ msgstr ""
msgid "Bluesky Social Terms of Service"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:542
+#: src/screens/Settings/FindContactsSettings.tsx:548
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
@@ -1631,7 +1633,7 @@ msgstr ""
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:133
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -1664,20 +1666,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:777
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:906
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:887
-#: src/components/FeedInterstitials.tsx:890
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:915
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -1698,7 +1700,7 @@ msgstr ""
msgid "Browse starter pack {displayName}"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90
msgid "Browse topic {0}"
msgstr ""
@@ -1710,18 +1712,18 @@ msgstr ""
msgid "Business"
msgstr ""
-#: src/screens/Bookmarks/index.tsx:284
+#: src/screens/Bookmarks/index.tsx:304
msgid "Button to go back to the home timeline"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:842
+#: src/components/moderation/ReportDialog/index.tsx:836
#: src/screens/Search/components/StarterPackCard.tsx:106
-#: src/screens/Search/Explore.tsx:943
+#: src/screens/Search/Explore.tsx:932
msgid "By {0}"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:453
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:455
msgid "By <0>{0}0>"
msgstr ""
@@ -1729,7 +1731,7 @@ msgstr ""
msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:294
+#: src/components/contacts/screens/PhoneInput.tsx:296
msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more0>"
msgstr ""
@@ -1754,10 +1756,10 @@ msgid "Camera"
msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:128
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:134
-#: src/components/contacts/screens/GetContacts.tsx:289
-#: src/components/contacts/screens/GetContacts.tsx:294
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:130
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:136
+#: src/components/contacts/screens/GetContacts.tsx:291
+#: src/components/contacts/screens/GetContacts.tsx:296
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:152
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:157
#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
@@ -1770,8 +1772,8 @@ msgstr ""
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1790,8 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1050
-#: src/view/com/composer/Composer.tsx:1061
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1819,10 +1821,10 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:107
-#: src/components/PostControls/index.tsx:138
-#: src/components/PostControls/index.tsx:166
-#: src/state/shell/composer/index.tsx:95
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:139
+#: src/components/PostControls/index.tsx:167
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -1861,7 +1863,7 @@ msgstr ""
msgid "Change Handle"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:437
+#: src/components/moderation/ReportDialog/index.tsx:431
msgid "Change moderation service"
msgstr ""
@@ -1874,11 +1876,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:302
+#: src/components/moderation/ReportDialog/index.tsx:296
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:382
+#: src/components/moderation/ReportDialog/index.tsx:376
msgid "Change report reason"
msgstr ""
@@ -1899,11 +1901,11 @@ msgstr ""
msgid "Changes saved"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:99
-#: src/Navigation.tsx:559
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/lib/hooks/useNotificationHandler.ts:102
+#: src/Navigation.tsx:560
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr ""
@@ -1913,11 +1915,11 @@ msgctxt "toast"
msgid "Chat deleted"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:114
+#: src/lib/hooks/useNotificationHandler.ts:117
msgid "Chat messages - silent"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:105
+#: src/lib/hooks/useNotificationHandler.ts:108
msgid "Chat messages - sound"
msgstr ""
@@ -1926,7 +1928,7 @@ msgctxt "toast"
msgid "Chat muted"
msgstr ""
-#: src/Navigation.tsx:569
+#: src/Navigation.tsx:570
#: src/screens/Messages/components/InboxPreview.tsx:22
msgid "Chat request inbox"
msgstr ""
@@ -1938,7 +1940,7 @@ msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:78
-#: src/Navigation.tsx:564
+#: src/Navigation.tsx:565
#: src/screens/Messages/ChatList.tsx:81
#: src/screens/Messages/ChatList.tsx:85
#: src/screens/Messages/ChatList.tsx:380
@@ -1985,15 +1987,15 @@ msgstr ""
msgid "Choose domain verification method"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:217
+#: src/screens/StarterPack/Wizard/index.tsx:218
msgid "Choose Feeds"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:213
+#: src/screens/StarterPack/Wizard/index.tsx:214
msgid "Choose People"
msgstr ""
@@ -2017,11 +2019,11 @@ msgstr ""
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:273
+#: src/screens/Signup/StepInfo/index.tsx:271
msgid "Choose your password"
msgstr ""
-#: src/screens/Signup/index.tsx:181
+#: src/screens/Signup/index.tsx:192
msgid "Choose your username"
msgstr ""
@@ -2033,8 +2035,8 @@ msgstr ""
msgid "Clear all storage data (restart after this)"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:116
-#: src/screens/Settings/AboutSettings.tsx:120
+#: src/screens/Settings/AboutSettings.tsx:114
+#: src/screens/Settings/AboutSettings.tsx:118
msgid "Clear image cache"
msgstr ""
@@ -2050,11 +2052,11 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:126
+#: src/ageAssurance/components/NoAccessScreen.tsx:123
msgid "Click here to contact our support team"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:245
+#: src/ageAssurance/components/NoAccessScreen.tsx:242
msgid "Click here to log out"
msgstr ""
@@ -2063,7 +2065,7 @@ msgid "Click here to restart the verification process."
msgstr ""
#: src/ageAssurance/components/NoAccessScreen.tsx:103
-#: src/ageAssurance/components/NoAccessScreen.tsx:228
+#: src/ageAssurance/components/NoAccessScreen.tsx:225
msgid "Click here to update your birthdate"
msgstr ""
@@ -2087,17 +2089,17 @@ msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:270
#: src/ageAssurance/components/RedirectOverlay.tsx:320
#: src/ageAssurance/components/RedirectOverlay.tsx:326
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:172
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:231
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:173
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:179
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:232
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:238
#: src/components/dialogs/GifSelect.tsx:269
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:198
#: src/components/dialogs/SearchablePeopleList.tsx:295
@@ -2111,14 +2113,14 @@ msgstr ""
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:445
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:204
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
-#: src/components/verification/VerificationsDialog.tsx:144
-#: src/components/verification/VerifierDialog.tsx:150
-#: src/components/WhoCanReply.tsx:234
-#: src/components/WhoCanReply.tsx:241
+#: src/components/verification/VerificationsDialog.tsx:145
+#: src/components/verification/VerifierDialog.tsx:147
+#: src/components/WhoCanReply.tsx:235
+#: src/components/WhoCanReply.tsx:242
#: src/screens/Settings/components/ChangePasswordDialog.tsx:287
#: src/screens/Settings/components/ChangePasswordDialog.tsx:292
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:335
@@ -2143,15 +2145,15 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:222
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:228
#: src/components/dialogs/GifSelect.tsx:263
-#: src/components/verification/VerificationsDialog.tsx:136
-#: src/components/verification/VerifierDialog.tsx:142
+#: src/components/verification/VerificationsDialog.tsx:137
+#: src/components/verification/VerifierDialog.tsx:139
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:204
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:298
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:330
msgid "Close dialog"
msgstr ""
-#: src/view/shell/index.web.tsx:130
+#: src/view/shell/index.web.tsx:131
msgid "Close drawer menu"
msgstr ""
@@ -2168,7 +2170,8 @@ msgstr ""
msgid "Close image"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr ""
@@ -2182,7 +2185,7 @@ msgstr ""
msgid "Close this dialog"
msgstr ""
-#: src/components/WelcomeModal.tsx:214
+#: src/components/WelcomeModal.tsx:216
msgid "Close welcome modal"
msgstr ""
@@ -2190,7 +2193,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1058
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2229,25 +2232,25 @@ msgid "Comics"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:344
#: src/view/screens/CommunityGuidelines.tsx:37
msgid "Community Guidelines"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:322
+#: src/screens/Onboarding/StepFinished/index.tsx:325
msgid "Complete onboarding and start using your account"
msgstr ""
-#: src/screens/Signup/index.tsx:183
+#: src/screens/Signup/index.tsx:194
msgid "Complete the challenge"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:143
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2258,7 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1891
+#: src/view/com/composer/Composer.tsx:2295
msgid "Compressing video..."
msgstr ""
@@ -2263,7 +2266,6 @@ msgstr ""
msgid "Configure content filtering setting for category: {name}"
msgstr ""
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2274,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr ""
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2287,8 +2289,8 @@ msgstr ""
msgid "Confirm delete account"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:368
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:95
+#: src/ageAssurance/components/NoAccessScreen.tsx:366
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:97
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:40
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:105
msgid "Confirm your location"
@@ -2310,36 +2312,36 @@ msgid "Connecting..."
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:296
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:207
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:208
msgid "Connection issue"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:305
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:138
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:29
+#: src/ageAssurance/components/NoAccessScreen.tsx:303
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:140
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:30
msgid "Contact our moderation team"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155
-#: src/screens/Signup/index.tsx:222
-#: src/screens/Signup/index.tsx:225
+#: src/screens/Signup/index.tsx:233
+#: src/screens/Signup/index.tsx:236
msgid "Contact support"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:57
-#: src/screens/Settings/FindContactsSettings.tsx:154
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:64
+#: src/screens/Settings/FindContactsSettings.tsx:156
msgid "Contact sync is not available on this device, as the app is unable to access your contacts."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:93
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:95
msgid "Contact us"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:498
+#: src/screens/Settings/FindContactsSettings.tsx:504
msgid "Contacts imported"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:471
+#: src/screens/Settings/FindContactsSettings.tsx:477
msgid "Contacts removed"
msgstr ""
@@ -2352,7 +2354,7 @@ msgstr ""
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:518
+#: src/Navigation.tsx:519
msgid "Content and Media"
msgstr ""
@@ -2364,7 +2366,7 @@ msgstr ""
msgid "Content filters"
msgstr ""
-#: src/screens/Search/modules/ExploreRecommendations.tsx:59
+#: src/screens/Search/modules/ExploreRecommendations.tsx:60
msgid "Content from across the network we think you might like."
msgstr ""
@@ -2389,7 +2391,7 @@ msgstr ""
msgid "Content Warning"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr ""
@@ -2399,9 +2401,9 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
-#: src/screens/Onboarding/StepInterests/index.tsx:91
+#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:276
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr ""
@@ -2418,9 +2420,9 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:88
+#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2436,18 +2438,18 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:198
+#: src/screens/Messages/components/ChatListItem.tsx:199
msgid "Conversation deleted"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:151
+#: src/screens/Settings/AboutSettings.tsx:149
msgid "Copied build version to clipboard"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:58
#: src/components/PostControls/DiscoverDebug.tsx:36
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:249
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:257
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:73
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
msgid "Copied to clipboard"
@@ -2458,11 +2460,11 @@ msgstr ""
msgid "Copied!"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:127
+#: src/screens/Settings/AboutSettings.tsx:125
msgid "Copies build version to clipboard"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/components/StarterPack/QrCodeDialog.tsx:194
msgid "Copy"
msgstr ""
@@ -2470,13 +2472,13 @@ msgstr ""
msgid "Copy App Password"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:493
-#: src/view/com/profile/ProfileMenu.tsx:496
+#: src/view/com/profile/ProfileMenu.tsx:494
+#: src/view/com/profile/ProfileMenu.tsx:497
msgid "Copy at:// URI"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156
msgid "Copy author DID"
msgstr ""
@@ -2486,8 +2488,8 @@ msgid "Copy code"
msgstr ""
#: src/screens/Settings/components/ChangeHandleDialog.tsx:502
-#: src/view/com/profile/ProfileMenu.tsx:502
-#: src/view/com/profile/ProfileMenu.tsx:505
+#: src/view/com/profile/ProfileMenu.tsx:503
+#: src/view/com/profile/ProfileMenu.tsx:506
msgid "Copy DID"
msgstr ""
@@ -2495,52 +2497,52 @@ msgstr ""
msgid "Copy host"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:113
-#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/components/StarterPack/ShareDialog.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:624
msgid "Copy link"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:120
+#: src/components/StarterPack/ShareDialog.tsx:121
msgid "Copy Link"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:165
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:169
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:159
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:163
msgid "Copy link to list"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:128
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:131
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90
msgid "Copy link to post"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:269
-#: src/view/com/profile/ProfileMenu.tsx:280
+#: src/view/com/profile/ProfileMenu.tsx:270
+#: src/view/com/profile/ProfileMenu.tsx:281
msgid "Copy link to profile"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:612
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link to starter pack"
msgstr ""
+#: src/components/dms/MessageContextMenu.tsx:143
#: src/components/dms/MessageContextMenu.tsx:146
-#: src/components/dms/MessageContextMenu.tsx:149
msgid "Copy message text"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147
msgid "Copy post at:// URI"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:512
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:513
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515
msgid "Copy post text"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:178
+#: src/components/StarterPack/QrCodeDialog.tsx:180
msgid "Copy QR code"
msgstr ""
@@ -2550,7 +2552,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:349
#: src/view/screens/CopyrightPolicy.tsx:34
msgid "Copyright Policy"
msgstr ""
@@ -2567,13 +2569,13 @@ msgstr ""
msgid "Could not find profile"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:208
-#: src/screens/Settings/FindContactsSettings.tsx:397
+#: src/screens/Settings/FindContactsSettings.tsx:211
+#: src/screens/Settings/FindContactsSettings.tsx:402
msgid "Could not follow all matches - please check your network connection."
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:214
-#: src/screens/Settings/FindContactsSettings.tsx:403
+#: src/screens/Settings/FindContactsSettings.tsx:217
+#: src/screens/Settings/FindContactsSettings.tsx:408
msgid "Could not follow all matches. {0}"
msgstr ""
@@ -2582,7 +2584,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr ""
@@ -2608,11 +2610,11 @@ msgstr ""
msgid "Could not update notification settings"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:168
+#: src/components/contacts/screens/GetContacts.tsx:170
msgid "Could not upload contacts. {0}"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:162
+#: src/components/contacts/screens/GetContacts.tsx:164
msgid "Could not upload contacts. You need to re-verify your phone number to proceed"
msgstr ""
@@ -2633,18 +2635,18 @@ msgstr ""
msgid "Create a list"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:163
+#: src/components/StarterPack/QrCodeDialog.tsx:165
msgid "Create a QR code for a starter pack"
msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:206
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
-#: src/Navigation.tsx:599
+#: src/Navigation.tsx:600
msgid "Create a starter pack"
msgstr ""
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2652,20 +2654,20 @@ msgstr ""
msgid "Create a starter pack for me"
msgstr ""
-#: src/components/WelcomeModal.tsx:155
-#: src/components/WelcomeModal.tsx:163
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/components/WelcomeModal.tsx:157
+#: src/components/WelcomeModal.tsx:165
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
msgstr ""
-#: src/screens/Signup/index.tsx:124
+#: src/screens/Signup/index.tsx:135
msgid "Create Account"
msgstr ""
@@ -2676,8 +2678,8 @@ msgstr ""
msgid "Create an account"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:311
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:312
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
msgid "Create an account without using this starter pack"
msgstr ""
@@ -2693,14 +2695,14 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
-#: src/components/moderation/ReportDialog/index.tsx:702
-#: src/components/moderation/ReportDialog/index.tsx:748
+#: src/components/moderation/ReportDialog/index.tsx:696
+#: src/components/moderation/ReportDialog/index.tsx:742
msgid "Create report for {0}"
msgstr ""
@@ -2766,13 +2768,13 @@ msgstr ""
msgid "Dark theme"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:301
+#: src/screens/Signup/StepInfo/index.tsx:299
msgid "Date of birth"
msgstr ""
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr ""
@@ -2796,14 +2798,14 @@ msgstr ""
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:202
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:762
+#: src/components/dms/MessageContextMenu.tsx:199
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:280
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:274
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:601
-#: src/screens/StarterPack/StarterPackScreen.tsx:690
-#: src/screens/StarterPack/StarterPackScreen.tsx:762
+#: src/screens/StarterPack/StarterPackScreen.tsx:606
+#: src/screens/StarterPack/StarterPackScreen.tsx:695
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Delete"
msgstr ""
@@ -2833,7 +2835,7 @@ msgstr ""
msgid "Delete chat declaration record"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:539
+#: src/screens/Settings/FindContactsSettings.tsx:545
msgid "Delete contacts"
msgstr ""
@@ -2848,20 +2850,20 @@ msgstr ""
msgid "Delete Conversation"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:160
+#: src/components/dms/MessageContextMenu.tsx:157
msgid "Delete for me"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:204
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:207
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:198
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:201
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:198
+#: src/components/dms/MessageContextMenu.tsx:195
msgid "Delete message"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:158
+#: src/components/dms/MessageContextMenu.tsx:155
msgid "Delete message for me"
msgstr ""
@@ -2869,26 +2871,26 @@ msgstr ""
msgid "Delete my account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745
-#: src/view/com/composer/Composer.tsx:969
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:595
-#: src/screens/StarterPack/StarterPackScreen.tsx:753
+#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:758
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:656
+#: src/screens/StarterPack/StarterPackScreen.tsx:661
msgid "Delete starter pack?"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:269
msgid "Delete this list?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:757
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:760
msgid "Delete this post?"
msgstr ""
@@ -2897,11 +2899,11 @@ msgid "Deleted"
msgstr ""
#: src/components/dms/MessagesListHeader.tsx:121
-#: src/screens/Messages/components/ChatListItem.tsx:131
+#: src/screens/Messages/components/ChatListItem.tsx:132
msgid "Deleted Account"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:283
+#: src/components/contacts/screens/PhoneInput.tsx:285
msgid "Deleted by Plivo after verification"
msgstr ""
@@ -2923,21 +2925,21 @@ msgstr ""
msgid "Descriptive alt text"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:650
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660
msgid "Detach quote"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:793
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796
msgid "Detach quote post?"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:140
+#: src/screens/Settings/AboutSettings.tsx:138
msgctxt "toast"
msgid "Developer mode disabled"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:134
+#: src/screens/Settings/AboutSettings.tsx:132
msgctxt "toast"
msgid "Developer mode enabled"
msgstr ""
@@ -2947,7 +2949,7 @@ msgstr ""
msgid "Developer options"
msgstr ""
-#: src/components/WhoCanReply.tsx:220
+#: src/components/WhoCanReply.tsx:221
msgid "Dialog: adjust who can interact with this post"
msgstr ""
@@ -2973,11 +2975,11 @@ msgstr ""
msgid "Disable haptic feedback"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:622
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:625
msgid "Disable quote posts of this post"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:459
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:462
msgid "Disable replies entirely"
msgstr ""
@@ -2996,8 +2998,11 @@ msgstr ""
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:807
-#: src/view/com/composer/Composer.tsx:1002
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr ""
@@ -3006,11 +3011,12 @@ msgstr ""
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:804
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:994
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr ""
@@ -3024,7 +3030,7 @@ msgstr ""
msgid "Discover new custom feeds"
msgstr ""
-#: src/screens/Search/Explore.tsx:436
+#: src/screens/Search/Explore.tsx:438
#: src/view/screens/Feeds.tsx:730
msgid "Discover New Feeds"
msgstr ""
@@ -3033,11 +3039,11 @@ msgstr ""
msgid "Dismiss"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:75
+#: src/components/contacts/FindContactsBannerNUX.tsx:76
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1815
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr ""
@@ -3049,11 +3055,16 @@ msgstr ""
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr ""
-#: src/components/FeedInterstitials.tsx:587
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3096,8 +3107,8 @@ msgstr ""
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:104
-#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:37
+#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:105
+#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:38
msgid "Don't show again"
msgstr ""
@@ -3107,8 +3118,8 @@ msgstr ""
#: src/components/contacts/components/InviteInfo.tsx:72
#: src/components/contacts/components/InviteInfo.tsx:78
-#: src/components/contacts/screens/ViewMatches.tsx:392
-#: src/components/contacts/screens/ViewMatches.tsx:409
+#: src/components/contacts/screens/ViewMatches.tsx:394
+#: src/components/contacts/screens/ViewMatches.tsx:411
#: src/components/dialogs/BirthDateSettings.tsx:196
#: src/components/dialogs/BirthDateSettings.tsx:203
#: src/components/dialogs/ServerInput.tsx:240
@@ -3121,8 +3132,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3158,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1123
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr ""
@@ -3164,6 +3175,12 @@ msgstr ""
msgid "Doxxing"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr ""
@@ -3214,9 +3231,9 @@ msgstr ""
#: src/screens/Settings/AccountSettings.tsx:145
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:252
-#: src/screens/StarterPack/StarterPackScreen.tsx:590
-#: src/screens/StarterPack/Wizard/index.tsx:339
-#: src/screens/StarterPack/Wizard/index.tsx:344
+#: src/screens/StarterPack/StarterPackScreen.tsx:595
+#: src/screens/StarterPack/Wizard/index.tsx:340
+#: src/screens/StarterPack/Wizard/index.tsx:345
msgid "Edit"
msgstr ""
@@ -3226,7 +3243,7 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:439
+#: src/view/com/util/UserAvatar.tsx:440
#: src/view/com/util/UserBanner.tsx:121
msgid "Edit avatar"
msgstr ""
@@ -3241,8 +3258,8 @@ msgstr ""
msgid "Edit image"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:724
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740
msgid "Edit interaction settings"
msgstr ""
@@ -3251,13 +3268,13 @@ msgstr ""
msgid "Edit interests"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:196
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:199
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:190
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:193
msgid "Edit list details"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:376
+#: src/view/com/profile/ProfileMenu.tsx:357
+#: src/view/com/profile/ProfileMenu.tsx:377
msgid "Edit live status"
msgstr ""
@@ -3265,7 +3282,7 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:359
#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr ""
@@ -3278,24 +3295,24 @@ msgstr ""
msgid "Edit People"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:114
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:260
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:115
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:263
msgid "Edit post interaction settings"
msgstr ""
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
+#: src/screens/StarterPack/StarterPackScreen.tsx:587
msgid "Edit starter pack"
msgstr ""
@@ -3303,11 +3320,11 @@ msgstr ""
msgid "Edit user list"
msgstr ""
-#: src/components/WhoCanReply.tsx:114
+#: src/components/WhoCanReply.tsx:115
msgid "Edit who can reply"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:605
msgid "Edit your starter pack"
msgstr ""
@@ -3320,7 +3337,7 @@ msgid "Either the creator of this list has blocked you or you have blocked the c
msgstr ""
#: src/screens/Settings/AccountSettings.tsx:66
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Signup/StepInfo/index.tsx:223
msgid "Email"
msgstr ""
@@ -3359,8 +3376,8 @@ msgstr ""
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124
msgid "Embed post"
msgstr ""
@@ -3409,7 +3426,7 @@ msgstr ""
msgid "Enable push notifications"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:623
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:626
msgid "Enable quote posts of this post"
msgstr ""
@@ -3426,8 +3443,8 @@ msgstr ""
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:155
-#: src/screens/Settings/ContentAndMediaSettings.tsx:169
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr ""
@@ -3445,7 +3462,7 @@ msgstr ""
msgid "Ensure you have selected a language for each subtitle file."
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:228
+#: src/components/contacts/screens/VerifyNumber.tsx:230
msgid "Enter 6-digit code that was sent to your phone number"
msgstr ""
@@ -3468,7 +3485,7 @@ msgstr ""
msgid "Enter fullscreen"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:223
+#: src/components/contacts/screens/VerifyNumber.tsx:225
msgid "Enter the 6-digit code sent to {prettyNumber}"
msgstr ""
@@ -3489,7 +3506,7 @@ msgid "Enter your birthdate"
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:245
+#: src/screens/Signup/StepInfo/index.tsx:243
msgid "Enter your email address"
msgstr ""
@@ -3497,7 +3514,7 @@ msgstr ""
msgid "Enter your password"
msgstr ""
-#: src/screens/Login/index.tsx:137
+#: src/screens/Login/index.tsx:138
msgid "Enter your username and password"
msgstr ""
@@ -3505,16 +3522,16 @@ msgstr ""
msgid "Enters full screen"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:236
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1900
+#: src/view/com/composer/Composer.tsx:2304
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:90
+#: src/screens/Settings/FindContactsSettings.tsx:92
msgid "Error getting the latest data."
msgstr ""
@@ -3534,7 +3551,7 @@ msgstr ""
msgid "Error occurred while saving file"
msgstr ""
-#: src/screens/Signup/StepCaptcha/index.tsx:125
+#: src/screens/Signup/StepCaptcha/index.tsx:126
msgid "Error receiving captcha response."
msgstr ""
@@ -3542,18 +3559,18 @@ msgstr ""
msgid "Error: {error}"
msgstr ""
-#: src/components/WhoCanReply.tsx:83
+#: src/components/WhoCanReply.tsx:84
msgid "Everybody can reply"
msgstr ""
-#: src/components/WhoCanReply.tsx:277
+#: src/components/WhoCanReply.tsx:278
msgid "Everybody can reply to this post."
msgstr ""
#: src/screens/Messages/Settings.tsx:88
#: src/screens/Messages/Settings.tsx:91
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:167
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:177
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178
msgid "Everyone"
msgstr ""
@@ -3578,11 +3595,7 @@ msgstr ""
msgid "Exits account deletion process"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr ""
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr ""
@@ -3598,7 +3611,7 @@ msgstr ""
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:995
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr ""
@@ -3636,15 +3649,15 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:788
+#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
-#: src/components/WelcomeModal.tsx:168
-#: src/components/WelcomeModal.tsx:177
+#: src/components/WelcomeModal.tsx:170
+#: src/components/WelcomeModal.tsx:179
msgid "Explore the app"
msgstr ""
@@ -3672,7 +3685,7 @@ msgstr ""
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr ""
-#: src/Navigation.tsx:377
+#: src/Navigation.tsx:378
#: src/screens/Settings/ExternalMediaPreferences.tsx:34
msgid "External Media Preferences"
msgstr ""
@@ -3687,11 +3700,11 @@ msgid "Failed to accept chat"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:66
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageContextMenu.tsx:98
msgid "Failed to add emoji reaction"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:270
+#: src/components/dialogs/StarterPackDialog.tsx:271
msgid "Failed to add to starter pack"
msgstr ""
@@ -3703,12 +3716,12 @@ msgstr ""
msgid "Failed to create app password. Please try again."
msgstr ""
-#: src/components/dms/MessageProfileButton.tsx:36
+#: src/components/dms/MessageProfileButton.tsx:37
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:262
-#: src/screens/StarterPack/Wizard/index.tsx:270
+#: src/screens/StarterPack/Wizard/index.tsx:263
+#: src/screens/StarterPack/Wizard/index.tsx:271
msgid "Failed to create starter pack"
msgstr ""
@@ -3718,31 +3731,31 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:81
+#: src/components/dms/MessageContextMenu.tsx:78
msgid "Failed to delete message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:214
msgid "Failed to delete post, please try again"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:724
+#: src/screens/StarterPack/StarterPackScreen.tsx:729
msgid "Failed to delete starter pack"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:121
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:145
+#: src/components/contacts/screens/ViewMatches.tsx:147
msgid "Failed to follow all your friends, please try again"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:233
+#: src/components/contacts/screens/ViewMatches.tsx:235
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:578
+#: src/components/contacts/screens/ViewMatches.tsx:581
msgid "Failed to launch SMS app"
msgstr ""
@@ -3751,10 +3764,10 @@ msgstr ""
msgid "Failed to load conversations"
msgstr ""
-#: src/screens/Search/Explore.tsx:472
-#: src/screens/Search/Explore.tsx:524
-#: src/screens/Search/Explore.tsx:562
-#: src/screens/Search/Explore.tsx:601
+#: src/screens/Search/Explore.tsx:474
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr ""
@@ -3784,14 +3797,14 @@ msgstr ""
msgid "Failed to load preference."
msgstr ""
-#: src/screens/Search/Explore.tsx:465
-#: src/screens/Search/Explore.tsx:517
-#: src/screens/Search/Explore.tsx:555
-#: src/screens/Search/Explore.tsx:594
+#: src/screens/Search/Explore.tsx:467
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/screens/Search/Explore.tsx:375
+#: src/screens/Search/Explore.tsx:377
msgid "Failed to load suggested follows"
msgstr ""
@@ -3804,20 +3817,20 @@ msgstr ""
msgid "Failed to pin post"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:481
+#: src/screens/Settings/FindContactsSettings.tsx:487
msgid "Failed to remove data due to a network error, please check your internet connection."
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:487
+#: src/screens/Settings/FindContactsSettings.tsx:493
msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:60
-#: src/components/dms/MessageContextMenu.tsx:95
+#: src/components/dms/MessageContextMenu.tsx:92
msgid "Failed to remove emoji reaction"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:289
+#: src/components/dialogs/StarterPackDialog.tsx:290
msgid "Failed to remove from starter pack"
msgstr ""
@@ -3829,6 +3842,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3858,11 +3875,11 @@ msgstr ""
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:238
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:104
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:106
msgid "Failed to unpin list"
msgstr ""
@@ -3910,11 +3927,12 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:293
+#: src/Navigation.tsx:294
msgid "Feed"
msgstr ""
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr ""
@@ -3927,7 +3945,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:355
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:356
msgid "Feed menu"
msgstr ""
@@ -3941,24 +3959,24 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:296
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:320
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:300
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:324
msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:584
+#: src/Navigation.tsx:585
#: src/screens/SavedFeeds.tsx:108
#: src/screens/Search/SearchResults.tsx:78
-#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/screens/StarterPack/StarterPackScreen.tsx:193
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr ""
@@ -3972,7 +3990,7 @@ msgctxt "toast"
msgid "Feeds updated!"
msgstr ""
-#: src/screens/Search/modules/ExploreRecommendations.tsx:65
+#: src/screens/Search/modules/ExploreRecommendations.tsx:66
msgid "Feeds we think you might like."
msgstr ""
@@ -4000,11 +4018,11 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:161
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "Filter who you receive notifications from"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:328
+#: src/screens/Onboarding/StepFinished/index.tsx:331
msgid "Finalizing"
msgstr ""
@@ -4016,18 +4034,18 @@ msgstr ""
msgid "Finance"
msgstr ""
-#: src/view/com/posts/CustomFeedEmptyState.tsx:71
+#: src/view/com/posts/CustomFeedEmptyState.tsx:72
#: src/view/com/posts/FollowingEmptyState.tsx:53
#: src/view/com/posts/FollowingEndOfFeed.tsx:54
msgid "Find accounts to follow"
msgstr ""
-#: src/Navigation.tsx:425
-#: src/Navigation.tsx:626
+#: src/Navigation.tsx:426
+#: src/Navigation.tsx:627
msgid "Find Contacts"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:76
+#: src/screens/Settings/FindContactsSettings.tsx:78
msgid "Find Friends"
msgstr ""
@@ -4036,15 +4054,15 @@ msgstr ""
msgid "Find friends from contacts"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:270
-#: src/components/contacts/screens/GetContacts.tsx:284
+#: src/components/contacts/screens/GetContacts.tsx:272
+#: src/components/contacts/screens/GetContacts.tsx:286
msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:431
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr ""
@@ -4057,8 +4075,8 @@ msgstr ""
msgid "Find your friends"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:38
-#: src/screens/Settings/FindContactsSettings.tsx:123
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:45
+#: src/screens/Settings/FindContactsSettings.tsx:125
msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more0>"
msgstr ""
@@ -4066,11 +4084,11 @@ msgstr ""
msgid "Find your people"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:278
+#: src/components/contacts/screens/GetContacts.tsx:280
msgid "Finding friends..."
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:218
+#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Finish"
msgstr ""
@@ -4097,24 +4115,24 @@ msgstr ""
#: src/components/ProfileCard.tsx:559
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:140
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:879
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:127
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:856
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr ""
-#: src/state/shell/progress-guide.tsx:231
+#: src/state/shell/progress-guide.tsx:232
msgid "Follow 10 accounts"
msgstr ""
@@ -4126,41 +4144,41 @@ msgstr ""
msgid "Follow 7 accounts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:312
-#: src/view/com/profile/ProfileMenu.tsx:323
+#: src/view/com/profile/ProfileMenu.tsx:313
+#: src/view/com/profile/ProfileMenu.tsx:324
msgid "Follow account"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:273
-#: src/components/contacts/screens/ViewMatches.tsx:288
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:265
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:156
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:163
-#: src/screens/Settings/FindContactsSettings.tsx:438
-#: src/screens/Settings/FindContactsSettings.tsx:448
-#: src/screens/StarterPack/StarterPackScreen.tsx:438
-#: src/screens/StarterPack/StarterPackScreen.tsx:446
+#: src/components/contacts/screens/ViewMatches.tsx:275
+#: src/components/contacts/screens/ViewMatches.tsx:290
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
+#: src/screens/Settings/FindContactsSettings.tsx:443
+#: src/screens/Settings/FindContactsSettings.tsx:453
+#: src/screens/StarterPack/StarterPackScreen.tsx:442
+#: src/screens/StarterPack/StarterPackScreen.tsx:450
msgid "Follow all"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:138
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:116
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:391
+#: src/screens/Settings/FindContactsSettings.tsx:396
msgid "Followed all matches"
msgstr ""
@@ -4180,7 +4198,7 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:248
msgid "Followers of @{0} that you know"
msgstr ""
@@ -4194,9 +4212,9 @@ msgstr ""
#: src/components/ProfileCard.tsx:546
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:143
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:877
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,7 +4232,7 @@ msgstr ""
msgid "Following {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:855
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr ""
@@ -4223,7 +4241,7 @@ msgstr ""
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:364
+#: src/Navigation.tsx:365
#: src/screens/Settings/FollowingFeedPreferences.tsx:56
msgid "Following Feed Preferences"
msgstr ""
@@ -4264,8 +4282,8 @@ msgstr ""
msgid "For the best experience, we recommend using the theme font."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:323
-#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:91
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4277,8 +4295,8 @@ msgstr ""
msgid "Forget the noise"
msgstr ""
-#: src/screens/Login/index.tsx:167
-#: src/screens/Login/index.tsx:182
+#: src/screens/Login/index.tsx:168
+#: src/screens/Login/index.tsx:183
msgid "Forgot Password"
msgstr ""
@@ -4294,7 +4312,7 @@ msgstr ""
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:157
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158
msgid "From"
msgstr ""
@@ -4307,11 +4325,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr ""
@@ -4394,15 +4412,15 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1184
-#: src/screens/VideoFeed/index.tsx:1188
-#: src/view/com/auth/LoggedOut.tsx:72
-#: src/view/com/profile/ProfileFollowers.tsx:180
-#: src/view/com/profile/ProfileFollowers.tsx:181
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
+#: src/view/com/auth/LoggedOut.tsx:73
+#: src/view/com/profile/ProfileFollowers.tsx:178
+#: src/view/com/profile/ProfileFollowers.tsx:179
#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr ""
@@ -4411,8 +4429,8 @@ msgstr ""
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:775
+#: src/screens/Profile/ProfileFeed/index.tsx:100
+#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
msgstr ""
@@ -4429,7 +4447,7 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr ""
-#: src/screens/Bookmarks/index.tsx:285
+#: src/screens/Bookmarks/index.tsx:305
#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr ""
@@ -4438,8 +4456,8 @@ msgstr ""
msgid "Go Home"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:357
-#: src/view/com/profile/ProfileMenu.tsx:378
+#: src/view/com/profile/ProfileMenu.tsx:358
+#: src/view/com/profile/ProfileMenu.tsx:379
msgid "Go live"
msgstr ""
@@ -4450,8 +4468,8 @@ msgstr ""
msgid "Go Live"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:354
-#: src/view/com/profile/ProfileMenu.tsx:374
+#: src/view/com/profile/ProfileMenu.tsx:355
+#: src/view/com/profile/ProfileMenu.tsx:375
msgid "Go live (disabled)"
msgstr ""
@@ -4463,14 +4481,14 @@ msgstr ""
msgid "Go to {firstAuthorName}'s profile"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:91
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:71
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:80
+#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:92
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:72
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:81
#: src/screens/Moderation/index.tsx:219
msgid "Go to account settings"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:363
+#: src/screens/Messages/components/ChatListItem.tsx:364
msgid "Go to conversation with {0}"
msgstr ""
@@ -4498,8 +4516,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr ""
@@ -4515,8 +4533,8 @@ msgstr ""
msgid "Hacking or system attacks"
msgstr ""
-#: src/state/shell/progress-guide.tsx:220
-#: src/state/shell/progress-guide.tsx:230
+#: src/state/shell/progress-guide.tsx:221
+#: src/state/shell/progress-guide.tsx:231
msgid "Half way there!"
msgstr ""
@@ -4539,7 +4557,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr ""
#: src/components/FeedCard.tsx:157
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Happening now"
msgstr ""
@@ -4559,7 +4577,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:549
+#: src/Navigation.tsx:550
msgid "Hashtag"
msgstr ""
@@ -4576,15 +4594,15 @@ msgstr ""
msgid "Have a code? <0>Click here.0>"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:332
+#: src/screens/Signup/StepInfo/index.tsx:330
msgid "Have we got your location wrong? <0>Tap here to confirm your location with GPS.0>"
msgstr ""
-#: src/screens/Signup/index.tsx:220
+#: src/screens/Signup/index.tsx:231
msgid "Having trouble?"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:287
+#: src/components/contacts/screens/PhoneInput.tsx:289
msgid "Held by Bluesky for 7 days to prevent abuse, then deleted"
msgstr ""
@@ -4592,7 +4610,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr ""
@@ -4609,11 +4627,11 @@ msgstr ""
msgid "Hey there 👋"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:170
+#: src/ageAssurance/components/NoAccessScreen.tsx:167
msgid "Hey there!"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:210
+#: src/ageAssurance/components/NoAccessScreen.tsx:207
msgid "Hi there!"
msgstr ""
@@ -4622,7 +4640,7 @@ msgstr ""
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:653
+#: src/screens/VideoFeed/index.tsx:647
msgid "Hidden by your moderation settings."
msgstr ""
@@ -4630,17 +4648,17 @@ msgstr ""
msgid "Hidden list"
msgstr ""
-#: src/components/interstitials/Trending.tsx:130
+#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:773
+#: src/components/moderation/PostHider.tsx:139
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
#: src/lib/moderation/useLabelBehaviorDescription.ts:28
#: src/lib/moderation/useLabelBehaviorDescription.ts:33
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:129
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:130
msgid "Hide"
msgstr ""
@@ -4658,22 +4676,22 @@ msgstr ""
msgid "Hide customization options"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:527
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:530
msgid "Hide lists"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:613
msgid "Hide post for me"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:631
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
msgid "Hide reply for everyone"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:603
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:606
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:612
msgid "Hide reply for me"
msgstr ""
@@ -4686,21 +4704,21 @@ msgstr ""
msgid "Hide this event"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:771
msgid "Hide this post?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:771
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:806
msgid "Hide this reply?"
msgstr ""
-#: src/components/interstitials/Trending.tsx:112
+#: src/components/interstitials/Trending.tsx:115
msgid "Hide trending topics"
msgstr ""
-#: src/components/interstitials/Trending.tsx:128
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127
+#: src/components/interstitials/Trending.tsx:131
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128
msgid "Hide trending topics?"
msgstr ""
@@ -4712,13 +4730,13 @@ msgstr ""
msgid "Hide user list"
msgstr ""
-#: src/screens/Moderation/VerificationSettings.tsx:90
-#: src/screens/Moderation/VerificationSettings.tsx:99
+#: src/screens/Moderation/VerificationSettings.tsx:87
+#: src/screens/Moderation/VerificationSettings.tsx:96
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr ""
@@ -4758,11 +4776,11 @@ msgstr ""
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/Navigation.tsx:783
-#: src/Navigation.tsx:803
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/Navigation.tsx:784
+#: src/Navigation.tsx:804
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr ""
@@ -4775,7 +4793,7 @@ msgstr ""
msgid "Hosting provider"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:188
msgid "Hot"
msgstr ""
@@ -4788,7 +4806,7 @@ msgstr ""
msgid "How should we open this link?"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:276
+#: src/components/contacts/screens/PhoneInput.tsx:278
msgid "How we use your number:"
msgstr ""
@@ -4796,7 +4814,7 @@ msgstr ""
msgid "Human trafficking"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:264
+#: src/components/contacts/screens/GetContacts.tsx:266
msgid "I consent to Bluesky using my contacts for mutual friend discovery and to retain hashed data for matching until I opt out."
msgstr ""
@@ -4815,19 +4833,19 @@ msgstr ""
msgid "I understand"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:574
+#: src/components/contacts/screens/ViewMatches.tsx:577
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:351
+#: src/screens/Signup/StepInfo/index.tsx:349
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:122
+#: src/ageAssurance/components/NoAccessScreen.tsx:119
msgid "If you believe your birthdate is incorrect, please <0>contact our support team0>."
msgstr ""
@@ -4839,7 +4857,7 @@ msgstr ""
msgid "If you choose to hide all events, you can always re-enable them from <0>Settings → Content & Media0>."
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:277
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:271
msgid "If you delete this list, you won't be able to recover it."
msgstr ""
@@ -4851,7 +4869,7 @@ msgstr ""
msgid "If you need to update your email, <0>click here0>."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:759
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:762
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
@@ -4872,7 +4890,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr ""
@@ -4880,12 +4898,12 @@ msgstr ""
msgid "Image"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:64
+#: src/screens/Settings/AboutSettings.tsx:62
msgid "Image cache cleared"
msgstr ""
#. Android-only toast message which includes amount of space freed using localized number formatting
-#: src/screens/Settings/AboutSettings.tsx:50
+#: src/screens/Settings/AboutSettings.tsx:48
msgid "Image cache cleared, freed {0}"
msgstr ""
@@ -4902,10 +4920,10 @@ msgstr ""
msgid "Impersonation"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:68
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:73
-#: src/screens/Settings/FindContactsSettings.tsx:143
-#: src/screens/Settings/FindContactsSettings.tsx:148
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:75
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:80
+#: src/screens/Settings/FindContactsSettings.tsx:145
+#: src/screens/Settings/FindContactsSettings.tsx:150
msgid "Import contacts"
msgstr ""
@@ -4914,16 +4932,16 @@ msgstr ""
msgid "Import Contacts"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:31
-#: src/components/contacts/FindContactsBannerNUX.tsx:69
+#: src/components/contacts/FindContactsBannerNUX.tsx:32
+#: src/components/contacts/FindContactsBannerNUX.tsx:70
msgid "Import contacts to find your friends"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:507
+#: src/screens/Settings/FindContactsSettings.tsx:513
msgid "Imported on {0}"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:213
+#: src/ageAssurance/components/NoAccessScreen.tsx:210
msgid "In order to provide an age-appropriate experience, we need to know your birthdate. This is a one-time thing, and your data will be kept private."
msgstr ""
@@ -4931,7 +4949,7 @@ msgstr ""
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:146
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:147
msgid "In-app notifications"
msgstr ""
@@ -4984,7 +5002,7 @@ msgstr ""
msgid "Input the code which has been emailed to you"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:135
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:137
msgid "Interaction limited"
msgstr ""
@@ -5013,13 +5031,13 @@ msgstr ""
msgid "Invalid handle. Please try a different one."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:391
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395
msgctxt "toast"
msgid "Invalid interaction settings."
msgstr ""
#: src/components/contacts/phone-number.ts:33
-#: src/components/contacts/screens/PhoneInput.tsx:139
+#: src/components/contacts/screens/PhoneInput.tsx:141
msgid "Invalid phone number"
msgstr ""
@@ -5031,19 +5049,19 @@ msgstr ""
msgid "Invalid Verification Code"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:583
+#: src/components/contacts/screens/ViewMatches.tsx:586
msgid "Invite"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:563
+#: src/components/contacts/screens/ViewMatches.tsx:566
msgid "Invite {name} to join Bluesky"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:195
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Invite code"
msgstr ""
-#: src/screens/Signup/state.ts:342
+#: src/screens/Signup/state.ts:346
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr ""
@@ -5052,11 +5070,11 @@ msgstr ""
msgid "Invite Friends"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:298
+#: src/components/contacts/screens/ViewMatches.tsx:300
msgid "Invite friends <0/>"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:81
+#: src/components/StarterPack/ShareDialog.tsx:82
msgid "Invite people to this starter pack!"
msgstr ""
@@ -5068,8 +5086,8 @@ msgstr ""
msgid "Invites, but personal"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:365
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:92
+#: src/ageAssurance/components/NoAccessScreen.tsx:363
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:94
msgid "Is your location not accurate? <0>Tap here to confirm your location.0>"
msgstr ""
@@ -5077,19 +5095,19 @@ msgstr ""
msgid "It looks like some of your contacts have not tried to find you here yet. You can personally invite them by customizing a draft message we will provide."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:384
+#: src/screens/Signup/StepInfo/index.tsx:382
msgid "It's correct"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:491
+#: src/screens/StarterPack/Wizard/index.tsx:492
msgid "It's just <0>{0} 0>right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:486
+#: src/screens/StarterPack/Wizard/index.tsx:487
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1834
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr ""
@@ -5098,10 +5116,10 @@ msgstr ""
msgid "Jobs"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:209
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
-#: src/screens/StarterPack/StarterPackScreen.tsx:464
-#: src/screens/StarterPack/StarterPackScreen.tsx:475
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:216
+#: src/screens/StarterPack/StarterPackScreen.tsx:468
+#: src/screens/StarterPack/StarterPackScreen.tsx:479
msgid "Join Bluesky"
msgstr ""
@@ -5122,20 +5140,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr ""
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr ""
@@ -5151,7 +5169,7 @@ msgstr ""
msgid "Labels on your content"
msgstr ""
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:221
msgid "Language Settings"
msgstr ""
@@ -5165,13 +5183,13 @@ msgstr ""
msgid "Larger"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:348
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:193
+#: src/ageAssurance/components/NoAccessScreen.tsx:346
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:195
msgid "Last initiated {timeAgo} ago"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:346
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:191
+#: src/ageAssurance/components/NoAccessScreen.tsx:344
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:193
msgid "Last initiated just now"
msgstr ""
@@ -5181,9 +5199,9 @@ msgstr ""
msgid "Latest"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:170
-#: src/components/verification/VerifierDialog.tsx:138
-#: src/screens/Moderation/VerificationSettings.tsx:48
+#: src/components/verification/VerificationsDialog.tsx:167
+#: src/components/verification/VerifierDialog.tsx:135
+#: src/screens/Moderation/VerificationSettings.tsx:49
#: src/screens/Profile/Header/EditProfileDialog.tsx:349
#: src/screens/Settings/components/ChangeHandleDialog.tsx:213
#: src/screens/Settings/components/ChangeHandleDialog.tsx:277
@@ -5195,7 +5213,7 @@ msgstr ""
msgid "Learn More"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:65
+#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66
msgid "Learn more about age assurance"
msgstr ""
@@ -5207,9 +5225,9 @@ msgstr ""
msgid "Learn more about how inviting friends works"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:300
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:45
-#: src/screens/Settings/FindContactsSettings.tsx:130
+#: src/components/contacts/screens/PhoneInput.tsx:302
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:52
+#: src/screens/Settings/FindContactsSettings.tsx:132
msgctxt "english-only-resource"
msgid "Learn more about importing contacts"
msgstr ""
@@ -5218,8 +5236,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr ""
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr ""
@@ -5231,13 +5249,13 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:151
-#: src/components/verification/VerifierDialog.tsx:119
+#: src/components/verification/VerificationsDialog.tsx:152
+#: src/components/verification/VerifierDialog.tsx:120
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -5247,16 +5265,16 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:88
+#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89
msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr ""
@@ -5286,16 +5304,16 @@ msgstr ""
msgid "left to go."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr ""
-#: src/screens/Login/index.tsx:168
-#: src/screens/Login/index.tsx:183
+#: src/screens/Login/index.tsx:169
+#: src/screens/Login/index.tsx:184
msgid "Let's get your password reset!"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:330
+#: src/screens/Onboarding/StepFinished/index.tsx:333
msgid "Let's go!"
msgstr ""
@@ -5310,12 +5328,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:517
msgid "Like"
msgstr ""
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:286
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5323,25 +5341,25 @@ msgstr ""
msgid "Like 10 posts"
msgstr ""
-#: src/state/shell/progress-guide.tsx:216
-#: src/state/shell/progress-guide.tsx:221
+#: src/state/shell/progress-guide.tsx:217
+#: src/state/shell/progress-guide.tsx:222
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/Navigation.tsx:462
+#: src/Navigation.tsx:463
msgid "Like notifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:502
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:504
msgid "Like this feed"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:146
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:147
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:298
-#: src/Navigation.tsx:303
+#: src/Navigation.tsx:299
+#: src/Navigation.tsx:304
msgid "Liked by"
msgstr ""
@@ -5357,39 +5375,39 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:490
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:166
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:180
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:492
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:167
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:126
+#: src/lib/hooks/useNotificationHandler.ts:129
#: src/screens/Settings/NotificationSettings/index.tsx:126
#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:168
+#: src/lib/hooks/useNotificationHandler.ts:171
#: src/screens/Settings/NotificationSettings/index.tsx:207
#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:486
+#: src/Navigation.tsx:487
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:482
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:47
-#: src/screens/PostThread/components/HeaderDropdown.tsx:52
+#: src/screens/PostThread/components/HeaderDropdown.tsx:48
+#: src/screens/PostThread/components/HeaderDropdown.tsx:53
msgid "Linear"
msgstr ""
-#: src/Navigation.tsx:253
+#: src/Navigation.tsx:254
msgid "List"
msgstr ""
@@ -5397,7 +5415,7 @@ msgstr ""
msgid "List avatar"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:50
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:47
msgctxt "toast"
msgid "List blocked"
msgstr ""
@@ -5419,7 +5437,7 @@ msgstr ""
msgid "List creator"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:90
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:92
msgctxt "toast"
msgid "List deleted"
msgstr ""
@@ -5444,7 +5462,7 @@ msgstr ""
msgid "List must have a name."
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:31
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:32
msgctxt "toast"
msgid "List muted"
msgstr ""
@@ -5457,24 +5475,24 @@ msgstr ""
msgid "List name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:116
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:131
+#: src/screens/ProfileList/components/Header.tsx:114
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:129
msgctxt "toast"
msgid "List unblocked"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:98
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:113
+#: src/screens/ProfileList/components/Header.tsx:100
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:115
msgctxt "toast"
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:175
#: src/view/screens/Lists.tsx:67
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr ""
@@ -5491,20 +5509,30 @@ msgstr ""
msgid "LIVE"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:52
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:52
+#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:53
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:53
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:235
+#: src/components/live/LiveStatusDialog.tsx:228
msgid "Live feature is in beta"
msgstr ""
@@ -5515,31 +5543,31 @@ msgstr ""
msgid "Live link"
msgstr ""
-#: src/screens/Search/Explore.tsx:84
+#: src/screens/Search/Explore.tsx:83
msgid "Load more"
msgstr ""
-#: src/screens/Search/Explore.tsx:506
-#: src/screens/Search/Explore.tsx:583
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr ""
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
-#: src/view/com/feeds/FeedPage.tsx:169
+#: src/view/com/feeds/FeedPage.tsx:170
msgid "Load new posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:569
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:572
msgid "Loading lists..."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:273
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:276
msgid "Loading post interaction settings..."
msgstr ""
@@ -5547,7 +5575,7 @@ msgstr ""
msgid "Loading..."
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:324
msgid "Log"
msgstr ""
@@ -5564,7 +5592,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr ""
@@ -5638,22 +5666,31 @@ msgstr ""
msgid "Media"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
-#: src/Navigation.tsx:446
+#: src/Navigation.tsx:447
msgid "Mention notifications"
msgstr ""
-#: src/components/WhoCanReply.tsx:318
+#: src/components/WhoCanReply.tsx:319
msgid "mentioned users"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:147
+#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr ""
@@ -5661,20 +5698,20 @@ msgstr ""
msgid "Menu"
msgstr ""
-#: src/components/dms/MessageProfileButton.tsx:97
+#: src/components/dms/MessageProfileButton.tsx:98
msgid "Message {0}"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/MessageContextMenu.tsx:76
msgctxt "toast"
msgid "Message deleted"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:199
+#: src/screens/Messages/components/ChatListItem.tsx:200
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:127
+#: src/components/dms/MessageContextMenu.tsx:124
msgid "Message from @{0}: {1}"
msgstr ""
@@ -5691,11 +5728,11 @@ msgstr ""
msgid "Message is too long"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:125
+#: src/components/dms/MessageContextMenu.tsx:122
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:798
+#: src/Navigation.tsx:799
msgid "Messages"
msgstr ""
@@ -5708,7 +5745,7 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:510
+#: src/Navigation.tsx:511
msgid "Miscellaneous notifications"
msgstr ""
@@ -5716,7 +5753,11 @@ msgstr ""
msgid "Misleading"
msgstr ""
-#: src/Navigation.tsx:179
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
+#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
#: src/screens/Settings/Settings.tsx:195
@@ -5755,7 +5796,7 @@ msgstr ""
msgid "Moderation lists"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:185
#: src/view/screens/ModerationModlists.tsx:67
msgid "Moderation Lists"
msgstr ""
@@ -5764,7 +5805,7 @@ msgstr ""
msgid "moderation settings"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:314
msgid "Moderation states"
msgstr ""
@@ -5777,8 +5818,8 @@ msgstr ""
msgid "Moderator has chosen to set a general warning on the content."
msgstr ""
-#: src/view/shell/desktop/Feeds.tsx:109
-#: src/view/shell/desktop/Feeds.tsx:156
+#: src/view/shell/desktop/Feeds.tsx:106
+#: src/view/shell/desktop/Feeds.tsx:153
msgid "More feeds"
msgstr ""
@@ -5787,9 +5828,10 @@ msgstr ""
msgid "More languages..."
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:149
-#: src/view/com/profile/ProfileMenu.tsx:241
-#: src/view/com/profile/ProfileMenu.tsx:248
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
+#: src/view/com/profile/ProfileMenu.tsx:242
+#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
msgstr ""
@@ -5820,15 +5862,15 @@ msgstr ""
msgid "Mute {tag}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
-#: src/view/com/profile/ProfileMenu.tsx:435
-#: src/view/com/profile/ProfileMenu.tsx:442
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:689
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:695
+#: src/view/com/profile/ProfileMenu.tsx:436
+#: src/view/com/profile/ProfileMenu.tsx:443
msgid "Mute account"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:89
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:92
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:82
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:85
msgid "Mute accounts"
msgstr ""
@@ -5841,11 +5883,11 @@ msgstr ""
msgid "Mute in:"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:115
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:108
msgid "Mute list"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:110
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:103
msgid "Mute these accounts?"
msgstr ""
@@ -5873,13 +5915,13 @@ msgstr ""
msgid "Mute this word until you unmute it"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:574
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:577
msgid "Mute thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:584
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:586
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:589
msgid "Mute words & tags"
msgstr ""
@@ -5887,7 +5929,7 @@ msgstr ""
msgid "Muted accounts"
msgstr ""
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:190
#: src/view/screens/ModerationMutedAccounts.tsx:116
msgid "Muted Accounts"
msgstr ""
@@ -5904,7 +5946,7 @@ msgstr ""
msgid "Muted words & tags"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:112
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:105
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr ""
@@ -5939,12 +5981,12 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr ""
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:333
-#: src/components/moderation/ReportDialog/index.tsx:350
+#: src/components/moderation/ReportDialog/index.tsx:327
+#: src/components/moderation/ReportDialog/index.tsx:344
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -5952,8 +5994,8 @@ msgstr ""
msgid "Nevermind, create a handle for me"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196
-#: src/view/com/profile/ProfileMenu.tsx:390
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:193
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "New"
msgstr ""
@@ -5971,7 +6013,7 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/components/dms/dialogs/NewChatDialog.tsx:68
#: src/screens/Messages/ChatList.tsx:403
#: src/screens/Messages/ChatList.tsx:410
msgid "New chat"
@@ -5983,15 +6025,15 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:478
+#: src/Navigation.tsx:479
msgid "New follower notifications"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:161
+#: src/lib/hooks/useNotificationHandler.ts:164
#: src/screens/Settings/NotificationSettings/index.tsx:137
#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
msgid "New followers"
@@ -6018,16 +6060,16 @@ msgstr ""
msgid "New password"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr ""
-#: src/view/com/feeds/FeedPage.tsx:180
+#: src/view/com/feeds/FeedPage.tsx:181
msgctxt "action"
msgid "New post"
msgstr ""
@@ -6053,39 +6095,39 @@ msgstr ""
msgid "New user info dialog"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:93
-#: src/screens/PostThread/components/HeaderDropdown.tsx:98
+#: src/screens/PostThread/components/HeaderDropdown.tsx:94
+#: src/screens/PostThread/components/HeaderDropdown.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:72
#: src/screens/Settings/ThreadPreferences.tsx:75
msgid "Newest replies first"
msgstr ""
#: src/lib/interests.ts:67
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:238
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "News"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:392
-#: src/components/contacts/screens/ViewMatches.tsx:407
+#: src/components/contacts/screens/ViewMatches.tsx:394
+#: src/components/contacts/screens/ViewMatches.tsx:409
#: src/screens/Login/ForgotPasswordForm.tsx:137
#: src/screens/Login/ForgotPasswordForm.tsx:143
#: src/screens/Login/LoginForm.tsx:346
#: src/screens/Login/LoginForm.tsx:353
#: src/screens/Login/SetNewPasswordForm.tsx:182
#: src/screens/Login/SetNewPasswordForm.tsx:188
-#: src/screens/Onboarding/StepFinished/index.tsx:323
-#: src/screens/Onboarding/StepFinished/index.tsx:332
+#: src/screens/Onboarding/StepFinished/index.tsx:326
+#: src/screens/Onboarding/StepFinished/index.tsx:335
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165
#: src/screens/Signup/BackNextButtons.tsx:67
-#: src/screens/StarterPack/Wizard/index.tsx:210
-#: src/screens/StarterPack/Wizard/index.tsx:214
-#: src/screens/StarterPack/Wizard/index.tsx:392
-#: src/screens/StarterPack/Wizard/index.tsx:399
+#: src/screens/StarterPack/Wizard/index.tsx:211
+#: src/screens/StarterPack/Wizard/index.tsx:215
+#: src/screens/StarterPack/Wizard/index.tsx:393
+#: src/screens/StarterPack/Wizard/index.tsx:400
msgid "Next"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr ""
@@ -6097,11 +6139,11 @@ msgstr ""
msgid "No app passwords yet"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:677
+#: src/components/contacts/screens/ViewMatches.tsx:680
msgid "No contacts found"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:655
+#: src/components/contacts/screens/ViewMatches.tsx:658
msgid "No contacts with the name “{query}” found"
msgstr ""
@@ -6114,6 +6156,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr ""
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6126,7 +6172,7 @@ msgstr ""
msgid "No feeds found. Try searching for something else."
msgstr ""
-#: src/view/com/profile/ProfileFollowers.tsx:171
+#: src/view/com/profile/ProfileFollowers.tsx:169
msgid "No followers yet"
msgstr ""
@@ -6136,7 +6182,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr ""
@@ -6150,11 +6196,11 @@ msgstr ""
msgid "No longer following {0}"
msgstr ""
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:141
+#: src/screens/Messages/components/ChatListItem.tsx:142
msgid "No messages yet"
msgstr ""
@@ -6162,7 +6208,7 @@ msgstr ""
msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you."
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:559
+#: src/components/contacts/screens/ViewMatches.tsx:562
msgid "No name"
msgstr ""
@@ -6178,7 +6224,7 @@ msgstr ""
msgid "No one"
msgstr ""
-#: src/components/WhoCanReply.tsx:301
+#: src/components/WhoCanReply.tsx:302
msgid "No one but the author can quote this post."
msgstr ""
@@ -6195,7 +6241,7 @@ msgstr ""
msgid "No quotes yet"
msgstr ""
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,11 +6255,11 @@ msgid "No result"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:229
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr ""
-#: src/screens/Search/Explore.tsx:800
+#: src/screens/Search/Explore.tsx:789
msgid "No results for \"{0}\"."
msgstr ""
@@ -6230,7 +6276,7 @@ msgstr ""
msgid "No results found for \"<0>{query}0>\"."
msgstr ""
-#: src/screens/Search/Explore.tsx:804
+#: src/screens/Search/Explore.tsx:793
msgid "No results."
msgstr ""
@@ -6238,7 +6284,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr ""
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,11 +6293,11 @@ msgstr ""
msgid "No thanks"
msgstr ""
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:465
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:468
msgid "Nobody"
msgstr ""
@@ -6285,7 +6331,7 @@ msgid "None"
msgstr ""
#: src/screens/FindContactsFlowScreen.tsx:70
-#: src/screens/Settings/FindContactsSettings.tsx:101
+#: src/screens/Settings/FindContactsSettings.tsx:103
msgid "Not available on this platform."
msgstr ""
@@ -6293,12 +6339,12 @@ msgstr ""
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:169
+#: src/Navigation.tsx:170
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:557
+#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr ""
@@ -6306,7 +6352,7 @@ msgstr ""
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134
msgid "Note: This post is only visible to logged-in users."
msgstr ""
@@ -6315,13 +6361,13 @@ msgid "Nothing here"
msgstr ""
#: src/screens/Bookmarks/components/EmptyState.tsx:35
-#: src/screens/Bookmarks/index.tsx:281
+#: src/screens/Bookmarks/index.tsx:301
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:432
-#: src/Navigation.tsx:579
-#: src/view/screens/Notifications.tsx:136
+#: src/Navigation.tsx:433
+#: src/Navigation.tsx:580
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr ""
@@ -6333,8 +6379,8 @@ msgstr ""
msgid "Notification Sounds"
msgstr ""
-#: src/Navigation.tsx:574
-#: src/Navigation.tsx:793
+#: src/Navigation.tsx:575
+#: src/Navigation.tsx:794
#: src/screens/Notifications/ActivityList.tsx:30
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90
#: src/screens/Settings/NotificationSettings/index.tsx:92
@@ -6349,10 +6395,10 @@ msgstr ""
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr ""
@@ -6368,8 +6414,8 @@ msgstr ""
msgid "Now"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr ""
@@ -6389,8 +6435,8 @@ msgid "Oh no!"
msgstr ""
#. Confirm button text.
-#: src/components/contacts/screens/GetContacts.tsx:314
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:222
+#: src/components/contacts/screens/GetContacts.tsx:316
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6402,8 +6448,8 @@ msgstr ""
msgid "Okay"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:83
-#: src/screens/PostThread/components/HeaderDropdown.tsx:88
+#: src/screens/PostThread/components/HeaderDropdown.tsx:84
+#: src/screens/PostThread/components/HeaderDropdown.tsx:89
#: src/screens/Settings/ThreadPreferences.tsx:64
#: src/screens/Settings/ThreadPreferences.tsx:67
msgid "Oldest replies first"
@@ -6417,11 +6463,11 @@ msgstr ""
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:398
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:395
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr ""
@@ -6433,7 +6479,7 @@ msgstr ""
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:405
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr ""
@@ -6441,7 +6487,7 @@ msgstr ""
msgid "Only .jpg and .png files are supported"
msgstr ""
-#: src/components/WhoCanReply.tsx:281
+#: src/components/WhoCanReply.tsx:282
msgid "Only {0} can reply."
msgstr ""
@@ -6464,8 +6510,8 @@ msgid "Oops, something went wrong!"
msgstr ""
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,30 +6522,34 @@ msgstr ""
msgid "Open avatar creator"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:198
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:373
-#: src/screens/Messages/components/ChatListItem.tsx:377
+#: src/screens/Messages/components/ChatListItem.tsx:374
+#: src/screens/Messages/components/ChatListItem.tsx:378
msgid "Open conversation options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1481
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:292
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:297
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
msgid "Open feed options menu"
msgstr ""
@@ -6531,16 +6581,16 @@ msgstr ""
msgid "Open post options menu"
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:205
-#: src/components/live/LiveStatusDialog.tsx:219
+#: src/components/live/LiveStatusDialog.tsx:202
+#: src/components/live/LiveStatusDialog.tsx:212
msgid "Open profile"
msgstr ""
-#: src/components/PostControls/ShareMenu/index.tsx:100
+#: src/components/PostControls/ShareMenu/index.tsx:98
msgid "Open share menu"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:568
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
msgid "Open starter pack menu"
msgstr ""
@@ -6553,15 +6603,15 @@ msgstr ""
msgid "Open system log"
msgstr ""
-#: src/view/shell/desktop/Feeds.tsx:188
+#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:153
msgid "Opens a dialog to choose who can interact with this post"
msgstr ""
@@ -6589,7 +6639,7 @@ msgstr ""
msgid "Opens composer"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:199
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
@@ -6598,21 +6648,21 @@ msgstr ""
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1482
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/view/com/composer/photos/SelectGifBtn.tsx:36
+#: src/view/com/composer/photos/SelectGifBtn.tsx:37
msgid "Opens GIF select dialog"
msgstr ""
@@ -6620,7 +6670,7 @@ msgstr ""
msgid "Opens helpdesk in browser"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:221
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6628,7 +6678,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:581
+#: src/view/com/util/UserAvatar.tsx:579
msgid "Opens live status dialog"
msgstr ""
@@ -6640,12 +6690,16 @@ msgstr ""
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:144
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
msgstr ""
@@ -6679,7 +6733,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr ""
@@ -6741,7 +6795,7 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:229
#: src/screens/Settings/AccountSettings.tsx:121
#: src/screens/Settings/AccountSettings.tsx:125
-#: src/screens/Signup/StepInfo/index.tsx:260
+#: src/screens/Signup/StepInfo/index.tsx:258
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -6755,7 +6809,7 @@ msgstr ""
msgid "Password must be at least 8 characters long."
msgstr ""
-#: src/screens/Login/index.tsx:195
+#: src/screens/Login/index.tsx:196
msgid "Password updated"
msgstr ""
@@ -6775,28 +6829,28 @@ msgstr ""
#: src/screens/ProfileList/index.tsx:166
#: src/screens/Search/SearchResults.tsx:72
-#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/screens/StarterPack/StarterPackScreen.tsx:192
msgid "People"
msgstr ""
-#: src/Navigation.tsx:240
+#: src/Navigation.tsx:241
msgid "People followed by @{0}"
msgstr ""
-#: src/Navigation.tsx:233
+#: src/Navigation.tsx:234
msgid "People following @{0}"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:181
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:191
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:192
msgid "People I follow"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:504
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:507
msgid "People you follow"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:518
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:521
msgid "People you mention"
msgstr ""
@@ -6816,12 +6870,12 @@ msgstr ""
msgid "Pets"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:189
-#: src/components/contacts/screens/PhoneInput.tsx:201
+#: src/components/contacts/screens/PhoneInput.tsx:191
+#: src/components/contacts/screens/PhoneInput.tsx:203
msgid "Phone number"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:301
+#: src/components/contacts/screens/VerifyNumber.tsx:303
msgid "Phone number verified"
msgstr ""
@@ -6829,12 +6883,12 @@ msgstr ""
msgid "Photography"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:527
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:529
#: src/screens/SavedFeeds.tsx:351
msgid "Pin feed"
msgstr ""
@@ -6843,17 +6897,17 @@ msgstr ""
msgid "Pin Feed"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:156
-#: src/screens/ProfileList/components/Header.tsx:163
+#: src/screens/ProfileList/components/Header.tsx:150
+#: src/screens/ProfileList/components/Header.tsx:157
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:338
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:339
msgid "Pin to Home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:478
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
msgid "Pin to your profile"
msgstr ""
@@ -6861,8 +6915,8 @@ msgstr ""
msgid "Pinned"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:161
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:175
msgid "Pinned {0} to Home"
msgstr ""
@@ -6870,7 +6924,7 @@ msgstr ""
msgid "Pinned Feeds"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:74
+#: src/screens/ProfileList/components/Header.tsx:76
msgid "Pinned to your feeds"
msgstr ""
@@ -6909,7 +6963,7 @@ msgstr ""
msgid "Plays the video"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -6917,12 +6971,12 @@ msgstr ""
msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive."
msgstr ""
-#: src/screens/Signup/state.ts:289
+#: src/screens/Signup/state.ts:293
msgid "Please choose your handle."
msgstr ""
-#: src/screens/Signup/state.ts:281
-#: src/screens/Signup/StepInfo/index.tsx:151
+#: src/screens/Signup/state.ts:285
+#: src/screens/Signup/StepInfo/index.tsx:153
msgid "Please choose your password."
msgstr ""
@@ -6930,12 +6984,12 @@ msgstr ""
msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
msgstr ""
-#: src/screens/Signup/state.ts:304
+#: src/screens/Signup/state.ts:308
msgid "Please complete the verification captcha."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101
-#: src/screens/Signup/StepInfo/index.tsx:140
+#: src/screens/Signup/StepInfo/index.tsx:142
msgid "Please double-check that you have entered your email address correctly."
msgstr ""
@@ -6982,12 +7036,12 @@ msgstr ""
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
-#: src/screens/Signup/state.ts:265
-#: src/screens/Signup/StepInfo/index.tsx:122
+#: src/screens/Signup/state.ts:269
+#: src/screens/Signup/StepInfo/index.tsx:124
msgid "Please enter your email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:115
+#: src/screens/Signup/StepInfo/index.tsx:117
msgid "Please enter your invite code."
msgstr ""
@@ -7024,7 +7078,7 @@ msgstr ""
msgid "Please go back, or activate this element to return to the start of the active content."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:97
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:99
msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status."
msgstr ""
@@ -7040,12 +7094,12 @@ msgstr ""
msgid "Please select a reason for this report"
msgstr ""
-#: src/lib/hooks/useAccountSwitcher.ts:45
-#: src/lib/hooks/useAccountSwitcher.ts:55
+#: src/lib/hooks/useAccountSwitcher.ts:46
+#: src/lib/hooks/useAccountSwitcher.ts:56
msgid "Please sign in as @{0}"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:102
+#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Please use the native app to import your contacts."
msgstr ""
@@ -7062,35 +7116,35 @@ msgid "Please write your message below:"
msgstr ""
#: src/lib/interests.ts:70
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:232
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229
msgid "Politics"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr ""
-#: src/screens/PostThread/index.tsx:531
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr ""
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr ""
@@ -7099,14 +7153,14 @@ msgstr ""
msgid "Post blocked"
msgstr ""
-#: src/Navigation.tsx:266
-#: src/Navigation.tsx:273
-#: src/Navigation.tsx:280
-#: src/Navigation.tsx:287
+#: src/Navigation.tsx:267
+#: src/Navigation.tsx:274
+#: src/Navigation.tsx:281
+#: src/Navigation.tsx:288
msgid "Post by @{0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:194
msgctxt "toast"
msgid "Post deleted"
msgstr ""
@@ -7118,7 +7172,7 @@ msgstr ""
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:134
#: src/screens/PostThread/components/ThreadItemPost.tsx:112
#: src/screens/PostThread/components/ThreadItemTreePost.tsx:108
-#: src/screens/VideoFeed/index.tsx:557
+#: src/screens/VideoFeed/index.tsx:551
msgid "Post has been deleted"
msgstr ""
@@ -7132,11 +7186,11 @@ msgstr ""
msgid "Post Hidden by You"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:679
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:682
msgid "Post interaction settings"
msgstr ""
-#: src/Navigation.tsx:200
+#: src/Navigation.tsx:201
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr ""
@@ -7156,7 +7210,7 @@ msgctxt "toast"
msgid "Post pinned"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:66
+#: src/components/PostControls/BookmarkButton.tsx:67
msgid "Post saved"
msgstr ""
@@ -7169,7 +7223,7 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262
#: src/screens/ProfileList/index.tsx:166
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216
-#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/screens/StarterPack/StarterPackScreen.tsx:194
#: src/view/screens/Profile.tsx:234
msgid "Posts"
msgstr ""
@@ -7213,11 +7267,11 @@ msgstr ""
msgid "Press to view followers of this account that you also follow"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:118
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:119
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr ""
@@ -7239,8 +7293,8 @@ msgstr ""
msgid "Privacy and security"
msgstr ""
-#: src/Navigation.tsx:409
-#: src/Navigation.tsx:417
+#: src/Navigation.tsx:410
+#: src/Navigation.tsx:418
#: src/screens/Settings/ActivityPrivacySettings.tsx:40
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:44
msgid "Privacy and Security"
@@ -7253,12 +7307,12 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102
-#: src/Navigation.tsx:333
-#: src/screens/Settings/AboutSettings.tsx:92
-#: src/screens/Settings/AboutSettings.tsx:95
+#: src/Navigation.tsx:334
+#: src/screens/Settings/AboutSettings.tsx:90
+#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr ""
@@ -7266,7 +7320,7 @@ msgstr ""
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1897
+#: src/view/com/composer/Composer.tsx:2301
msgid "Processing video..."
msgstr ""
@@ -7280,10 +7334,10 @@ msgstr ""
msgid "profile"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr ""
@@ -7296,7 +7350,7 @@ msgstr ""
msgid "Promoting or selling prohibited items or services"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:160
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:162
msgid "Psst! You can edit who can interact with this post."
msgstr ""
@@ -7305,22 +7359,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr ""
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1101
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1094
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1079
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1086
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7328,7 +7382,7 @@ msgstr ""
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:129
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:130
msgid "Push notifications"
msgstr ""
@@ -7340,19 +7394,19 @@ msgstr ""
msgid "Push, People you follow"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:137
+#: src/components/StarterPack/QrCodeDialog.tsx:139
msgid "QR code copied to your clipboard!"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:115
+#: src/components/StarterPack/QrCodeDialog.tsx:117
msgid "QR code has been downloaded!"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:116
+#: src/components/StarterPack/QrCodeDialog.tsx:118
msgid "QR code saved to your camera roll!"
msgstr ""
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:455
msgid "Quote notifications"
msgstr ""
@@ -7360,14 +7414,15 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:340
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
msgid "Quote post was re-attached"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:343
msgid "Quote post was successfully detached"
msgstr ""
@@ -7378,14 +7433,14 @@ msgstr ""
msgid "Quote posts disabled"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:154
+#: src/lib/hooks/useNotificationHandler.ts:157
#: src/screens/Post/PostQuotes.tsx:41
#: src/screens/Settings/NotificationSettings/index.tsx:170
#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
msgid "Quotes"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr ""
@@ -7393,12 +7448,12 @@ msgstr ""
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:106
+#: src/components/contacts/screens/PhoneInput.tsx:108
msgid "Rate limit exceeded. Please try again later."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:646
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:656
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659
msgid "Re-attach quote"
msgstr ""
@@ -7419,16 +7474,16 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:159
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:170
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:996
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:996
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr ""
@@ -7454,11 +7509,11 @@ msgstr ""
msgid "Read the Bluesky Terms of Service"
msgstr ""
-#: src/components/WelcomeModal.tsx:146
+#: src/components/WelcomeModal.tsx:148
msgid "Real conversations."
msgstr ""
-#: src/components/WelcomeModal.tsx:144
+#: src/components/WelcomeModal.tsx:146
msgid "Real people."
msgstr ""
@@ -7467,11 +7522,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:135
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:136
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:119
msgid "Receive push notifications"
msgstr ""
@@ -7483,7 +7538,7 @@ msgstr ""
msgid "Recently used"
msgstr ""
-#: src/screens/Search/modules/ExploreRecommendations.tsx:54
+#: src/screens/Search/modules/ExploreRecommendations.tsx:55
msgid "Recommended"
msgstr ""
@@ -7507,12 +7562,12 @@ msgstr ""
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:443
-#: src/components/dialogs/StarterPackDialog.tsx:374
-#: src/components/dialogs/StarterPackDialog.tsx:380
+#: src/components/dialogs/StarterPackDialog.tsx:375
+#: src/components/dialogs/StarterPackDialog.tsx:381
#: src/components/FeedCard.tsx:375
#: src/components/StarterPack/Wizard/WizardListCard.tsx:105
#: src/components/StarterPack/Wizard/WizardListCard.tsx:112
-#: src/screens/Bookmarks/index.tsx:266
+#: src/screens/Bookmarks/index.tsx:267
#: src/screens/Settings/Settings.tsx:682
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:220
@@ -7532,8 +7587,8 @@ msgstr ""
msgid "Remove account"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:548
-#: src/screens/Settings/FindContactsSettings.tsx:556
+#: src/screens/Settings/FindContactsSettings.tsx:554
+#: src/screens/Settings/FindContactsSettings.tsx:562
msgid "Remove all contacts"
msgstr ""
@@ -7541,8 +7596,8 @@ msgstr ""
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:498
-#: src/view/com/util/UserAvatar.tsx:501
+#: src/view/com/util/UserAvatar.tsx:499
+#: src/view/com/util/UserAvatar.tsx:502
msgid "Remove Avatar"
msgstr ""
@@ -7565,10 +7620,10 @@ msgstr ""
msgid "Remove feed?"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:181
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:184
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:175
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:178
#: src/screens/SavedFeeds.tsx:340
msgid "Remove from my feeds"
msgstr ""
@@ -7582,8 +7637,8 @@ msgstr ""
msgid "Remove from saved feeds"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:140
-#: src/screens/Bookmarks/index.tsx:260
+#: src/components/PostControls/BookmarkButton.tsx:141
+#: src/screens/Bookmarks/index.tsx:261
msgid "Remove from saved posts"
msgstr ""
@@ -7617,8 +7672,8 @@ msgstr ""
msgid "Remove subtitle file"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:497
-#: src/screens/Settings/FindContactsSettings.tsx:323
+#: src/components/contacts/screens/ViewMatches.tsx:499
+#: src/screens/Settings/FindContactsSettings.tsx:327
msgid "Remove suggestion"
msgstr ""
@@ -7631,9 +7686,9 @@ msgid "Remove user from list"
msgstr ""
#: src/components/verification/VerificationRemovePrompt.tsx:46
-#: src/components/verification/VerificationsDialog.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:408
-#: src/view/com/profile/ProfileMenu.tsx:411
+#: src/components/verification/VerificationsDialog.tsx:249
+#: src/view/com/profile/ProfileMenu.tsx:409
+#: src/view/com/profile/ProfileMenu.tsx:412
msgid "Remove verification"
msgstr ""
@@ -7658,17 +7713,17 @@ msgstr ""
msgid "Removed from saved feeds"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:106
-#: src/screens/Bookmarks/index.tsx:218
+#: src/components/PostControls/BookmarkButton.tsx:107
+#: src/screens/Bookmarks/index.tsx:219
msgid "Removed from saved posts"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:277
+#: src/components/dialogs/StarterPackDialog.tsx:278
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:74
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:123
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:76
#: src/view/com/posts/FeedShutdownMsg.tsx:44
msgid "Removed from your feeds"
msgstr ""
@@ -7704,7 +7759,7 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279
-#: src/lib/hooks/useNotificationHandler.ts:140
+#: src/lib/hooks/useNotificationHandler.ts:143
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218
#: src/screens/Settings/NotificationSettings/index.tsx:148
#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
@@ -7712,21 +7767,21 @@ msgstr ""
msgid "Replies"
msgstr ""
-#: src/components/WhoCanReply.tsx:85
+#: src/components/WhoCanReply.tsx:86
msgid "Replies disabled"
msgstr ""
-#: src/components/WhoCanReply.tsx:279
+#: src/components/WhoCanReply.tsx:280
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1117
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:240
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -7740,36 +7795,36 @@ msgstr ""
msgid "Reply Hidden by You"
msgstr ""
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:439
msgid "Reply notifications"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:412
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:415
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:69
+#: src/screens/PostThread/components/HeaderDropdown.tsx:70
msgid "Reply sorting"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:381
msgctxt "toast"
msgid "Reply visibility updated"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:376
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380
msgid "Reply was successfully hidden"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:168
+#: src/components/dms/MessageContextMenu.tsx:165
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
-#: src/components/live/LiveStatusDialog.tsx:257
+#: src/components/live/LiveStatusDialog.tsx:250
msgid "Report"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:475
-#: src/view/com/profile/ProfileMenu.tsx:478
+#: src/view/com/profile/ProfileMenu.tsx:476
+#: src/view/com/profile/ProfileMenu.tsx:479
msgid "Report account"
msgstr ""
@@ -7782,31 +7837,31 @@ msgid "Report conversation"
msgstr ""
#: src/components/moderation/ReportDialog/index.tsx:90
-#: src/components/moderation/ReportDialog/index.tsx:253
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:543
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:549
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:545
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:551
msgid "Report feed"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:215
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:218
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:209
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:212
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:166
+#: src/components/dms/MessageContextMenu.tsx:163
msgid "Report message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:712
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:714
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:715
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Report post"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:632
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
+#: src/screens/StarterPack/StarterPackScreen.tsx:640
msgid "Report starter pack"
msgstr ""
@@ -7827,7 +7882,7 @@ msgstr ""
msgid "Report this list"
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:240
+#: src/components/live/LiveStatusDialog.tsx:233
#: src/components/moderation/ReportDialog/copy.ts:19
msgid "Report this livestream"
msgstr ""
@@ -7861,14 +7916,14 @@ msgstr ""
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:470
+#: src/Navigation.tsx:471
msgid "Repost notifications"
msgstr ""
#: src/components/PostControls/RepostButton.tsx:145
#: src/components/PostControls/RepostButton.web.tsx:44
#: src/components/PostControls/RepostButton.web.tsx:104
-#: src/screens/StarterPack/StarterPackScreen.tsx:563
+#: src/screens/StarterPack/StarterPackScreen.tsx:568
msgid "Repost or quote post"
msgstr ""
@@ -7886,23 +7941,23 @@ msgstr ""
msgid "Reposted by you"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:133
+#: src/lib/hooks/useNotificationHandler.ts:136
#: src/screens/Settings/NotificationSettings/index.tsx:181
#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:175
+#: src/lib/hooks/useNotificationHandler.ts:178
#: src/screens/Settings/NotificationSettings/index.tsx:222
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:494
+#: src/Navigation.tsx:495
msgid "Reposts of your reposts notifications"
msgstr ""
@@ -7920,7 +7975,7 @@ msgstr ""
msgid "Require an email code to sign in to your account."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:209
+#: src/screens/Signup/StepInfo/index.tsx:207
msgid "Required for this provider"
msgstr ""
@@ -7932,12 +7987,12 @@ msgstr ""
msgid "Resend"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:362
-#: src/components/contacts/screens/VerifyNumber.tsx:379
+#: src/components/contacts/screens/VerifyNumber.tsx:364
+#: src/components/contacts/screens/VerifyNumber.tsx:381
msgid "Resend code"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:369
+#: src/components/contacts/screens/VerifyNumber.tsx:371
msgid "Resend code in <0>00:{0}0>"
msgstr ""
@@ -7972,8 +8027,8 @@ msgstr ""
msgid "Reset password"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:516
-#: src/screens/Settings/FindContactsSettings.tsx:532
+#: src/screens/Settings/FindContactsSettings.tsx:522
+#: src/screens/Settings/FindContactsSettings.tsx:538
msgid "Resync contacts"
msgstr ""
@@ -7988,22 +8043,22 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceErrors.tsx:27
#: src/components/ageAssurance/AgeAssuranceErrors.tsx:30
-#: src/components/contacts/screens/VerifyNumber.tsx:347
-#: src/components/contacts/screens/VerifyNumber.tsx:352
+#: src/components/contacts/screens/VerifyNumber.tsx:349
+#: src/components/contacts/screens/VerifyNumber.tsx:354
#: src/components/dms/MessageItem.tsx:322
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:114
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8015,14 +8070,14 @@ msgstr ""
msgid "Retry"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:284
+#: src/components/moderation/ReportDialog/index.tsx:278
#: src/view/screens/Storybook/Admonitions.tsx:60
msgid "Retry loading report options"
msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:769
+#: src/screens/StarterPack/StarterPackScreen.tsx:774
msgid "Return to previous page"
msgstr ""
@@ -8030,26 +8085,26 @@ msgstr ""
msgid "Returns to home page"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1185
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/screens/StarterPack/Wizard/index.tsx:325
msgid "Returns to the previous step"
msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:203
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:292
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:307
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:662
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:667
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:665
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:670
#: src/components/live/EditLiveDialog.tsx:202
#: src/components/live/EditLiveDialog.tsx:209
-#: src/components/StarterPack/QrCodeDialog.tsx:204
+#: src/components/StarterPack/QrCodeDialog.tsx:206
#: src/screens/Profile/Header/EditProfileDialog.tsx:236
#: src/screens/Profile/Header/EditProfileDialog.tsx:250
#: src/screens/SavedFeeds.tsx:120
@@ -8063,7 +8118,7 @@ msgstr ""
msgid "Save"
msgstr ""
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr ""
@@ -8076,11 +8131,28 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:142
-#: src/components/StarterPack/ShareDialog.tsx:148
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:143
+#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
msgstr ""
@@ -8088,22 +8160,22 @@ msgstr ""
msgid "Save new handle"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:196
+#: src/components/StarterPack/QrCodeDialog.tsx:198
msgid "Save QR code"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:643
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:649
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:646
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:652
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:322
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:328
msgid "Save to my feeds"
msgstr ""
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8113,13 +8185,13 @@ msgid "Saved Feeds"
msgstr ""
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:143
-#: src/Navigation.tsx:618
-#: src/screens/Bookmarks/index.tsx:60
+#: src/Navigation.tsx:619
+#: src/screens/Bookmarks/index.tsx:61
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
-#: src/screens/ProfileList/components/Header.tsx:85
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:133
+#: src/screens/ProfileList/components/Header.tsx:87
msgid "Saved to your feeds"
msgstr ""
@@ -8155,20 +8227,20 @@ msgstr ""
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr ""
-#: src/Navigation.tsx:259
+#: src/Navigation.tsx:260
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:662
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:353
+#: src/components/contacts/screens/ViewMatches.tsx:355
msgid "Search contacts"
msgstr ""
@@ -8177,12 +8249,12 @@ msgid "Search feeds"
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:491
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:484
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8194,15 +8266,15 @@ msgstr ""
msgid "Search for \"{searchText}\""
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:549
+#: src/screens/StarterPack/Wizard/index.tsx:550
msgid "Search for feeds that you want to suggest to others."
msgstr ""
-#: src/screens/Search/Explore.tsx:362
+#: src/screens/Search/Explore.tsx:364
msgid "Search for more accounts"
msgstr ""
-#: src/screens/Search/Explore.tsx:439
+#: src/screens/Search/Explore.tsx:441
msgid "Search for more feeds"
msgstr ""
@@ -8228,13 +8300,13 @@ msgstr ""
msgid "Search my posts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:291
-#: src/view/com/profile/ProfileMenu.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:292
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:681
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr ""
@@ -8247,7 +8319,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:682
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,17 +8355,17 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr ""
-#: src/components/FeedInterstitials.tsx:730
-#: src/components/FeedInterstitials.tsx:791
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:712
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
-#: src/view/com/profile/ProfileFollows.tsx:192
-#: src/view/com/profile/ProfileFollows.tsx:193
+#: src/view/com/profile/ProfileFollows.tsx:190
+#: src/view/com/profile/ProfileFollows.tsx:191
msgid "See suggested accounts"
msgstr ""
@@ -8323,11 +8395,11 @@ msgstr ""
msgid "Select a color"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:372
+#: src/components/moderation/ReportDialog/index.tsx:366
msgid "Select a reason"
msgstr ""
-#: src/screens/Login/ChooseAccountForm.tsx:77
+#: src/screens/Login/ChooseAccountForm.tsx:78
msgid "Select account"
msgstr ""
@@ -8359,23 +8431,23 @@ msgstr ""
msgid "Select duration"
msgstr ""
-#: src/screens/Login/index.tsx:158
+#: src/screens/Login/index.tsx:159
msgid "Select from an existing account"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:547
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:550
msgid "Select from your lists"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:549
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:552
msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}0>"
msgstr ""
-#: src/view/com/composer/photos/SelectGifBtn.tsx:35
+#: src/view/com/composer/photos/SelectGifBtn.tsx:36
msgid "Select GIF"
msgstr ""
-#: src/components/dialogs/GifSelect.tsx:294
+#: src/components/dialogs/GifSelect.tsx:295
msgid "Select GIF \"{0}\""
msgstr ""
@@ -8398,7 +8470,7 @@ msgstr ""
msgid "Select languages"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:422
+#: src/components/moderation/ReportDialog/index.tsx:416
msgid "Select moderation service"
msgstr ""
@@ -8439,11 +8511,11 @@ msgstr ""
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:302
+#: src/screens/Signup/StepInfo/index.tsx:300
msgid "Select your date of birth"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:67
+#: src/screens/Onboarding/StepInterests/index.tsx:68
#: src/screens/Settings/InterestsSettings.tsx:165
msgid "Select your interests from the options below"
msgstr ""
@@ -8452,7 +8524,7 @@ msgstr ""
msgid "Select your preferred language for translations in your feed."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:113
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:114
msgid "Select your preferred notification channels"
msgstr ""
@@ -8468,8 +8540,8 @@ msgstr ""
msgid "Send a neat website!"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:252
-#: src/components/contacts/screens/PhoneInput.tsx:257
+#: src/components/contacts/screens/PhoneInput.tsx:254
+#: src/components/contacts/screens/PhoneInput.tsx:259
msgid "Send code"
msgstr ""
@@ -8485,7 +8557,7 @@ msgctxt "action"
msgid "Send Email"
msgstr ""
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr ""
@@ -8494,15 +8566,15 @@ msgstr ""
msgid "Send message"
msgstr ""
-#: src/components/PostControls/ShareMenu/RecentChats.tsx:121
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:122
msgid "Send post to {name}"
msgstr ""
-#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
+#: src/components/dms/dialogs/ShareViaChatDialog.tsx:63
msgid "Send post to..."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:813
+#: src/components/moderation/ReportDialog/index.tsx:807
msgid "Send report to {title}"
msgstr ""
@@ -8516,10 +8588,10 @@ msgstr ""
msgid "Send verification email"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:102
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:108
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
msgid "Send via direct message"
msgstr ""
@@ -8527,7 +8599,7 @@ msgstr ""
msgid "Sends email with confirmation code for account deletion"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:280
+#: src/components/contacts/screens/PhoneInput.tsx:282
msgid "Sent to our phone number verification provider Plivo"
msgstr ""
@@ -8543,7 +8615,7 @@ msgstr ""
msgid "Set new password"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:475
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:478
msgid "Set precisely which groups of people can reply to your post"
msgstr ""
@@ -8551,11 +8623,11 @@ msgstr ""
msgid "Set up your account"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:425
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:428
msgid "Set who can reply to your post"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:220
+#: src/ageAssurance/components/NoAccessScreen.tsx:217
msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!"
msgstr ""
@@ -8563,10 +8635,10 @@ msgstr ""
msgid "Sets email for password reset"
msgstr ""
-#: src/Navigation.tsx:215
+#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr ""
@@ -8619,7 +8691,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr ""
@@ -8627,14 +8699,14 @@ msgstr ""
msgid "Sexually Suggestive"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/components/StarterPack/QrCodeDialog.tsx:194
#: src/screens/Hashtag.tsx:142
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
+#: src/screens/StarterPack/StarterPackScreen.tsx:437
#: src/screens/Topic.tsx:103
msgid "Share"
msgstr ""
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr ""
@@ -8647,60 +8719,60 @@ msgstr ""
msgid "Share a fun fact!"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:562
+#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Share anyway"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:164
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165
msgid "Share author DID"
msgstr ""
#: src/components/dialogs/LinkWarning.tsx:96
#: src/components/dialogs/LinkWarning.tsx:104
-#: src/components/StarterPack/ShareDialog.tsx:113
-#: src/components/StarterPack/ShareDialog.tsx:122
+#: src/components/StarterPack/ShareDialog.tsx:114
+#: src/components/StarterPack/ShareDialog.tsx:123
msgid "Share link"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:72
+#: src/components/StarterPack/ShareDialog.tsx:73
msgid "Share link dialog"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:156
msgid "Share post at:// URI"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:127
-#: src/components/StarterPack/ShareDialog.tsx:137
+#: src/components/StarterPack/ShareDialog.tsx:128
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Share QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:471
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:473
msgid "Share this feed"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:426
+#: src/screens/StarterPack/StarterPackScreen.tsx:430
msgid "Share this starter pack"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:84
+#: src/components/StarterPack/ShareDialog.tsx:85
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:118
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:121
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:159
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:165
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:171
-#: src/screens/StarterPack/StarterPackScreen.tsx:613
-#: src/screens/StarterPack/StarterPackScreen.tsx:621
-#: src/view/com/profile/ProfileMenu.tsx:269
-#: src/view/com/profile/ProfileMenu.tsx:282
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
+#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/view/com/profile/ProfileMenu.tsx:270
+#: src/view/com/profile/ProfileMenu.tsx:283
msgid "Share via..."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:229
+#: src/components/contacts/screens/GetContacts.tsx:231
msgid "Share your contacts to find friends"
msgstr ""
@@ -8708,25 +8780,25 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:319
msgid "Shared Preferences Tester"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:183
msgid "Show alt text"
msgstr ""
#: src/components/moderation/ScreenHider.tsx:178
#: src/components/moderation/ScreenHider.tsx:181
#: src/screens/List/ListHiddenScreen.tsx:190
+#: src/screens/VideoFeed/index.tsx:650
#: src/screens/VideoFeed/index.tsx:656
-#: src/screens/VideoFeed/index.tsx:662
msgid "Show anyway"
msgstr ""
@@ -8743,8 +8815,8 @@ msgstr ""
msgid "Show customization options"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:541
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546
msgid "Show less like this"
msgstr ""
@@ -8752,7 +8824,7 @@ msgstr ""
msgid "Show list anyway"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:528
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:531
msgid "Show lists of users to select from"
msgstr ""
@@ -8765,12 +8837,12 @@ msgstr ""
msgid "Show More"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:535
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:536
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538
msgid "Show more like this"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14
+#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:15
msgid "Show more replies"
msgstr ""
@@ -8788,12 +8860,12 @@ msgstr ""
msgid "Show replies"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:43
+#: src/screens/PostThread/components/HeaderDropdown.tsx:44
msgid "Show replies as"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
msgid "Show reply for everyone"
msgstr ""
@@ -8820,7 +8892,7 @@ msgstr ""
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr ""
@@ -8828,28 +8900,28 @@ msgstr ""
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
#: src/components/dialogs/Signin.tsx:97
#: src/components/dialogs/Signin.tsx:99
-#: src/components/WelcomeModal.tsx:194
-#: src/components/WelcomeModal.tsx:206
+#: src/components/WelcomeModal.tsx:196
+#: src/components/WelcomeModal.tsx:208
#: src/screens/Hashtag.tsx:240
-#: src/screens/Login/index.tsx:136
-#: src/screens/Login/index.tsx:157
+#: src/screens/Login/index.tsx:137
+#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8859,7 +8931,7 @@ msgstr ""
msgid "Sign in as {0}"
msgstr ""
-#: src/screens/Login/ChooseAccountForm.tsx:81
+#: src/screens/Login/ChooseAccountForm.tsx:82
msgid "Sign in as..."
msgstr ""
@@ -8880,8 +8952,8 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Sign in to view post"
msgstr ""
@@ -8911,38 +8983,34 @@ msgstr ""
msgid "Sign-in Required"
msgstr ""
-#: src/lib/hooks/useAccountSwitcher.ts:41
-#: src/screens/Login/ChooseAccountForm.tsx:53
+#: src/lib/hooks/useAccountSwitcher.ts:42
+#: src/screens/Login/ChooseAccountForm.tsx:54
msgid "Signed in as @{0}"
msgstr ""
-#: src/components/FeedInterstitials.tsx:707
-msgid "Similar accounts"
-msgstr ""
-
-#: src/components/contacts/screens/PhoneInput.tsx:160
-#: src/components/contacts/screens/VerifyNumber.tsx:202
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:78
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:82
-#: src/screens/Onboarding/StepFinished/index.tsx:288
-#: src/screens/Onboarding/StepFinished/index.tsx:310
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:252
+#: src/components/contacts/screens/PhoneInput.tsx:162
+#: src/components/contacts/screens/VerifyNumber.tsx:204
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
+#: src/screens/Onboarding/StepFinished/index.tsx:291
+#: src/screens/Onboarding/StepFinished/index.tsx:313
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
-#: src/screens/StarterPack/Wizard/index.tsx:218
+#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:157
-#: src/components/contacts/screens/VerifyNumber.tsx:199
+#: src/components/contacts/screens/PhoneInput.tsx:159
+#: src/components/contacts/screens/VerifyNumber.tsx:201
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:281
-#: src/screens/Onboarding/StepFinished/index.tsx:307
+#: src/screens/Onboarding/StepFinished/index.tsx:284
+#: src/screens/Onboarding/StepFinished/index.tsx:310
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8955,7 +9023,7 @@ msgstr ""
msgid "Snoozes the reminder"
msgstr ""
-#: src/components/WelcomeModal.tsx:148
+#: src/components/WelcomeModal.tsx:150
msgid "Social media you control."
msgstr ""
@@ -8963,15 +9031,15 @@ msgstr ""
msgid "Software Dev"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:120
+#: src/components/verification/VerificationsDialog.tsx:121
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:869
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr ""
-#: src/components/WhoCanReply.tsx:86
+#: src/components/WhoCanReply.tsx:87
msgid "Some people can reply"
msgstr ""
@@ -8979,7 +9047,7 @@ msgstr ""
msgid "Someone reacted {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:243
+#: src/screens/Messages/components/ChatListItem.tsx:244
msgid "Someone reacted {0} to {1}"
msgstr ""
@@ -8992,9 +9060,9 @@ msgid "Something went wrong"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
-#: src/components/moderation/ReportDialog/index.tsx:279
+#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr ""
@@ -9012,20 +9080,20 @@ msgstr ""
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:233
+#: src/components/moderation/ReportDialog/index.tsx:231
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:539
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:541
msgid "Something wrong? Let us know."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
-#: src/App.native.tsx:132
-#: src/App.web.tsx:104
+#: src/App.native.tsx:137
+#: src/App.web.tsx:113
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -9055,15 +9123,15 @@ msgid "Spam or other inauthentic behavior or deception"
msgstr ""
#: src/lib/interests.ts:72
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:230
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227
msgid "Sports"
msgstr ""
-#: src/components/PostControls/ShareMenu/RecentChats.tsx:206
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:207
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:74
+#: src/components/dms/dialogs/NewChatDialog.tsx:75
msgid "Start a new chat"
msgstr ""
@@ -9081,9 +9149,9 @@ msgstr ""
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:589
-#: src/Navigation.tsx:594
-#: src/screens/StarterPack/Wizard/index.tsx:209
+#: src/Navigation.tsx:590
+#: src/Navigation.tsx:595
+#: src/screens/StarterPack/Wizard/index.tsx:210
msgid "Starter Pack"
msgstr ""
@@ -9100,11 +9168,11 @@ msgstr ""
msgid "Starter pack by you"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:733
+#: src/screens/StarterPack/StarterPackScreen.tsx:738
msgid "Starter pack is invalid"
msgstr ""
-#: src/screens/Search/Explore.tsx:630
+#: src/screens/Search/Explore.tsx:629
#: src/view/screens/Profile.tsx:240
msgid "Starter Packs"
msgstr ""
@@ -9113,17 +9181,21 @@ msgstr ""
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr ""
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:100
-#: src/screens/Settings/AboutSettings.tsx:103
+#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:101
msgid "Status Page"
msgstr ""
#: src/screens/Onboarding/Layout.tsx:226
-#: src/screens/Signup/index.tsx:169
+#: src/screens/Signup/index.tsx:180
msgid "Step {0} of {1}"
msgstr ""
@@ -9131,11 +9203,11 @@ msgstr ""
msgid "Storage cleared, you need to restart the app now."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:291
+#: src/components/contacts/screens/PhoneInput.tsx:293
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:309
#: src/screens/Settings/Settings.tsx:464
msgid "Storybook"
msgstr ""
@@ -9144,8 +9216,8 @@ msgstr ""
msgid "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:117
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:123
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:119
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:125
#: src/components/live/GoLiveDisabledDialog.tsx:138
#: src/components/live/GoLiveDisabledDialog.tsx:139
#: src/components/moderation/LabelsOnMeDialog.tsx:342
@@ -9163,13 +9235,13 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:500
-#: src/components/moderation/ReportDialog/index.tsx:561
-#: src/components/moderation/ReportDialog/index.tsx:568
+#: src/components/moderation/ReportDialog/index.tsx:494
+#: src/components/moderation/ReportDialog/index.tsx:555
+#: src/components/moderation/ReportDialog/index.tsx:562
msgid "Submit report"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:81
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:74
msgid "Subscribe"
msgstr ""
@@ -9181,20 +9253,20 @@ msgstr ""
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:69
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:62
msgid "Subscribe to this list"
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:251
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:158
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:159
msgid "Success"
msgstr ""
@@ -9207,18 +9279,18 @@ msgstr ""
msgid "Successfully verified"
msgstr ""
-#: src/screens/Search/Explore.tsx:359
+#: src/screens/Search/Explore.tsx:361
msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:705
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:155
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr ""
@@ -9232,13 +9304,13 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:329
#: src/view/screens/Support.tsx:34
#: src/view/screens/Support.tsx:37
msgid "Support"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:233
+#: src/components/contacts/screens/PhoneInput.tsx:235
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
@@ -9270,8 +9342,8 @@ msgid "System"
msgstr ""
#: src/screens/Log.tsx:58
-#: src/screens/Settings/AboutSettings.tsx:107
-#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/AboutSettings.tsx:105
+#: src/screens/Settings/AboutSettings.tsx:108
#: src/screens/Settings/Settings.tsx:457
msgid "System log"
msgstr ""
@@ -9292,7 +9364,7 @@ msgstr ""
msgid "Tap for more information"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:336
+#: src/screens/Signup/StepInfo/index.tsx:334
msgid "Tap here to confirm your location with GPS."
msgstr ""
@@ -9314,11 +9386,11 @@ msgstr ""
msgid "Targeted harassment"
msgstr ""
-#: src/state/shell/progress-guide.tsx:235
+#: src/state/shell/progress-guide.tsx:236
msgid "Task complete - 10 follows!"
msgstr ""
-#: src/state/shell/progress-guide.tsx:225
+#: src/state/shell/progress-guide.tsx:226
msgid "Task complete - 10 likes!"
msgstr ""
@@ -9350,12 +9422,12 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:182
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97
-#: src/Navigation.tsx:338
-#: src/screens/Settings/AboutSettings.tsx:84
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/Navigation.tsx:339
+#: src/screens/Settings/AboutSettings.tsx:82
+#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr ""
@@ -9377,8 +9449,8 @@ msgstr ""
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:394
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:121
+#: src/ageAssurance/components/NoAccessScreen.tsx:392
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:123
msgid "Thanks! You're all set."
msgstr ""
@@ -9386,16 +9458,16 @@ msgstr ""
msgid "That contains the following:"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:110
-#: src/screens/StarterPack/StarterPackScreen.tsx:111
-#: src/screens/StarterPack/StarterPackScreen.tsx:155
-#: src/screens/StarterPack/StarterPackScreen.tsx:156
+#: src/screens/StarterPack/StarterPackScreen.tsx:112
+#: src/screens/StarterPack/StarterPackScreen.tsx:113
+#: src/screens/StarterPack/StarterPackScreen.tsx:157
+#: src/screens/StarterPack/StarterPackScreen.tsx:158
#: src/screens/StarterPack/Wizard/index.tsx:117
#: src/screens/StarterPack/Wizard/index.tsx:127
msgid "That starter pack could not be found."
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:77
+#: src/screens/Signup/StepHandle/index.tsx:80
msgid "That username is already taken"
msgstr ""
@@ -9403,13 +9475,13 @@ msgstr ""
msgid "That's all, folks!"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1157
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
-#: src/view/com/profile/ProfileMenu.tsx:538
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr ""
@@ -9443,11 +9515,11 @@ msgstr ""
msgid "The Discover feed"
msgstr ""
-#: src/state/shell/progress-guide.tsx:226
+#: src/state/shell/progress-guide.tsx:227
msgid "The Discover feed now knows what you like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:332
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -9493,7 +9565,7 @@ msgstr ""
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:743
+#: src/screens/StarterPack/StarterPackScreen.tsx:748
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
@@ -9513,9 +9585,9 @@ msgstr ""
msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:112
-#: src/components/contacts/screens/VerifyNumber.tsx:110
-#: src/components/contacts/screens/VerifyNumber.tsx:162
+#: src/components/contacts/screens/PhoneInput.tsx:114
+#: src/components/contacts/screens/VerifyNumber.tsx:112
+#: src/components/contacts/screens/VerifyNumber.tsx:164
msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again."
msgstr ""
@@ -9527,11 +9599,11 @@ msgstr ""
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:144
+#: src/components/contacts/screens/GetContacts.tsx:146
msgid "There was a problem with your internet connection, please try again"
msgstr ""
@@ -9539,15 +9611,15 @@ msgstr ""
msgid "There was an issue connecting to Tenor."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
-#: src/screens/ProfileList/components/Header.tsx:88
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:76
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:179
+#: src/screens/ProfileList/components/Header.tsx:90
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:78
#: src/screens/SavedFeeds.tsx:97
msgid "There was an issue contacting the server"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:419
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:98
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:421
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:99
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr ""
@@ -9555,8 +9627,8 @@ msgstr ""
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
-#: src/screens/Search/Explore.tsx:999
-#: src/view/com/posts/PostFeed.tsx:755
+#: src/screens/Search/Explore.tsx:988
+#: src/view/com/posts/PostFeed.tsx:757
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -9581,40 +9653,40 @@ msgstr ""
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:139
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:446
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:104
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:115
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:116
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:127
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:253
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
-#: src/view/com/profile/ProfileMenu.tsx:151
-#: src/view/com/profile/ProfileMenu.tsx:161
-#: src/view/com/profile/ProfileMenu.tsx:175
-#: src/view/com/profile/ProfileMenu.tsx:185
-#: src/view/com/profile/ProfileMenu.tsx:198
-#: src/view/com/profile/ProfileMenu.tsx:210
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:176
+#: src/view/com/profile/ProfileMenu.tsx:186
+#: src/view/com/profile/ProfileMenu.tsx:199
+#: src/view/com/profile/ProfileMenu.tsx:211
msgid "There was an issue! {0}"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:238
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:240
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/screens/ProfileList/components/Header.tsx:107
-#: src/screens/ProfileList/components/Header.tsx:125
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:122
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:140
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:40
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:59
+#: src/screens/ProfileList/components/Header.tsx:105
+#: src/screens/ProfileList/components/Header.tsx:119
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:120
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:134
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:37
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:52
msgid "There was an issue. Please check your internet connection and try again."
msgstr ""
@@ -9628,7 +9700,7 @@ msgstr ""
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:654
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:657
msgid "These are your default settings"
msgstr ""
@@ -9640,11 +9712,11 @@ msgstr ""
msgid "This {screenDescription} has been flagged:"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:87
+#: src/components/verification/VerificationsDialog.tsx:88
msgid "This account has a checkmark because it's been verified by trusted sources."
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:92
+#: src/components/verification/VerificationsDialog.tsx:93
msgid "This account has one or more attempted verifications, but it is not currently verified."
msgstr ""
@@ -9678,7 +9750,7 @@ msgstr ""
msgid "This chat was disconnected"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:103
+#: src/components/contacts/screens/VerifyNumber.tsx:105
msgid "This code is invalid. Resend to get a new code."
msgstr ""
@@ -9707,10 +9779,14 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:365
+#: src/screens/Messages/components/ChatListItem.tsx:366
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9735,12 +9811,12 @@ msgstr ""
msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later."
msgstr ""
-#: src/view/com/posts/CustomFeedEmptyState.tsx:61
+#: src/view/com/posts/CustomFeedEmptyState.tsx:62
msgid "This feed is empty! You may need to follow more users or tune your language settings."
msgstr ""
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr ""
@@ -9798,35 +9874,35 @@ msgstr ""
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
-#: src/components/WhoCanReply.tsx:272
+#: src/components/WhoCanReply.tsx:273
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143
msgid "This post is only visible to logged-in users."
msgstr ""
-#: src/screens/Bookmarks/index.tsx:256
+#: src/screens/Bookmarks/index.tsx:257
msgid "This post was deleted by its author"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:773
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:514
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:559
+#: src/view/com/profile/ProfileMenu.tsx:560
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:805
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr ""
@@ -9834,7 +9910,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9850,7 +9926,7 @@ msgstr ""
msgid "This user does not have a display name, and therefore cannot be verified."
msgstr ""
-#: src/view/com/profile/ProfileFollowers.tsx:172
+#: src/view/com/profile/ProfileFollowers.tsx:170
msgid "This user doesn't have any followers."
msgstr ""
@@ -9879,7 +9955,7 @@ msgstr ""
msgid "This user is new here. Press for more info about when they joined."
msgstr ""
-#: src/view/com/profile/ProfileFollows.tsx:184
+#: src/view/com/profile/ProfileFollows.tsx:182
msgid "This user isn't following anyone."
msgstr ""
@@ -9891,12 +9967,12 @@ msgstr ""
msgid "This will remove @{0} from the quick access list."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:795
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:23
-#: src/screens/PostThread/components/HeaderDropdown.tsx:26
+#: src/screens/PostThread/components/HeaderDropdown.tsx:24
+#: src/screens/PostThread/components/HeaderDropdown.tsx:27
msgid "Thread options"
msgstr ""
@@ -9909,12 +9985,12 @@ msgstr ""
msgid "Thread Preferences"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:57
-#: src/screens/PostThread/components/HeaderDropdown.tsx:62
+#: src/screens/PostThread/components/HeaderDropdown.tsx:58
+#: src/screens/PostThread/components/HeaderDropdown.tsx:63
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:371
+#: src/Navigation.tsx:372
msgid "Threads Preferences"
msgstr ""
@@ -9935,7 +10011,7 @@ msgstr ""
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:242
+#: src/ageAssurance/components/NoAccessScreen.tsx:239
msgid "To log out, <0>click here0>."
msgstr ""
@@ -9955,15 +10031,15 @@ msgstr ""
msgid "Toggles the sound"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:120
+#: src/components/contacts/screens/VerifyNumber.tsx:122
msgid "Too many attempts. Please wait a few minutes and try again."
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:173
+#: src/components/contacts/screens/VerifyNumber.tsx:175
msgid "Too many codes sent. Please wait a few minutes and try again."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:153
+#: src/components/contacts/screens/GetContacts.tsx:155
msgid "Too many contacts - you've exceeded the number of contacts you can import to find your friends"
msgstr ""
@@ -9973,23 +10049,23 @@ msgstr ""
msgid "Top"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:73
-#: src/screens/PostThread/components/HeaderDropdown.tsx:78
+#: src/screens/PostThread/components/HeaderDropdown.tsx:74
+#: src/screens/PostThread/components/HeaderDropdown.tsx:79
#: src/screens/Settings/ThreadPreferences.tsx:56
#: src/screens/Settings/ThreadPreferences.tsx:59
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:554
+#: src/Navigation.tsx:555
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:139
-#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:502
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:504
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
+#: src/components/dms/MessageContextMenu.tsx:136
+#: src/components/dms/MessageContextMenu.tsx:138
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr ""
@@ -9998,11 +10074,11 @@ msgstr ""
msgid "Tree view"
msgstr ""
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:49
msgid "Trending"
msgstr ""
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:56
msgid "Trending options"
msgstr ""
@@ -10014,7 +10090,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:139
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -10059,14 +10135,14 @@ msgid "Unable to contact your service. Please check your internet connection and
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:68
-#: src/screens/Login/index.tsx:93
+#: src/screens/Login/index.tsx:94
#: src/screens/Login/LoginForm.tsx:169
#: src/screens/Login/SetNewPasswordForm.tsx:81
-#: src/screens/Signup/index.tsx:77
+#: src/screens/Signup/index.tsx:88
msgid "Unable to contact your service. Please check your Internet connection."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:680
msgid "Unable to delete"
msgstr ""
@@ -10078,7 +10154,7 @@ msgstr ""
msgid "Unapply Pull Request {currentChannel}"
msgstr ""
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:41
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:42
msgid "Unavailable"
msgstr ""
@@ -10091,44 +10167,48 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
-#: src/screens/ProfileList/components/Header.tsx:171
-#: src/screens/ProfileList/components/Header.tsx:178
-#: src/view/com/profile/ProfileMenu.tsx:550
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
+#: src/screens/ProfileList/components/Header.tsx:165
+#: src/screens/ProfileList/components/Header.tsx:172
+#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:261
#: src/components/dms/ConvoMenu.tsx:264
-#: src/view/com/profile/ProfileMenu.tsx:455
-#: src/view/com/profile/ProfileMenu.tsx:461
+#: src/view/com/profile/ProfileMenu.tsx:456
+#: src/view/com/profile/ProfileMenu.tsx:462
msgid "Unblock account"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
-#: src/view/com/profile/ProfileMenu.tsx:532
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
+#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:247
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:250
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:241
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:244
msgid "Unblock list"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:42
+#: src/components/PostControls/BookmarkButton.tsx:43
msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,32 +10222,32 @@ msgstr ""
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:311
-#: src/view/com/profile/ProfileMenu.tsx:321
+#: src/view/com/profile/ProfileMenu.tsx:312
+#: src/view/com/profile/ProfileMenu.tsx:322
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:860
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:484
+#: src/components/moderation/ReportDialog/index.tsx:478
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:197
+#: src/ageAssurance/components/NoAccessScreen.tsx:194
msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:182
+#: src/ageAssurance/components/NoAccessScreen.tsx:179
msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region."
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:211
+#: src/components/verification/VerificationsDialog.tsx:208
msgid "Unknown verifier"
msgstr ""
@@ -10179,12 +10259,12 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:517
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:276
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -10194,8 +10274,8 @@ msgctxt "video"
msgid "Unmute"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:185
-#: src/screens/ProfileList/components/Header.tsx:192
+#: src/screens/ProfileList/components/Header.tsx:179
+#: src/screens/ProfileList/components/Header.tsx:186
msgid "Unmute"
msgstr ""
@@ -10204,10 +10284,10 @@ msgstr ""
msgid "Unmute {tag}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:685
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691
-#: src/view/com/profile/ProfileMenu.tsx:434
-#: src/view/com/profile/ProfileMenu.tsx:440
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:688
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
+#: src/view/com/profile/ProfileMenu.tsx:435
+#: src/view/com/profile/ProfileMenu.tsx:441
msgid "Unmute account"
msgstr ""
@@ -10215,13 +10295,13 @@ msgstr ""
msgid "Unmute conversation"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:257
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:260
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:251
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:254
msgid "Unmute list"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:574
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:577
msgid "Unmute thread"
msgstr ""
@@ -10229,13 +10309,13 @@ msgstr ""
msgid "Unmute video"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:156
-#: src/screens/ProfileList/components/Header.tsx:163
+#: src/screens/ProfileList/components/Header.tsx:150
+#: src/screens/ProfileList/components/Header.tsx:157
msgid "Unpin"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:527
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:529
#: src/screens/SavedFeeds.tsx:351
msgid "Unpin feed"
msgstr ""
@@ -10244,30 +10324,30 @@ msgstr ""
msgid "Unpin Feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:311
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:313
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:477
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:484
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:487
msgid "Unpin from profile"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:230
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:233
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:224
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:227
msgid "Unpin moderation list"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
msgid "Unpinned {0} from Home"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:75
+#: src/screens/ProfileList/components/Header.tsx:77
msgid "Unpinned from your feeds"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:102
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:104
msgid "Unpinned list"
msgstr ""
@@ -10276,7 +10356,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:341
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr ""
@@ -10285,7 +10365,7 @@ msgstr ""
msgid "Unsubscribe from list"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:308
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr ""
@@ -10293,7 +10373,7 @@ msgstr ""
msgid "Unsubscribed from list"
msgstr ""
-#: src/view/com/composer/Composer.tsx:897
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10322,12 +10402,12 @@ msgstr ""
msgid "Update your email"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:348
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:396
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
@@ -10344,20 +10424,20 @@ msgstr ""
msgid "Upload a text file to:"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:469
-#: src/view/com/util/UserAvatar.tsx:472
+#: src/view/com/util/UserAvatar.tsx:470
+#: src/view/com/util/UserAvatar.tsx:473
#: src/view/com/util/UserBanner.tsx:159
#: src/view/com/util/UserBanner.tsx:162
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:486
+#: src/view/com/util/UserAvatar.tsx:487
#: src/view/com/util/UserBanner.tsx:176
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:480
-#: src/view/com/util/UserAvatar.tsx:484
+#: src/view/com/util/UserAvatar.tsx:481
+#: src/view/com/util/UserAvatar.tsx:485
#: src/view/com/util/UserBanner.tsx:170
#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Library"
@@ -10372,7 +10452,7 @@ msgstr ""
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1894
+#: src/view/com/composer/Composer.tsx:2298
msgid "Uploading video..."
msgstr ""
@@ -10445,6 +10525,10 @@ msgstr ""
msgid "User list by {0}"
msgstr ""
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr ""
@@ -10459,15 +10543,15 @@ msgctxt "toast"
msgid "User list updated"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:233
+#: src/screens/Signup/StepHandle/index.tsx:230
msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:217
+#: src/screens/Signup/StepHandle/index.tsx:214
msgid "Username cannot begin or end with a hyphen"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:221
+#: src/screens/Signup/StepHandle/index.tsx:218
msgid "Username must only contain letters (a-z), numbers, and hyphens"
msgstr ""
@@ -10475,11 +10559,11 @@ msgstr ""
msgid "Username or email address"
msgstr ""
-#: src/components/WhoCanReply.tsx:335
+#: src/components/WhoCanReply.tsx:336
msgid "users followed by <0>@{0}0>"
msgstr ""
-#: src/components/WhoCanReply.tsx:322
+#: src/components/WhoCanReply.tsx:323
msgid "users following <0>@{0}0>"
msgstr ""
@@ -10500,28 +10584,28 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:208
-#: src/screens/Moderation/VerificationSettings.tsx:32
+#: src/Navigation.tsx:209
+#: src/screens/Moderation/VerificationSettings.tsx:33
msgid "Verification Settings"
msgstr ""
-#: src/screens/Moderation/VerificationSettings.tsx:41
+#: src/screens/Moderation/VerificationSettings.tsx:42
msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:103
+#: src/components/verification/VerificationsDialog.tsx:104
msgid "Verified by:"
msgstr ""
#: src/components/verification/VerificationCreatePrompt.tsx:84
#: src/components/verification/VerificationCreatePrompt.tsx:86
-#: src/view/com/profile/ProfileMenu.tsx:418
-#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:419
+#: src/view/com/profile/ProfileMenu.tsx:422
msgid "Verify account"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:331
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:176
+#: src/ageAssurance/components/NoAccessScreen.tsx:329
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:178
msgid "Verify again"
msgstr ""
@@ -10547,15 +10631,15 @@ msgstr ""
msgid "Verify email dialog"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:319
-#: src/ageAssurance/components/NoAccessScreen.tsx:333
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:164
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:178
+#: src/ageAssurance/components/NoAccessScreen.tsx:317
+#: src/ageAssurance/components/NoAccessScreen.tsx:331
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:166
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:180
msgid "Verify now"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:172
-#: src/components/contacts/screens/VerifyNumber.tsx:214
+#: src/components/contacts/screens/PhoneInput.tsx:174
+#: src/components/contacts/screens/VerifyNumber.tsx:216
msgid "Verify phone number"
msgstr ""
@@ -10579,21 +10663,21 @@ msgid "Verify your email"
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:296
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:207
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:208
msgid "Verifying"
msgstr ""
-#: src/ageAssurance/components/RedirectOverlay.tsx:165
+#: src/ageAssurance/components/RedirectOverlay.tsx:164
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74
msgid "Verifying your age assurance status"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:304
+#: src/components/contacts/screens/VerifyNumber.tsx:306
msgid "Verifying..."
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:126
-#: src/screens/Settings/AboutSettings.tsx:155
+#: src/screens/Settings/AboutSettings.tsx:124
+#: src/screens/Settings/AboutSettings.tsx:153
msgid "Version {0}"
msgstr ""
@@ -10606,7 +10690,7 @@ msgstr ""
msgid "Video failed to process"
msgstr ""
-#: src/Navigation.tsx:610
+#: src/Navigation.tsx:611
msgid "Video Feed"
msgstr ""
@@ -10614,16 +10698,20 @@ msgstr ""
msgid "Video from {0}: {text}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:234
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1115
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1115
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr ""
@@ -10635,7 +10723,7 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1904
+#: src/view/com/composer/Composer.tsx:2308
msgid "Video uploaded"
msgstr ""
@@ -10651,19 +10739,19 @@ msgstr ""
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:586
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:267
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr ""
#: src/components/ProfileCard.tsx:142
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:456
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:819
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr ""
@@ -10684,8 +10772,8 @@ msgstr ""
msgid "View debug entry"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:684
-#: src/screens/VideoFeed/index.tsx:702
+#: src/screens/VideoFeed/index.tsx:678
+#: src/screens/VideoFeed/index.tsx:696
msgid "View details"
msgstr ""
@@ -10697,18 +10785,18 @@ msgstr ""
msgid "View information about these labels"
msgstr ""
-#: src/components/interstitials/TrendingVideos.tsx:198
-#: src/components/interstitials/TrendingVideos.tsx:220
-#: src/screens/Search/modules/ExploreTrendingVideos.tsx:193
-#: src/screens/Search/modules/ExploreTrendingVideos.tsx:212
+#: src/components/interstitials/TrendingVideos.tsx:199
+#: src/components/interstitials/TrendingVideos.tsx:221
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:190
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:209
msgid "View more"
msgstr ""
-#: src/components/interstitials/TrendingVideos.tsx:226
+#: src/components/interstitials/TrendingVideos.tsx:227
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:581
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10729,11 +10817,11 @@ msgstr ""
msgid "View the labeling service provided by @{0}"
msgstr ""
-#: src/components/verification/VerificationCheckButton.tsx:99
+#: src/components/verification/VerificationCheckButton.tsx:100
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:488
msgid "View users who like this feed"
msgstr ""
@@ -10762,7 +10850,7 @@ msgstr ""
msgid "View your muted accounts"
msgstr ""
-#: src/components/verification/VerificationCheckButton.tsx:98
+#: src/components/verification/VerificationCheckButton.tsx:99
msgid "View your verifications"
msgstr ""
@@ -10788,7 +10876,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10810,12 +10898,12 @@ msgstr ""
msgid "Warn content and filter from feeds"
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:172
-#: src/components/live/LiveStatusDialog.tsx:185
+#: src/components/live/LiveStatusDialog.tsx:173
+#: src/components/live/LiveStatusDialog.tsx:182
msgid "Watch now"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:250
+#: src/components/contacts/screens/GetContacts.tsx:252
msgid "We apply the highest privacy standards, and never share or sell your contact information."
msgstr ""
@@ -10839,7 +10927,7 @@ msgstr ""
msgid "We couldn't load this conversation"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:241
+#: src/components/contacts/screens/GetContacts.tsx:243
msgid "We delete hashes after matches are made"
msgstr ""
@@ -10859,15 +10947,15 @@ msgstr ""
msgid "We have sent another verification email to <0>{0}0>."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:181
+#: src/components/contacts/screens/PhoneInput.tsx:183
msgid "We need to verify your number before we can look for your friends. A verification code will be sent to this number."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:238
+#: src/components/contacts/screens/GetContacts.tsx:240
msgid "We never keep plain phone numbers"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:244
+#: src/components/contacts/screens/GetContacts.tsx:246
msgid "We only suggest follows if both people consent"
msgstr ""
@@ -10900,7 +10988,7 @@ msgid "We were unable to load your configured labelers at this time."
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:304
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:215
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:216
msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically."
msgstr ""
@@ -10908,7 +10996,7 @@ msgstr ""
msgid "We will let you know when your account is ready."
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:503
+#: src/screens/Settings/FindContactsSettings.tsx:509
msgid "We will notify you when we find your friends."
msgstr ""
@@ -10916,7 +11004,7 @@ msgstr ""
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:60
+#: src/screens/Onboarding/StepInterests/index.tsx:61
msgid "We'll use this to help customize your experience."
msgstr ""
@@ -10929,7 +11017,7 @@ msgid "We're also updating our Community Guidelines, and we want your input! The
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:310
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:222
msgid "We're confirming your age assurance status with our servers. This should only take a few seconds."
msgstr ""
@@ -10938,20 +11026,20 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:189
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:95
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "We're so excited to have you join us!"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:387
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:114
+#: src/ageAssurance/components/NoAccessScreen.tsx:385
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:116
msgid "We're sorry, but based on your device's location, you are currently located in a region that requires age assurance."
msgstr ""
@@ -10968,7 +11056,7 @@ msgstr ""
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr ""
-#: src/view/com/composer/Composer.tsx:511
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
@@ -10977,7 +11065,7 @@ msgstr ""
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:216
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr ""
@@ -10998,7 +11086,7 @@ msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Poli
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:256
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:163
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164
msgid "We've confirmed your age assurance status. You can now close this dialog."
msgstr ""
@@ -11010,7 +11098,7 @@ msgstr ""
msgid "Welcome, friend!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:57
+#: src/screens/Onboarding/StepInterests/index.tsx:58
msgid "What are your interests?"
msgstr ""
@@ -11018,14 +11106,13 @@ msgstr ""
msgid "What do you want to call your starter pack?"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:857
-#: src/view/com/feeds/ComposerPrompt.tsx:189
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:147
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -11033,16 +11120,16 @@ msgstr ""
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr ""
-#: src/components/WhoCanReply.tsx:224
+#: src/components/WhoCanReply.tsx:225
msgid "Who can interact with this post?"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:421
-#: src/components/WhoCanReply.tsx:114
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:424
+#: src/components/WhoCanReply.tsx:115
msgid "Who can reply"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:128
msgid "Who can verify?"
msgstr ""
@@ -11097,6 +11184,14 @@ msgstr ""
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11202,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:855
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr ""
@@ -11133,20 +11228,20 @@ msgstr ""
msgid "Yes"
msgstr ""
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:687
+#: src/screens/StarterPack/StarterPackScreen.tsx:692
msgid "Yes, delete this starter pack"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
msgid "Yes, detach"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
msgid "Yes, hide"
msgstr ""
@@ -11158,11 +11253,11 @@ msgstr ""
msgid "Yesterday"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:59
+#: src/components/verification/VerifierDialog.tsx:60
msgid "You are a trusted verifier"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:173
+#: src/ageAssurance/components/NoAccessScreen.tsx:170
msgid "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app."
msgstr ""
@@ -11174,8 +11269,8 @@ msgstr ""
msgid "You are currently blocked from using the Go Live feature. To appeal this moderation decision, please submit the form below."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:301
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:134
+#: src/ageAssurance/components/NoAccessScreen.tsx:299
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:136
msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team0> if you believe this is an error."
msgstr ""
@@ -11188,7 +11283,7 @@ msgstr ""
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:212
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11196,15 +11291,15 @@ msgstr ""
msgid "You are not allowed to upload videos."
msgstr ""
-#: src/view/com/profile/ProfileFollows.tsx:183
+#: src/view/com/profile/ProfileFollows.tsx:181
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:157
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:64
+#: src/components/verification/VerificationsDialog.tsx:65
msgid "You are verified"
msgstr ""
@@ -11229,11 +11324,11 @@ msgstr ""
msgid "You can also temporarily deactivate your account instead, and reactivate it at any time."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:247
+#: src/components/contacts/screens/GetContacts.tsx:249
msgid "You can always opt out and delete your data"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:101
+#: src/lib/hooks/useNotificationHandler.ts:104
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
@@ -11241,7 +11336,7 @@ msgstr ""
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
msgctxt "toast"
msgid "You can hide a maximum of {MAX_HIDDEN_REPLIES} replies."
msgstr ""
@@ -11250,7 +11345,7 @@ msgstr ""
msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button."
msgstr ""
-#: src/screens/Login/index.tsx:196
+#: src/screens/Login/index.tsx:197
#: src/screens/Login/PasswordUpdatedForm.tsx:26
msgid "You can now sign in with your new password."
msgstr ""
@@ -11272,9 +11367,9 @@ msgstr ""
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
-#: src/components/interstitials/Trending.tsx:129
+#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:137
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:129
msgid "You can update this later from your settings."
msgstr ""
@@ -11291,7 +11386,7 @@ msgstr ""
msgid "You don't have any chat requests at the moment."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:583
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:586
msgid "You don't have any lists yet."
msgstr ""
@@ -11303,7 +11398,7 @@ msgstr ""
msgid "You don't have any saved feeds."
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:309
+#: src/components/contacts/screens/ViewMatches.tsx:311
msgid "You got here first"
msgstr ""
@@ -11317,7 +11412,7 @@ msgstr ""
msgid "You have blocked this user. You cannot view their content."
msgstr ""
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11471,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr ""
@@ -11425,11 +11528,11 @@ msgstr ""
msgid "You may only add up to 3 feeds"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:322
+#: src/screens/Signup/StepInfo/index.tsx:320
msgid "You must be {0} years of age or older to create an account in your region."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:317
+#: src/screens/Signup/StepInfo/index.tsx:315
msgid "You must be {MIN_ACCESS_AGE} years of age or older to create an account."
msgstr ""
@@ -11437,15 +11540,15 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr ""
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:60
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:61
msgid "You must complete age assurance in order to access this screen."
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:65
+#: src/components/StarterPack/QrCodeDialog.tsx:67
msgid "You must grant access to your photo library to save a QR code"
msgstr ""
@@ -11469,7 +11572,7 @@ msgstr ""
msgid "You reacted {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:220
+#: src/screens/Messages/components/ChatListItem.tsx:221
msgid "You reacted {0} to {1}"
msgstr ""
@@ -11487,11 +11590,11 @@ msgstr ""
msgid "You will no longer receive notifications for {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:231
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:239
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:221
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:229
msgid "You will now receive notifications for this thread"
msgstr ""
@@ -11499,35 +11602,35 @@ msgstr ""
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:156
+#: src/screens/Messages/components/ChatListItem.tsx:157
msgid "You: {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:185
+#: src/screens/Messages/components/ChatListItem.tsx:186
msgid "You: {defaultEmbeddedContentMessage}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:179
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:141
+#: src/screens/Signup/index.tsx:152
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:157
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:244
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:245
msgid "You'll follow these people and {0} others"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:242
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:243
msgid "You'll follow these people right away"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:311
+#: src/components/contacts/screens/GetContacts.tsx:313
msgid "You'll need to go to the System Settings for Bluesky and give permission if you want to use this feature."
msgstr ""
@@ -11535,7 +11638,7 @@ msgstr ""
msgid "You'll start receiving notifications for {0}!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:282
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:283
msgid "You'll stay updated with these feeds"
msgstr ""
@@ -11544,7 +11647,7 @@ msgid "You're in line"
msgstr ""
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -11557,11 +11660,11 @@ msgstr ""
msgid "You've chosen to hide a word or tag within this post."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:310
+#: src/components/contacts/screens/GetContacts.tsx:312
msgid "You've denied access to your contacts"
msgstr ""
-#: src/state/shell/progress-guide.tsx:236
+#: src/state/shell/progress-guide.tsx:237
msgid "You've found some people to follow"
msgstr ""
@@ -11589,11 +11692,11 @@ msgstr ""
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1166
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
-#: src/screens/Signup/index.tsx:179
+#: src/screens/Signup/index.tsx:190
msgid "Your account"
msgstr ""
@@ -11621,7 +11724,7 @@ msgstr ""
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:289
+#: src/screens/Signup/StepInfo/index.tsx:287
msgid "Your birth date"
msgstr ""
@@ -11645,7 +11748,7 @@ msgstr ""
msgid "Your contact {firstAuthorName} is on Bluesky"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:451
+#: src/components/contacts/screens/ViewMatches.tsx:453
msgid "Your contact {name}"
msgstr ""
@@ -11665,8 +11768,8 @@ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:51
#: src/screens/Settings/components/ChangePasswordDialog.tsx:81
-#: src/screens/Signup/state.ts:273
-#: src/screens/Signup/StepInfo/index.tsx:129
+#: src/screens/Signup/state.ts:277
+#: src/screens/Signup/StepInfo/index.tsx:131
msgid "Your email appears to be invalid."
msgstr ""
@@ -11674,11 +11777,11 @@ msgstr ""
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
-#: src/state/shell/progress-guide.tsx:215
+#: src/state/shell/progress-guide.tsx:216
msgid "Your first like!"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:490
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:493
msgid "Your followers"
msgstr ""
@@ -11690,7 +11793,7 @@ msgstr ""
msgid "Your full handle will be <0>@{0}0>"
msgstr ""
-#: src/Navigation.tsx:526
+#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
#: src/screens/Settings/ContentAndMediaSettings.tsx:93
#: src/screens/Settings/ContentAndMediaSettings.tsx:96
@@ -11715,7 +11818,7 @@ msgstr ""
msgid "Your location data is not tracked and does not leave your device."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:367
+#: src/screens/Signup/StepInfo/index.tsx:365
msgid "Your location has been updated."
msgstr ""
@@ -11727,15 +11830,15 @@ msgstr ""
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:158
+#: src/screens/Signup/StepInfo/index.tsx:160
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:574
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,15 +11855,15 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr ""
-#: src/view/com/composer/Composer.tsx:576
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:511
+#: src/components/moderation/ReportDialog/index.tsx:505
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -11768,7 +11871,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:65
+#: src/components/verification/VerificationsDialog.tsx:66
msgid "Your verifications"
msgstr ""
diff --git a/src/locale/locales/km/messages.po b/src/locale/locales/km/messages.po
index b3d1d317d7..43b9a5b010 100644
--- a/src/locale/locales/km/messages.po
+++ b/src/locale/locales/km/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: km\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Khmer\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -83,9 +83,9 @@ msgstr ""
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {អ្នកតាម} other {អ្នកតាម}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {អ្នកកំពុងតាម} other {អ្នកកំពុងតាម}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
@@ -112,15 +116,15 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr ""
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
@@ -432,7 +436,7 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {អ្នកតាម} other {អ្នកតាម}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {អ្នកកំពុងតាម} other {អ្នកកំពុងតាម}}"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "បន្ថែម {0} បន្ថែមទៀតដើម្បីប
msgid "Add {displayName} to starter pack"
msgstr "បន្ថែម {displayName} ទៅកញ្ចប់ចាប់ផ្តើម"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "បន្ថែមការព្រមានអំពីខ្លឹមសារ"
@@ -754,11 +763,11 @@ msgstr "បន្ថែមអត្ថបទជំនួស (ជាជម្រ
msgid "Add another account"
msgstr "បន្ថែមគណនីផ្សេងទៀត"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "បន្ថែមប្រកាសមួយទៀត"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "បន្ថែមពាក្យសម្ងាត់កម្មវិ
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "មនុស្សពេញវ័យ"
@@ -879,10 +888,10 @@ msgstr "មនុស្សពេញវ័យ"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "មាតិកាសម្រាប់មនុស្សពេញវ័យ"
@@ -894,8 +903,8 @@ msgstr "មាតិកាសម្រាប់មនុស្សពេញវ័
msgid "Adult content is disabled."
msgstr "មាតិកាសម្រាប់មនុស្សពេញវ័យត្រូវបានបិទ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "ស្លាកមាតិកាសម្រាប់មនុស្សពេញវ័យ"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr ""
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "បានចូលជា @{0} រួចហើយ"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ជំនួស"
msgid "Alt text"
msgstr "អត្ថបទជំនួស"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "អត្ថបទជំនួស"
@@ -1059,7 +1068,7 @@ msgstr "\"អ៊ីមែលត្រូវបានផ្ញើទ
msgid "An error has occurred"
msgstr "កំហុសមួយបានកើតឡើង"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "កំហុសមួយបានកើតឡើង"
@@ -1067,7 +1076,7 @@ msgstr "កំហុសមួយបានកើតឡើង"
msgid "An error occurred while compressing the video."
msgstr "កំហុសមួយបានកើតឡើងខណៈពេលកំពុងបង្ហាប់វីដេអូ"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងបង្កើតកញ្ចប់ចាប់ផ្តើមរបស់អ្នក។ ចង់សាកល្បងម្តងទៀតទេ?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងផ្ទុកវីដេអូ។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងផ្ទុកវីដេអូ។ សូមព្យាយាមម្តងទៀត"
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "សត្វ"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF ដែលមានចលនា"
@@ -1306,12 +1315,12 @@ msgstr "អនុវត្តមតិព័ត៌មានដែលប
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "បានរក្សាទុកពី {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr ""
@@ -1332,11 +1341,11 @@ msgstr "តើអ្នកប្រាកដទេថាអ្នកចង់ល
msgid "Are you sure you want to discard your changes?"
msgstr "តើអ្នកប្រាកដទេថាអ្នកចង់បោះបង់ការផ្លាស់ប្ដូររបស់អ្នក"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "តើអ្នកប្រាកដថាចង់ចាកចេញពីការសន្ទនានេះទេ? សាររបស់អ្នកនឹងត្រូវបានលុបសម្រាប់អ្នក ប៉ុន្តែមិនមែនសម្រាប់អ្នកចូលរួមផ្សេងទៀតទេ"
@@ -1344,11 +1353,7 @@ msgstr "តើអ្នកប្រាកដថាចង់ចាកចេញព
msgid "Are you sure you want to remove this from your feeds?"
msgstr "តើអ្នកប្រាកដថាចង់លុបវាចេញពីមតិព័ត៌មានរបស់អ្នកមែនទេ"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "តើអ្នកប្រាកដថាអ្នកចង់បោះបង់សេចក្តីព្រាងនេះ"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "តើអ្នកប្រាកដថាចង់បោះបង់ការបង្ហោះនេះទេ?"
@@ -1364,7 +1369,7 @@ msgstr ""
msgid "Art"
msgstr "សិល្បៈ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "អាក្រាតកាយបែបសិល្បៈ ឬមិនស្រើបស្រាល"
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "ចាក់វីដេអូ និង GIFs ដោយស្វ័យប្រវត្តិ"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "ត្រឡប់"
@@ -1578,7 +1585,7 @@ msgstr "ប្លុក"
msgid "Bluesky"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky មិនអាចបញ្ជាក់ពីភាពត្រឹមត្រូវនៃកាលបរិច្ឆេទដែលបានទាមទារនោះទេ"
@@ -1623,7 +1630,7 @@ msgstr ""
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky នឹងជ្រើសរើសសំណុំនៃគណនីដែលបានណែនាំពីមនុស្សនៅក្នុងបណ្តាញរបស់អ្នក"
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "រកមើលព័ត៌មានបន្ថែមនៅលើទំព័ររុករក"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "រកមើលការណែនាំបន្ថែម"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "រកមើលការណែនាំបន្ថែមនៅលើទំព័ររុករក"
@@ -1770,8 +1777,8 @@ msgstr "កាមេរ៉ា"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "កាមេរ៉ា"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "បោះបង់ការស្វែងរក"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "មិនអាចធ្វើអន្តរកម្មជាមួយអ្នកប្រើប្រាស់ដែលត្រូវបានទប់ស្កាត់បានទេ"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "ជជែក"
@@ -1989,7 +1996,7 @@ msgstr "ជ្រើសរើសវិធីសាស្ត្រផ្ទៀង
msgid "Choose Feeds"
msgstr "ជ្រើសរើសមតិព័ត៌មាន"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "ជ្រើសរើសសម្រាប់ខ្ញុំ"
@@ -2096,6 +2103,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr ""
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "បិទប្រអប់ GIF"
msgid "Close image"
msgstr "រូបភាពបិទ"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "បិទកម្មវិធីមើលរូបភាព"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "បិទការជូនដំណឹងអំពីការអាប់ដេតពាក្យសម្ងាត់"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2242,12 +2251,12 @@ msgstr "បញ្ចប់ការបើកដំណើរការ ហើយ
msgid "Complete the challenge"
msgstr "បញ្ចប់ការប្រឈម"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "សរសេរអត្ថបទថ្មី"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2264,11 @@ msgstr ""
msgid "Compose reply"
msgstr "សរសេរការឆ្លើយតប"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "កំពុងបង្ហាប់វីដេអូ..."
@@ -2263,7 +2276,6 @@ msgstr "កំពុងបង្ហាប់វីដេអូ..."
msgid "Configure content filtering setting for category: {name}"
msgstr "កំណត់រចនាសម្ព័ន្ធការកំណត់តម្រងមាតិកាសម្រាប់ប្រភេទ៖ {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "បានកំណត់រចនាសម្ព័ន្ធនៅក្នុង <0>ការកំណត់កម្រិតមធ្យម0>"
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព្វផ្សាយ"
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "ការព្រមានអំពីខ្លឹមសារ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "ការព្រមានអំពីខ្លឹមសារ"
@@ -2401,7 +2413,7 @@ msgstr "ផ្ទាំងខាងក្រោយម៉ឺនុយបរិប
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "បន្ត"
@@ -2420,7 +2432,7 @@ msgstr "បន្តខ្សែ..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "មិនអាចចាកចេញពីការជជែកបានទេ"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "មិនអាចផ្ទុកព័ត៌មានបានទេ"
@@ -2643,8 +2655,8 @@ msgstr "បង្កើតលេខកូដ QR សម្រាប់កញ្
msgid "Create a starter pack"
msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើម"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើមសម្
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "បង្កើតមួយផ្សេងទៀត"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "បង្កើតគណនីថ្មី"
@@ -2772,7 +2784,7 @@ msgstr "ថ្ងៃខែឆ្នាំកំណើត"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "បិទដំណើរការគណនី"
@@ -2871,7 +2883,7 @@ msgstr "លុបសារពីខ្ញុំ"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "លុប post"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "បិទចំណងជើងរង"
@@ -2996,8 +3008,11 @@ msgstr "បានបិទ"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "បោះបង់"
@@ -3006,11 +3021,12 @@ msgstr "បោះបង់"
msgid "Discard changes?"
msgstr "បោះបង់ "
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "បោះបង់ការផ្លាស់ប្តូរ?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "បោះបង់ការបង្ហោះ?"
@@ -3037,7 +3053,7 @@ msgstr "ច្រានចោល"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "ច្រានចោលកំហុស"
@@ -3049,11 +3065,16 @@ msgstr "បោះបង់ការណែនាំអំពីការចាប
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr ""
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr "ចុចពីរដងដើម្បីបិទប្រអប់"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr ""
@@ -3164,6 +3185,13 @@ msgstr ""
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "ទម្លាក់ដើម្បីបន្ថែមរូបភាព"
@@ -3285,13 +3313,13 @@ msgstr "កែសម្រួលការកំណត់អន្តរកម្
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "កែប្រវត្តិរូប"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "កែប្រវត្តិរូប"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "បើកចំណងជើងរង"
@@ -3421,13 +3449,13 @@ msgstr "បើកចំណងជើងរង"
msgid "Enable this source only"
msgstr "បើកដំណើរការប្រភពនេះតែប៉ុណ្ណោះ"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr ""
@@ -3464,7 +3492,7 @@ msgstr "បញ្ចូលពាក្យ ឬស្លាក"
msgid "Enter code"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "បញ្ចូលអេក្រង់ពេញ"
@@ -3501,7 +3529,7 @@ msgstr ""
msgid "Enter your username and password"
msgstr "បញ្ចូលឈ្មោះអ្នកប្រើប្រាស់ និងពាក្យសម្ងាត់របស់អ្នក។"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr ""
@@ -3509,7 +3537,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "កំហុស"
@@ -3570,7 +3598,7 @@ msgstr "មិនរាប់បញ្ចូលអ្នកប្រើប្រ
msgid "Excludes users you follow"
msgstr "មិនរាប់បញ្ចូលអ្នកប្រើប្រាស់ដែលអ្នកតាមដាន"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "ចេញពីអេក្រង់ពេញ"
@@ -3578,11 +3606,7 @@ msgstr "ចេញពីអេក្រង់ពេញ"
msgid "Exits account deletion process"
msgstr "ចាកចេញពីដំណើរការលុបគណនី"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "ចាកចេញពីទិដ្ឋភាពរូបភាព"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "ពង្រីកអត្ថបទជំនួស"
@@ -3598,11 +3622,11 @@ msgstr "ពង្រីក ឬបង្រួមការបង្ហោះព
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "អ្នករំពឹងថានឹងដោះស្រាយកំណត់ត្រាមួយ។"
@@ -3639,7 +3663,7 @@ msgstr "រូបភាពផ្លូវភេទច្បាស់លាស់
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
@@ -3657,8 +3681,8 @@ msgstr "នាំចេញទិន្នន័យរបស់ខ្ញុំ"
msgid "Export My Data"
msgstr "នាំចេញទិន្នន័យរបស់ខ្ញុំ"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "ប្រព័ន្ធផ្សព្វផ្សាយខាងក្រៅ"
@@ -3730,7 +3754,7 @@ msgstr "បរាជ័យក្នុងការលុបការបង្ហ
msgid "Failed to delete starter pack"
msgstr "បរាជ័យក្នុងការលុបកញ្ចប់ចាប់ផ្តើម"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "ព័ត៌មាន"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "ព័ត៌មានដោយ {0}"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "មតិកែលម្អ"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "ព័ត៌មាន"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr "បញ្ចប់"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr ""
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "តាម"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "តាម {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr ""
@@ -4133,7 +4166,7 @@ msgstr "តាមដានគណនី"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "តាមដានគណនី"
msgid "Follow all"
msgstr "តាមដានទាំងអស់គ្នា"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "តាមដានត្រឡប់វិញ"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "អ្នកតាមដែលអ្នកស្គាល់"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "កំពុងតាម"
msgid "Following {0}"
msgstr "កំពុងតាម {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "ធ្វើតាមចំណូលចិត្តមតិព័ត៌មាន"
@@ -4264,7 +4297,7 @@ msgstr "សម្រាប់ហេតុផលសុវត្ថិភាព
msgid "For the best experience, we recommend using the theme font."
msgstr "សម្រាប់បទពិសោធន៍ដ៏ល្អបំផុត យើងសូមណែនាំឱ្យប្រើពុម្ពអក្សរស្បែក"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "ពី <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើម"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "រកជំនួយ"
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr ""
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "ផ្តល់ទម្រង់មុខរបស់អ្នក"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "ត្រឡប់ទៅវិញ"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "ប្រព័ន្ធផ្សព្វផ្សាយក្រាហ្វិក"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "ជំនួយ"
@@ -4632,9 +4670,9 @@ msgstr "បញ្ជីដែលលាក់"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "លាក់បញ្ជីអ្នកប្រើប្រាស់"
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr ""
@@ -4760,9 +4798,9 @@ msgstr "ចាំ! យើងកំពុងផ្តល់សិទ្ធិច
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "ទំព័រដើម"
@@ -4819,7 +4857,7 @@ msgstr "ខ្ញុំយល់"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "ប្រសិនបើអត្ថបទ alt វែង បិទ/បើកស្ថានភាពពង្រីកអត្ថបទ"
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "ប្រសិនបើអ្នកកំពុងព្យាយាមផ្លាស់ប្តូរចំណុចទាញ ឬអ៊ីមែលរបស់អ្នក សូមធ្វើដូច្នេះមុនពេលអ្នកបិទដំណើរការ"
@@ -4996,6 +5034,10 @@ msgstr ""
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "មានតែអ្នកទេឥឡូវនេះ! បន្ថែមមនុស្សបន្ថែមទៀតទៅក្នុងកញ្ចប់ចាប់ផ្តើមរបស់អ្នកដោយស្វែងរកខាងលើ"
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr ""
@@ -5122,20 +5164,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "ដាក់ស្លាកដោយ {0}"
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "ដាក់ស្លាកដោយអ្នកនិពន្ធ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "ស្លាក"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "ស្លាកត្រូវបានបន្ថែម"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "ស្វែងយល់បន្ថែមអំពីការបង្ហោះដោយខ្លួនឯង PDS របស់អ្នក"
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr ""
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "ស្វែងយល់បន្ថែមអំពីការព្រមាននេះ"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "ស្វែងយល់បន្ថែម"
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "ចាកចេញ"
@@ -5286,7 +5328,7 @@ msgstr "ចាកចេញពី Bluesky"
msgid "left to go."
msgstr "ចាកចេញទៅ"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "អនុញ្ញាតឱ្យខ្ញុំជ្រើសរើស"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr ""
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "ចូលចិត្តនៅលើប្រកាសនេះ"
@@ -5474,7 +5516,7 @@ msgstr "បានបិទបញ្ជី"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "បញ្ជី"
@@ -5496,10 +5538,20 @@ msgstr ""
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "ផ្ទុកច្រើនទៀត"
msgid "Load more suggested feeds"
msgstr "ផ្ទុកព័ត៌មានដែលបានណែនាំបន្ថែមទៀត"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "ផ្ទុកការជូនដំណឹងថ្មីៗ"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "និមិត្តសញ្ញាដោយ <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "ធ្វើមួយសម្រាប់ខ្ញុំ"
msgid "Make sure this is where you intend to go!"
msgstr "ត្រូវប្រាកដថានេះជាកន្លែងដែលអ្នកចង់ទៅ"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "គ្រប់គ្រងព័ត៌មានដែលបានរក្សាទុក"
@@ -5638,7 +5690,16 @@ msgstr ""
msgid "Media"
msgstr "ប្រព័ន្ធផ្សព្វផ្សាយ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "ប្រព័ន្ធផ្សព្វផ្សាយដែលអាចរំខាន ឬមិនសមរម្យសម្រាប់ទស្សនិកជនមួយចំនួន"
@@ -5653,7 +5714,7 @@ msgstr "អ្នកប្រើប្រាស់ដែលបានលើកឡ
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr ""
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "ភាពយន្ត"
msgid "Music"
msgstr "តន្ត្រី"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "រុករកទៅអេក្រង់បន្ទាប់"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "រុករកទៅកម្រងព័ត៌មានរបស់អ្នក"
@@ -5983,6 +6049,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
@@ -6018,12 +6085,12 @@ msgstr "សារថ្មី"
msgid "New password"
msgstr "ពាក្យសម្ងាត់ថ្មី"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "post ថ្មី"
@@ -6085,7 +6152,7 @@ msgstr "ព័ត៌មាន"
msgid "Next"
msgstr "បន្ទាប់"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "រូបភាពបន្ទាប់"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "គ្មានបន្ទះ DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6136,7 +6207,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "មិនទាន់មានអ្នកចូលចិត្តទេ"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "លែងតាម {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "មិនទាន់មានសម្រង់ទេ"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "គ្មានលទ្ធផល"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "គ្មានលទ្ធផល"
@@ -6238,7 +6309,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr "រកមិនឃើញលទ្ធផលស្វែងរកសម្រាប់ \"{search}\" ទេ"
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "ទេ អរគុណ"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr ""
msgid "Not Found"
msgstr "រកមិនឃើញ"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "ចំណាំអំពីការចែករំលែក"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "ការកំណត់ការជូនដំណឹង"
@@ -6349,10 +6424,10 @@ msgstr "សំឡេងជូនដំណឹង"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "ការជូនដំណឹង"
@@ -6368,8 +6443,8 @@ msgstr "ឥឡូវនេះ"
msgid "Now"
msgstr "ឥឡូវនេះ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "អាក្រាតកាយ"
@@ -6390,7 +6465,7 @@ msgstr ""
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr ""
@@ -6417,23 +6492,23 @@ msgstr ""
msgid "Onboarding reset"
msgstr "កំណត់ការចូលដំណើរការឡើងវិញ"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "GIFs មួយ ឬច្រើនបាត់អត្ថបទជំនួស"
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "រូបភាពមួយ ឬច្រើនបាត់អត្ថបទជំនួស"
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "វីដេអូមួយ ឬច្រើនបាត់អត្ថបទជំនួស"
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "ឯកសារ WebVTT (.vtt) ងាយស្រួលគាំទ្រ"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr ""
msgid "Open avatar creator"
msgstr "បើកអ្នកបង្កើតរូបតំណាង"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "បើកជម្រើសការសន្ទនា"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "បើកកម្មវិធីជ្រើសរើសរូបអារម្មណ៍"
@@ -6557,7 +6636,7 @@ msgstr ""
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "បើកប្រអប់មួយដើម្បីបន្ថែមការព្រមានអំពីខ្លឹមសារទៅប្រកាសរបស់អ្នក"
@@ -6589,25 +6668,25 @@ msgstr ""
msgid "Opens composer"
msgstr "បើកកម្មវិធីតែង"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "បើកលំហូរដើម្បីបង្កើតគណនី Bluesky ថ្មី"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
@@ -6620,7 +6699,7 @@ msgstr "បើកប្រអប់ជ្រើសរើស GIF"
msgid "Opens helpdesk in browser"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "បើកទម្រង់កំណត់ពាក្យសម្ងា
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "ផ្សេងទៀត។"
@@ -6763,13 +6846,13 @@ msgstr "បានធ្វើបច្ចុប្បន្នភាពពាក
msgid "Password updated!"
msgstr "បានធ្វើបច្ចុប្បន្នភាពពាក្យសម្ងាត់"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "ផ្អាក"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "ផ្អាក video"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "ការថតរូប"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "រូបភាពមានន័យសម្រាប់មនុស្សពេញវ័យ"
@@ -6874,9 +6957,9 @@ msgstr ""
msgid "Pinned to your feeds"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "លេង"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "លេង {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "ចាក់វីដេអូ"
@@ -6893,11 +6976,11 @@ msgstr "ចាក់វីដេអូ"
msgid "Play Video"
msgstr "ចាក់វីដេអូ"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr ""
@@ -6909,7 +6992,7 @@ msgstr "លេង GIF"
msgid "Plays the video"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "នយោបាយ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr ""
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "ការបង្ហោះ"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "ការបង្ហោះ"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Post ទាំងអស់"
@@ -7217,7 +7300,7 @@ msgstr "ចុចដើម្បីមើលអ្នកតាមដានគណ
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "រូបភាពពីមុន"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "គោលការណ៍ឯកជនភាព"
@@ -7266,7 +7349,11 @@ msgstr "គោលការណ៍ឯកជនភាព"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "ដំណើរការវីដេអូ..."
@@ -7280,10 +7367,10 @@ msgstr "កំពុងដំណើរការ..."
msgid "profile"
msgstr "ប្រវត្តិរូប"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "ប្រវត្តិរូប"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr ""
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr ""
@@ -7385,7 +7473,7 @@ msgstr "Quote posts ត្រូវបានបិទ"
msgid "Quotes"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr ""
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr ""
@@ -7720,13 +7808,13 @@ msgstr "ការឆ្លើយតបត្រូវបានបិទ"
msgid "Replies to this post are disabled."
msgstr "ការឆ្លើយតបទៅនឹងការបង្ហោះនេះត្រូវបានបិទ"
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "ឆ្លើយតប"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -7892,7 +7980,7 @@ msgstr "ផ្សាយឡើងវិញដោយអ្នក"
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "ការផ្សាយឡើងវិញនៃប្រកាសនេះ"
@@ -7996,14 +8084,14 @@ msgstr "ព្យាយាមម្តងទៀតនូវសកម្មភា
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "ត្រឡប់ទៅទំព័រមុន"
msgid "Returns to home page"
msgstr "ត្រឡប់ទៅទំព័រដើមវិញ"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "ត្រឡប់ទៅទំព័រមុនវិញ"
@@ -8063,7 +8151,7 @@ msgstr ""
msgid "Save"
msgstr "រក្សាទុក"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "រក្សាទុក"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "រក្សាទុកការផ្លាស់ប្តូរ"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "រក្សាទុកក្នុងព័ត៌មានរបស់ខ្ញុំ"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "រំកិលទៅកំពូល"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "ស្វែងរក"
@@ -8164,7 +8269,7 @@ msgstr "ស្វែងរក"
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr ""
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "ស្វែងរកប្រវត្តិរូប"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,12 +8388,12 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr "មើលការងារនៅ Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "ជ្រើសរើសភាសាដែលអ្នកពេញចិ
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "ផ្ញើអ៊ីមែល"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "ផ្ញើមតិកែលម្អ"
@@ -8566,7 +8671,7 @@ msgstr "កំណត់អ៊ីមែលសម្រាប់កំណត់ព
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "ការកំណត់"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "សកម្មភាពផ្លូវភេទ ឬអាក្រាតកាយផ្លូវភេទ"
@@ -8634,7 +8739,7 @@ msgstr "ចំណង់ផ្លូវភេទ"
msgid "Share"
msgstr "ចែករំលែក"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "ចែករំលែក"
@@ -8712,13 +8817,13 @@ msgstr "ចែករំលែកមតិព័ត៌មានដែលអ្ន
msgid "Shared Preferences Tester"
msgstr "កម្មវិធីសាកល្បងចំណូលចិត្តដែលបានចែករំលែក"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "បង្ហាញ"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "បង្ហាញអត្ថបទជំនួស"
@@ -8820,7 +8925,7 @@ msgstr "បង្ហាញការព្រមាន និងត្រងព
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr ""
@@ -8828,8 +8933,8 @@ msgstr ""
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
@@ -8842,14 +8947,14 @@ msgstr ""
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "តម្រូវឱ្យចូល"
msgid "Signed in as @{0}"
msgstr "ចូលជា @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "គណនីស្រដៀងគ្នា"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "កម្មវិធី Dev"
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "មតិព័ត៌មានផ្សេងទៀតដែលអ្នកប្រហែលជាចូលចិត្ត"
@@ -8994,7 +9095,7 @@ msgstr "មានអ្វីមួយខុសប្រក្រតី"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "មានអ្វីមួយខុសប្រក្រតី សូមព្យាយាមម្តងទៀត"
@@ -9020,7 +9121,7 @@ msgstr ""
msgid "Something wrong? Let us know."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "កញ្ចប់ចាប់ផ្តើម"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "កញ្ចប់ចាប់ផ្តើមអនុញ្ញាតឱ្យអ្នកចែករំលែកព័ត៌មានដែលអ្នកចូលចិត្ត និងមនុស្សយ៉ាងងាយស្រួលជាមួយមិត្តភក្តិរបស់អ្នក"
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "ជាវ @{0} ដើម្បីប្រើស្លាកទាំង
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "ជាវអ្នកដាក់ស្លាក"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "ជាវអ្នកដាក់ស្លាកនេះ"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "បានណែនាំសម្រាប់អ្នក"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "ណែនាំ"
@@ -9354,8 +9459,8 @@ msgstr "លក្ខខណ្ឌ"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "លក្ខខណ្ឌនៃសេវាកម្ម"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "គណនីនឹងអាចធ្វើអន្តរកម្មជាមួយអ្នកបន្ទាប់ពីឈប់ទប់ស្កាត់"
@@ -9447,7 +9552,7 @@ msgstr "មតិព័ត៌មាន Discover"
msgid "The Discover feed now knows what you like"
msgstr "ឥឡូវនេះផ្ទាំងព័ត៌មាន Discover ដឹងពីអ្វីដែលអ្នកចូលចិត្ត"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "បទពិសោធន៍គឺប្រសើរជាងនៅក្នុងកម្មវិធី។ ទាញយក Bluesky ឥឡូវនេះ ហើយយើងនឹងយកមកវិញនូវកន្លែងដែលអ្នកបានចាកចេញ"
@@ -9527,7 +9632,7 @@ msgstr ""
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "មិនមានកំណត់ពេលវេលាសម្រាប់ការបិទគណនីទេ ត្រលប់មកវិញនៅពេលណាក៏បាន"
@@ -9711,6 +9816,10 @@ msgstr "ខ្លឹមសារនេះមិនអាចមើលបានដ
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "មតិព័ត៌មាននេះទទេ! អ្នកប្រហែលជាត្រូវតាមដានអ្នកប្រើប្រាស់បន្ថែមទៀត ឬកែសម្រួលការកំណត់ភាសារបស់អ្នក"
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "មតិព័ត៌មាននេះគឺទទេ"
@@ -9798,7 +9907,7 @@ msgstr ""
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "សេវាកម្មសម្របសម្រួលនេះមិនមានទេ។ សូមមើលខាងក្រោមសម្រាប់ព័ត៌មានលម្អិតបន្ថែម។ ប្រសិនបើបញ្ហានេះនៅតែបន្តកើតមាន សូមទាក់ទងមកយើងខ្ញុំ"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "ប្រកាសនេះអះអាងថាត្រូវបានបង្កើតឡើងនៅលើ <0>{0}0> ប៉ុន្តែត្រូវបានមើលឃើញជាលើកដំបូងដោយ Bluesky នៅលើ <1>{1}1>"
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "ប្រកាសនេះនឹងត្រូវបានលាក់ពីមតិព័ត៌មាន និងខ្សែស្រលាយ។ នេះមិនអាចត្រឡប់វិញបានទេ"
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "អ្នកនិពន្ធនៃប្រកាសនេះបានបិទការបង្ហោះសម្រង់"
@@ -9834,7 +9943,7 @@ msgstr "ការឆ្លើយតបនេះនឹងត្រូ
msgid "This service has not provided terms of service or a privacy policy."
msgstr "សេវាកម្មនេះមិនបានផ្តល់លក្ខខណ្ឌនៃសេវាកម្ម ឬគោលការណ៍ឯកជនភាពទេ"
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "វានឹងលុបការបង្ហោះរបស់អ្ន
msgid "Thread options"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "ចំណូលចិត្តខ្សែស្រឡាយ"
@@ -9951,7 +10060,7 @@ msgstr "ថ្ងៃនេះ"
msgid "Toggle to enable or disable adult content"
msgstr "បិទ/បើក ដើម្បីបើក ឬបិទមាតិកាសម្រាប់មនុស្សពេញវ័យ"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr ""
@@ -9988,8 +10097,8 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "បកប្រែ"
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "ឈប់ទប់ស្កាត់"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "ឈប់ទប់ស្កាត់"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "បិទគណនី"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "បិទគណនី?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "បោះបង់ការបង្ហោះឡើងវិញ"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "ឈប់តាម {0}"
@@ -10151,7 +10264,7 @@ msgstr "ឈប់តាម {0}"
msgid "Unfollow account"
msgstr "ឈប់តាមដានគណនី"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr ""
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr ""
msgid "Unmute thread"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr ""
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "ឈប់ជាវ"
@@ -10285,7 +10398,7 @@ msgstr "ឈប់ជាវ"
msgid "Unsubscribe from list"
msgstr "ឈប់ជាវពីបញ្ជី"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "ឈប់ជាវពីអ្នកដាក់ស្លាកនេះ"
@@ -10293,7 +10406,7 @@ msgstr "ឈប់ជាវពីអ្នកដាក់ស្លាកនេះ
msgid "Unsubscribed from list"
msgstr "ឈប់ជាវពីបញ្ជី"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "បង្ហោះពីឯកសារ"
msgid "Upload from Library"
msgstr "បង្ហោះពីបណ្ណាល័យ"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "កំពុងបង្ហោះរូបភាព..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "កំពុងបង្ហោះរូបភាពតូចនៃតំណ..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "កំពុងបង្ហោះវីដេអូ..."
@@ -10389,8 +10506,8 @@ msgstr "ប្រើអ្នកផ្តល់សេវាលំនាំដើ
msgid "Use in-app browser"
msgstr "ប្រើកម្មវិធីរុករកតាមអ៊ីនធឺណិត"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "ប្រើកម្មវិធីរុករកតាមអ៊ីនធឺណិតក្នុងកម្មវិធីដើម្បីបើកតំណ"
@@ -10445,6 +10562,10 @@ msgstr "អ្នកប្រើប្រាស់រារាំងអ្នក
msgid "User list by {0}"
msgstr "បញ្ជីអ្នកប្រើប្រាស់ដោយ {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "បញ្ជីអ្នកប្រើប្រាស់ដោយអ្នក"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "វីដេអូ"
@@ -10614,20 +10735,24 @@ msgstr ""
msgid "Video from {0}: {text}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "វីដេអូហ្គេម"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "រកមិនឃើញវីដេអូ"
@@ -10635,11 +10760,11 @@ msgstr "រកមិនឃើញវីដេអូ"
msgid "Video settings"
msgstr "ការកំណត់វីដេអូ"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "បង្ហោះវីដេអូ"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "វីដេអូ៖ {0}"
@@ -10647,23 +10772,23 @@ msgstr "វីដេអូ៖ {0}"
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "មើលរូបតំណាងរបស់ {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "មើលប្រវត្តិរូបរបស់ {0}"
@@ -10708,7 +10833,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "យើងកំពុងមានបញ្ហាបណ្តាញ សូមព្យាយាមម្តងទៀត"
@@ -10968,7 +11093,7 @@ msgstr "យើងសុំទោស ប៉ុន្តែយើងមិនអ
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "យើងសុំទោស ប៉ុន្តែការស្វែងរករបស់អ្នកមិនអាចបញ្ចប់បានទេ។ សូមព្យាយាមម្តងទៀតក្នុងរយៈពេលពីរបីនាទីទៀត"
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "យើងសុំទោស! ប្រកាសដែលអ្នកកំពុងឆ្លើយតបត្រូវបានលុប"
@@ -10977,7 +11102,7 @@ msgstr "យើងសុំទោស! ប្រកាសដែលអ្នកក
msgid "We're sorry! We can't find the page you were looking for."
msgstr "យើងសុំទោស! យើងមិនអាចស្វែងរកទំព័រដែលអ្នកកំពុងស្វែងរកបានទេ"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "យើងសុំទោស! អ្នកអាចជាវបានតែអ្នកដាក់ស្លាកម្ភៃប៉ុណ្ណោះ ហើយអ្នកបានដល់ចំនួនកំណត់របស់អ្នកម្ភៃហើយ"
@@ -11018,10 +11143,9 @@ msgstr "តើអ្នកចាប់អារម្មណ៍អ្វី?"
msgid "What do you want to call your starter pack?"
msgstr "តើអ្នកចង់ហៅកញ្ចប់ចាប់ផ្តើមរបស់អ្នកថាម៉េច?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "មានរឿងអី?"
@@ -11097,6 +11221,14 @@ msgstr "ហេតុអ្វីបានជាអ្នកប្រើប្រ
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "សរសេរសារ"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "សរសេរសារបង្ហោះ"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "សរសេរការឆ្លើយតបរបស់អ្នក"
@@ -11133,8 +11265,8 @@ msgstr ""
msgid "Yes"
msgstr "បាទ"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "បាទ បិទដំណើរការ"
@@ -11188,7 +11320,7 @@ msgstr "អ្នកស្ថិតនៅក្នុងជួរ"
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11200,7 +11332,7 @@ msgstr "អ្នកមិនត្រូវបានអនុញ្ញាតឱ
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "ឥឡូវនេះ អ្នកអាចចូលដោយប្រើពាក្យសម្ងាត់ថ្មីរបស់អ្នក"
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "អ្នកអាចដំណើរការគណនីរបស់អ្នកឡើងវិញ ដើម្បីបន្តចូល។ ប្រវត្តិរូប និងការបង្ហោះរបស់អ្នកនឹងអាចមើលឃើញដោយអ្នកប្រើប្រាស់ផ្សេងទៀត"
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "អ្នកបានទប់ស្កាត់អ្នកប្រើ
msgid "You have blocked this user. You cannot view their content."
msgstr "អ្នកបានរារាំងអ្នកប្រើប្រាស់នេះ។ អ្នកមិនអាចមើលមាតិការបស់ពួកគេបានទេ"
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "អ្នកបានឈានដល់ដែនកំណត់បណ្តោះអាសន្នសម្រាប់ការបង្ហោះវីដេអូ។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ"
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "អ្នកមិនទាន់បានបង្កើតកញ្ចប់ចាប់ផ្តើមនៅឡើយទេ"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "អ្នកត្រូវតែតាមយ៉ាងហោចណាស់ប្រាំពីរនាក់ផ្សេងទៀតដើម្បីបង្កើតកញ្ចប់ចាប់ផ្ដើម"
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "អ្នកត្រូវតែផ្តល់សិទ្ធិចូលប្រើបណ្ណាល័យរូបថតរបស់អ្នក ដើម្បីរក្សាទុកកូដ QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "អ្នកស្ថិតនៅក្នុងជួរ"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -11589,7 +11729,7 @@ msgstr "អ្នកបានឈានដល់ដែនកំណត់ប្រ
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "អ្នកបានឈានដល់ដែនកំណត់ប្រចាំថ្ងៃរបស់អ្នកសម្រាប់ការបង្ហោះវីដេអូ (វីដេអូច្រើនពេក)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
@@ -11625,7 +11765,7 @@ msgstr ""
msgid "Your birth date"
msgstr "ថ្ងៃខែឆ្នាំកំណើតរបស់អ្នក"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "កម្មវិធីរុករកតាមអ៊ីនធឺណិតរបស់អ្នកមិនគាំទ្រទ្រង់ទ្រាយវីដេអូទេ។ សូមសាកល្បងកម្មវិធីរុករកផ្សេង"
@@ -11692,8 +11832,8 @@ msgstr "ចំណុចទាញពេញលេញរបស់អ្នកនឹ
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr ""
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "ប្រវត្តិរូប ការបង្ហោះ មតិព័ត៌មាន និងបញ្ជីរបស់អ្នកនឹងលែងអាចមើលឃើញដោយអ្នកប្រើប្រាស់ Bluesky ផ្សេងទៀត។ អ្នកអាចដំណើរការគណនីរបស់អ្នកឡើងវិញបានគ្រប់ពេលដោយការចូល"
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po
index 94c592d2e4..780e4ac049 100644
--- a/src/locale/locales/ko/messages.po
+++ b/src/locale/locales/ko/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ko\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, other {# 재게시}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, other {#초}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "읽지 않은 항목 {0, plural, other {#개}}"
@@ -94,6 +94,10 @@ msgstr "읽지 않은 항목 {0, plural, other {#개}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, other {#개월}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, other {추가 #개 게시물}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, other {팔로워}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, other {팔로우 중}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, other {좋아요}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, other {좋아요}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, other {게시물}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, other {인용}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, other {재게시}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, other {저장}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{1} · {0}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (계정)"
@@ -189,11 +193,11 @@ msgstr "{0} 님이 {1}(으)로 반응함"
msgid "{0} reacted {1} to {2}"
msgstr "{0} 님이 {2}에 {1}(으)로 반응함"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{1} 님의 리스트 {0}, {2}명이 좋아요 표시함"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{1} 님의 리스트 {0}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {#명}}의 사용자가 가입했습
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, other {#분}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "읽지 않은 항목 {notificationCount, plural, other {#개}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1} 1>외 {2, plural, other {#개}}가 스타터 팩에 포함됩니다"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, other {팔로워}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, other {팔로우 중}}"
@@ -580,6 +584,11 @@ msgstr "공유 버튼 옆에 게시물을 북마크에 저장할 수 있는 새
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "팔로우 버튼 옆에 새 활동 알림 기능을 나타내는 종 모양 아이콘이 있는 프로필 페이지 스크린샷"
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "계속하려면 {0}명 더 추가하기"
msgid "Add {displayName} to starter pack"
msgstr "스타터 팩에 {displayName} 추가"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "콘텐츠 경고 추가"
@@ -754,11 +763,11 @@ msgstr "대체 텍스트 추가 (선택 사항)"
msgid "Add another account"
msgstr "다른 계정 추가"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "다른 게시물 추가하기"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "스레드에 다른 게시물 추가"
@@ -776,12 +785,12 @@ msgstr "앱 비밀번호 추가"
msgid "Add emoji reaction"
msgstr "이모티콘 반응 추가"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "이미지 추가"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "게시물에 미디어 추가"
@@ -871,7 +880,7 @@ msgstr "추가 세부 정보 (1000자 이내)"
msgid "Additional details (limit 300 characters)"
msgstr "추가 세부 정보 (300자 이내)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "성인물"
@@ -879,10 +888,10 @@ msgstr "성인물"
msgid "Adult content"
msgstr "성인 콘텐츠"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "성인 콘텐츠"
@@ -894,8 +903,8 @@ msgstr "성인 콘텐츠는 <0>bsky.app0>에서 웹을 통해서만 활성화
msgid "Adult content is disabled."
msgstr "성인 콘텐츠가 비활성화되어 있습니다."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "성인 콘텐츠 라벨"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "모두"
@@ -1017,7 +1026,7 @@ msgstr "이미 계정이 있나요?"
msgid "Already signed in as @{0}"
msgstr "이미 @{0}(으)로 로그인했습니다"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "대체 텍스트"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "대체 텍스트"
@@ -1059,7 +1068,7 @@ msgstr "{0}(으)로 이메일을 보냈습니다. 이 이메일에는 아래에
msgid "An error has occurred"
msgstr "오류 발생"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "오류 발생"
@@ -1067,7 +1076,7 @@ msgstr "오류 발생"
msgid "An error occurred while compressing the video."
msgstr "동영상을 압축하는 동안 오류가 발생했습니다."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "추천 계정을 가져오는 동안 오류가 발생했습니다."
@@ -1076,7 +1085,7 @@ msgstr "추천 계정을 가져오는 동안 오류가 발생했습니다."
msgid "An error occurred while fetching the feed."
msgstr "피드를 가져오는 동안 오류가 발생했습니다."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "스타터 팩을 만드는 동안 오류가 발생했습니다. 다시 시도하시겠습니까?"
@@ -1088,7 +1097,7 @@ msgstr "추천을 숨기는 동안 오류가 발생했습니다. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "동영상을 불러오는 동안 오류가 발생했습니다. 나중에 다시 시도해 주세요."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "동영상을 불러오는 동안 오류가 발생했습니다. 다시 시도해 주세요."
@@ -1181,7 +1190,7 @@ msgstr "동물 보호"
msgid "Animals"
msgstr "동물"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "움직이는 GIF"
@@ -1306,12 +1315,12 @@ msgstr "기본 추천 피드 적용하기"
msgid "Apply Pull Request"
msgstr "풀 리퀘스트 적용"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "{0}에 보관됨"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "보관된 게시물"
@@ -1332,11 +1341,11 @@ msgstr "이 스타터 팩을 삭제하시겠습니까?"
msgid "Are you sure you want to discard your changes?"
msgstr "변경 사항을 삭제하시겠습니까?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "이 대화에서 나가시겠습니까?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "정말 이 대화에서 나가시겠습니까? 나에게 보이는 메시지는 삭제되지만 상대방에게는 삭제되지 않습니다."
@@ -1344,11 +1353,7 @@ msgstr "정말 이 대화에서 나가시겠습니까? 나에게 보이는 메
msgid "Are you sure you want to remove this from your feeds?"
msgstr "내 피드에서 이 피드를 삭제하시겠습니까?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "이 초안을 삭제하시겠습니까?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "이 게시물을 삭제하시겠습니까?"
@@ -1364,7 +1369,7 @@ msgstr "<0>{suggestedLanguageName}0>(으)로 쓰고 있나요?"
msgid "Art"
msgstr "예술"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "선정적이지 않거나 예술적인 나체."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "오로라"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "동영상 및 GIF 자동 재생"
@@ -1404,11 +1409,13 @@ msgstr "사용 가능"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "뒤로"
@@ -1578,7 +1585,7 @@ msgstr "블로그"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky는 해당 날짜의 진위를 확인할 수 없습니다."
@@ -1623,7 +1630,7 @@ msgstr "Bluesky Social 서비스 이용약관"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Bluesky는 연락처를 인코딩된 데이터로 저장합니다. 연락처를 제거하면 이 데이터는 즉시 삭제됩니다."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky가 네트워크에 있는 사용자 중에서 임의로 추천 계정 세트를 선택합니다."
@@ -1664,20 +1671,20 @@ msgstr "사이트 규칙 위반"
msgid "Browse custom feeds"
msgstr "맞춤 피드 찾아보기"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "더 많은 계정 찾아보기"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "탐색 페이지에서 더 많은 피드 찾아보기"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "더 많은 추천 찾아보기"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "탐색 페이지에서 더 많은 추천 찾아보기"
@@ -1770,8 +1777,8 @@ msgstr "카메라"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "카메라"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "검색 취소"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "차단된 사용자와 상호작용할 수 없습니다"
@@ -1901,9 +1908,9 @@ msgstr "변경 사항을 저장했습니다"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "대화"
@@ -1989,7 +1996,7 @@ msgstr "도메인 인증 방법 선택"
msgid "Choose Feeds"
msgstr "피드 선택"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "임의로 선택하기"
@@ -2096,6 +2103,7 @@ msgstr "다그닥 🐴 다그닥 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "다그닥 🐴 다그닥 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,7 +2176,8 @@ msgstr "GIF 대화 상자 닫기"
msgid "Close image"
msgstr "이미지 닫기"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr "이미지 뷰어 닫기"
@@ -2190,7 +2199,7 @@ msgstr "환영 대화 상자 닫기"
msgid "Closes password update alert"
msgstr "비밀번호 변경 알림을 닫습니다"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "게시물 작성기를 닫고 게시물 초안을 삭제합니다"
@@ -2242,12 +2251,12 @@ msgstr "온보딩 완료 후 계정 사용 시작"
msgid "Complete the challenge"
msgstr "챌린지 완료하기"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "새 게시물 작성하기"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "게시물을 최대 {0, plural, other {#자}}까지 작성할 수 있습니다"
@@ -2255,7 +2264,11 @@ msgstr "게시물을 최대 {0, plural, other {#자}}까지 작성할 수 있습
msgid "Compose reply"
msgstr "답글 작성하기"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "동영상 압축 중…"
@@ -2263,7 +2276,6 @@ msgstr "동영상 압축 중…"
msgid "Configure content filtering setting for category: {name}"
msgstr "{name} 카테고리에 대한 콘텐츠 필터링 설정을 구성합니다."
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "라이브 이벤트 배너 설정"
@@ -2272,8 +2284,8 @@ msgstr "라이브 이벤트 배너 설정"
msgid "Configured in <0>moderation settings0>."
msgstr "<0>검토 설정0>에서 설정합니다."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "연락처 가져오기 완료"
msgid "Contacts removed"
msgstr "연락처를 제거했습니다"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "콘텐츠 및 미디어"
@@ -2389,7 +2401,7 @@ msgstr "자해를 조장하거나 묘사하는 콘텐츠"
msgid "Content Warning"
msgstr "콘텐츠 경고"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "콘텐츠 경고"
@@ -2401,7 +2413,7 @@ msgstr "컨텍스트 메뉴 배경을 클릭하여 메뉴를 닫습니다."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "계속"
@@ -2420,7 +2432,7 @@ msgstr "스레드 더 보기…"
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "모든 사용자를 팔로우할 수 없습니다. {0}"
msgid "Could not leave chat"
msgstr "대화에서 나갈 수 없습니다"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "피드를 불러올 수 없습니다"
@@ -2643,8 +2655,8 @@ msgstr "스타터 팩 QR 코드 만들기"
msgid "Create a starter pack"
msgstr "스타터 팩 만들기"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "스타터 팩 만들기"
@@ -2654,12 +2666,12 @@ msgstr "나를 위한 스타터 팩 만들기"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "다른 스타터 팩 만들기"
msgid "Create moderation list"
msgstr "검토 리스트 만들기"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "새 계정 만들기"
@@ -2772,7 +2784,7 @@ msgstr "생년월일"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "계정 비활성화"
@@ -2871,7 +2883,7 @@ msgstr "내 계정 삭제"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "게시물 삭제"
@@ -2981,7 +2993,7 @@ msgstr "이 게시물의 인용 게시물을 비활성화"
msgid "Disable replies entirely"
msgstr "답글을 완전히 비활성화"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "자막 사용 안 함"
@@ -2996,8 +3008,11 @@ msgstr "사용 안 함"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "삭제"
@@ -3006,11 +3021,12 @@ msgstr "삭제"
msgid "Discard changes?"
msgstr "변경 사항 삭제"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
-msgstr "초안 삭제"
+msgstr "임시 저장을 삭제하시겠습니까?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "게시물 삭제"
@@ -3037,7 +3053,7 @@ msgstr "닫기"
msgid "Dismiss banner"
msgstr "배너 닫기"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "오류 무시"
@@ -3049,11 +3065,16 @@ msgstr "시작하기 가이드 닫기"
msgid "Dismiss interests"
msgstr "관심 주제 닫기"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "라이브 이벤트 배너 닫기"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "이 부분 닫기"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "이 추천 닫기"
@@ -3121,8 +3142,8 @@ msgstr "걱정 마세요! 모든 기존 메시지와 설정은 저장되며 성
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "메시지를 두 번 탭하거나 길게 눌러서 반응을 추가합
msgid "Double tap to close the dialog"
msgstr "두 번 탭하여 대화 상자를 닫습니다"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "두 번 탭하여 좋아요 표시합니다"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Bluesky 다운로드"
@@ -3164,6 +3185,13 @@ msgstr "CAR 파일 다운로드"
msgid "Doxxing"
msgstr "신상 털기"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "임시 저장"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "드롭하여 이미지 추가"
@@ -3285,13 +3313,13 @@ msgstr "게시물 상호작용 설정 편집하기"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "프로필 편집"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "프로필 편집"
@@ -3413,7 +3441,7 @@ msgstr "푸시 알림 사용"
msgid "Enable quote posts of this post"
msgstr "이 게시물의 인용 게시물을 활성화"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "자막 사용"
@@ -3421,13 +3449,13 @@ msgstr "자막 사용"
msgid "Enable this source only"
msgstr "이 소스에서만 사용"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "인기 주제 사용"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Discover 피드에서 인기 동영상 사용"
@@ -3464,7 +3492,7 @@ msgstr "단어 또는 태그 입력"
msgid "Enter code"
msgstr "코드 입력"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "전체화면으로 보기"
@@ -3501,7 +3529,7 @@ msgstr "비밀번호를 입력합니다"
msgid "Enter your username and password"
msgstr "사용자 이름 및 비밀번호 입력"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "전체화면으로 봅니다"
@@ -3509,7 +3537,7 @@ msgstr "전체화면으로 봅니다"
msgid "Entertainment"
msgstr "엔터테인먼트"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "오류"
@@ -3570,7 +3598,7 @@ msgstr "내가 팔로우하는 사용자 제외하기"
msgid "Excludes users you follow"
msgstr "내가 팔로우하는 사용자 제외"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "전체화면 나가기"
@@ -3578,11 +3606,7 @@ msgstr "전체화면 나가기"
msgid "Exits account deletion process"
msgstr "계정 삭제 절차를 종료합니다"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "이미지 보기를 종료합니다"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "대체 텍스트 확장"
@@ -3598,11 +3622,11 @@ msgstr "답글을 달고 있는 전체 게시물을 펼치거나 접습니다"
msgid "Expand post text"
msgstr "게시물 텍스트 확장"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "게시물 텍스트를 펼치거나 접습니다"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "레코드로 확인될 것으로 예상되는 URI"
@@ -3639,7 +3663,7 @@ msgstr "노골적인 성적 이미지."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "탐색"
@@ -3657,8 +3681,8 @@ msgstr "내 데이터 내보내기"
msgid "Export My Data"
msgstr "내 데이터 내보내기"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "외부 미디어"
@@ -3730,7 +3754,7 @@ msgstr "게시물을 삭제하지 못했습니다. 다시 시도해 주세요"
msgid "Failed to delete starter pack"
msgstr "스타터 팩을 삭제하지 못했습니다"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "모든 추천 계정을 팔로우하지 못했습니다. 다시 시도해 주세요"
@@ -3829,6 +3853,10 @@ msgstr "인증을 취소하지 못했습니다"
msgid "Failed to resolve location. Please try again."
msgstr "위치를 확인하지 못했습니다. 다시 시도해 주세요."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "임시 저장하지 못했습니다"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "피드"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "{0} 님의 피드"
@@ -3941,7 +3970,7 @@ msgstr "사용할 수 없는 피드"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "피드백"
@@ -3958,7 +3987,7 @@ msgstr "피드 운영자에게 피드백을 전송했습니다"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "피드"
@@ -4008,6 +4037,10 @@ msgstr "알림 수신 대상 필터링"
msgid "Finalizing"
msgstr "마무리 중"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "드디어! 중요한 게시물을 놓치지 마세요. 저장해 두었다가 원할 때 언제든지 다시 확인할 수 있습니다."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "내 친구 찾기"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "팔로우할 사용자 찾아보기"
@@ -4098,19 +4131,19 @@ msgstr "코드 입력란에 포커싱하기"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "팔로우"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "{0} 님을 팔로우"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "{handle} 님을 팔로우"
@@ -4133,7 +4166,7 @@ msgstr "계정 팔로우"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "계정 팔로우"
msgid "Follow all"
msgstr "모두 팔로우"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "모든 계정을 팔로우"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "맞팔로우"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "모든 계정을 팔로우했습니다!"
@@ -4195,8 +4228,8 @@ msgstr "내가 아는 팔로워"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "팔로우 중"
msgid "Following {0}"
msgstr "{0} 님을 팔로우했습니다"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "{handle} 님을 팔로우 중"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "팔로우 중 피드 설정"
@@ -4264,7 +4297,7 @@ msgstr "보안상의 이유로 이 비밀번호는 다시 볼 수 없습니다.
msgid "For the best experience, we recommend using the theme font."
msgstr "최상의 경험을 위해 테마 글꼴을 사용하는 것을 추천합니다."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "추천"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "<0/>에서"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "스타터 팩 만들기"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "도움말"
@@ -4376,10 +4409,15 @@ msgstr "다른 사용자가 게시물을 올릴 때 알림 받기"
msgid "Get started"
msgstr "시작하기"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "프로필에 얼굴 달기"
@@ -4394,12 +4432,12 @@ msgstr "폭력 미화"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "뒤로"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "현재 내 계정에서 라이브 시작 기능이 비활성화되어
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "불쾌감을 주는 미디어"
@@ -4592,7 +4630,7 @@ msgstr "Bluesky에서는 악용 방지를 위해 7일간 보관 후 삭제됩니
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "도움말"
@@ -4632,9 +4670,9 @@ msgstr "숨겨진 리스트"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "사용자 리스트 숨기기"
msgid "Hide verification badges"
msgstr "인증 배지 숨기기"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "콘텐츠를 숨깁니다"
@@ -4760,9 +4798,9 @@ msgstr "잠깐! 동영상에 대한 접근 권한이 점차적으로 제공되
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "홈"
@@ -4819,7 +4857,7 @@ msgstr "확인"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "저는 블루스카이에서 {0}(으)로 활동하고 있어요. 와서 저를 찾아보세요! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "대체 텍스트가 긴 경우 대체 텍스트 확장 상태를 전환합니다"
@@ -4872,7 +4910,7 @@ msgstr "내 계정의 활동에 대한 알림을 받을 수 있는 사용자를
msgid "If you're a developer, you can host your own server."
msgstr "개발자라면 직접 서버를 호스팅할 수 있습니다."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "핸들이나 이메일을 변경하려는 경우 비활성화하기 전에 변경하세요."
@@ -4996,6 +5034,10 @@ msgstr "상호작용 설정"
msgid "Introducing activity notifications"
msgstr "활동 알림 소개"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "연락처를 통한 친구 찾기 기능 소개"
@@ -5089,7 +5131,7 @@ msgstr "지금은 <0>{0}0>밖에 없습니다! 위에서 검색하여 스타
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "아직은 나밖에 없습니다! 위에서 검색하여 스타터 팩에 더 많은 사용자를 추가해 보세요."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "작업 ID: {0}"
@@ -5122,20 +5164,20 @@ msgstr "최신 소식 받기"
msgid "KWS website"
msgstr "KWS 웹사이트"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "{0}(이)가 라벨 지정함."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "작성자가 라벨 지정함."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "라벨"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "라벨 추가됨"
@@ -5218,8 +5260,8 @@ msgstr "연락처 가져오기에 대해 더 알아보기 (영어)"
msgid "Learn more about self hosting your PDS."
msgstr "PDS 셀프 호스팅에 대해 자세히 알아보세요."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "이 콘텐츠에 적용된 검토 설정에 대해 자세히 알아보세요"
@@ -5231,7 +5273,7 @@ msgstr "이 변경 사항에 대한 자세한 내용과 의견 제출 방법은
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "이 변경 사항에 대한 자세한 내용과 의견 제출 방법은 이 블로그 게시물에서 확인할 수 있습니다."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "이 경고에 대해 더 알아보기"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "<0>계정 설정0>에서 자세히 알아보세요."
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "더 알아보기"
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "나가기"
@@ -5286,7 +5328,7 @@ msgstr "Bluesky 떠나기"
msgid "left to go."
msgstr "명 남았습니다."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "직접 선택하기"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "좋아요"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "좋아요 ({0, plural, other {#개}})"
@@ -5380,7 +5422,7 @@ msgstr "내 재게시물의 좋아요"
msgid "Likes of your reposts notifications"
msgstr "내 재게시물의 좋아요 알림"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "이 게시물을 좋아요 표시합니다"
@@ -5474,7 +5516,7 @@ msgstr "리스트를 언뮤트했습니다"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "리스트"
@@ -5496,10 +5538,20 @@ msgstr "라이브"
msgid "Live event happening now: {0}"
msgstr "라이브 이벤트 진행 중: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "라이브 이벤트를 숨겼습니다"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "라이브 이벤트 옵션"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "라이브 이벤트를 숨김 해제했습니다"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "라이브 이벤트는 흥미로운 일이 일어날 때 가끔 나타납니다. 원한다면 이 특정 이벤트를 숨기거나 앱 인터페이스의 이 위치에 표시되는 모든 이벤트를 숨길 수 있습니다."
@@ -5524,11 +5576,11 @@ msgstr "더 불러오기"
msgid "Load more suggested feeds"
msgstr "추천 피드 더 불러오기"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "새 알림 불러오기"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "@sawaratsuki.bsky.social 님의 로고"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "<0>@sawaratsuki.bsky.social0> 님의 로고"
@@ -5600,8 +5652,8 @@ msgstr "나를 위해 만들기"
msgid "Make sure this is where you intend to go!"
msgstr "이곳이 당신이 가고자 하는 곳인지 확인하세요!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "저장된 피드 관리"
@@ -5638,7 +5690,16 @@ msgstr "나중에 하기"
msgid "Media"
msgstr "미디어"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "{0}에 저장된 미디어"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "다른 기기에 저장된 미디어"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "일부 사용자에게 불쾌감을 주거나 부적절할 수 있는 미디어."
@@ -5653,7 +5714,7 @@ msgstr "멘션한 사용자"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "멘션"
@@ -5716,6 +5777,10 @@ msgstr "기타 알림"
msgid "Misleading"
msgstr "오해 소지"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "미디어 찾을 수 없음"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "다른 언어…"
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "영화"
msgid "Music"
msgstr "음악"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "스타터 팩으로 이동하기"
msgid "Navigates to the next screen"
msgstr "다음 화면으로 이동합니다"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "내 프로필로 이동합니다"
@@ -5983,6 +6049,7 @@ msgstr "새 이메일 주소"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "새로운 기능"
@@ -6018,12 +6085,12 @@ msgstr "새 메시지"
msgid "New password"
msgstr "새 비밀번호"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "새 게시물"
@@ -6085,7 +6152,7 @@ msgstr "뉴스"
msgid "Next"
msgstr "다음"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "다음 이미지"
@@ -6114,6 +6181,10 @@ msgstr "아직 피드가 없습니다"
msgid "No DNS Panel"
msgstr "DNS 패널 없음"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "아직 임시 저장이 없습니다"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "종료 시간 미정"
@@ -6136,7 +6207,7 @@ msgstr "이미지 없음"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "아직 좋아요 없음"
@@ -6150,7 +6221,7 @@ msgstr "리스트가 없습니다"
msgid "No longer following {0}"
msgstr "{0} 님을 언팔로우했습니다"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "아직 미디어가 없습니다"
@@ -6195,7 +6266,7 @@ msgstr "아직 게시물이 없습니다"
msgid "No quotes yet"
msgstr "아직 인용 없음"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "아직 답글이 없습니다"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "결과 없음"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "결과 없음"
@@ -6238,7 +6309,7 @@ msgstr "결과가 없습니다."
msgid "No search results found for \"{search}\"."
msgstr "‘{search}’에 대한 검색 결과를 찾을 수 없습니다."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "아직 스타터 팩이 없습니다"
@@ -6247,7 +6318,7 @@ msgstr "아직 스타터 팩이 없습니다"
msgid "No thanks"
msgstr "사용하지 않음"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "아직 동영상 게시물이 없습니다"
@@ -6298,6 +6369,10 @@ msgstr "내가 팔로우하는 사용자가 팔로우하지 않음"
msgid "Not Found"
msgstr "찾을 수 없음"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "공유 관련 참고 사항"
@@ -6321,7 +6396,7 @@ msgstr "아직 저장된 게시물이 없습니다"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "알림 설정"
@@ -6349,10 +6424,10 @@ msgstr "알림음"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "알림"
@@ -6368,8 +6443,8 @@ msgstr "지금"
msgid "Now"
msgstr "지금"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "나체"
@@ -6390,7 +6465,7 @@ msgstr "이런!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "확인"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "확인"
@@ -6417,23 +6492,23 @@ msgstr "<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "온보딩 재설정"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "하나 이상의 GIF에 대체 텍스트가 누락되었습니다."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "하나 이상의 이미지에 대체 텍스트가 누락되었습니다."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "선택한 파일 중 지원되지 않는 파일이 있습니다."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "선택한 파일 중 크기가 너무 큰 파일이 있습니다. 최대 크기는 100MB입니다."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "하나 이상의 동영상에 대체 텍스트가 누락되었습니다."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "문제가 발생했습니다!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "이런!"
msgid "Open avatar creator"
msgstr "아바타 생성기 열기"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "카메라 열기"
@@ -6485,12 +6560,16 @@ msgstr "카메라 열기"
msgid "Open conversation options"
msgstr "대화 옵션 열기"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "임시 저장 열기"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "서랍 메뉴 열기"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "이모티콘 선택기 열기"
@@ -6557,7 +6636,7 @@ msgstr "시스템 로그 열기"
msgid "Opens {0} feed"
msgstr "{0} 피드를 엽니다"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "게시물에 콘텐츠 경고를 추가하는 대화 상자를 엽니다"
@@ -6589,25 +6668,25 @@ msgstr "핸들 변경 대화 상자를 엽니다"
msgid "Opens composer"
msgstr "답글 작성 상자를 엽니다"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "기기 카메라를 엽니다"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "기기 갤러리를 열어 이미지를 최대 {MAX_IMAGES, plural, other {#개}}까지 또는 동영상, GIF를 1개 선택합니다."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "이모티콘 선택기를 엽니다"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "새 Bluesky 계정을 만드는 화면을 엽니다"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "존재하는 Bluesky 계정에 로그인하는 화면을 엽니다"
@@ -6620,7 +6699,7 @@ msgstr "GIF 선택 대화 상자를 엽니다"
msgid "Opens helpdesk in browser"
msgstr "브라우저에서 지원 문서를 엽니다"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "이미지 선택기를 엽니다"
@@ -6640,10 +6719,14 @@ msgstr "비밀번호 재설정 양식을 엽니다"
msgid "Opens post language settings"
msgstr "게시물 언어 설정을 엽니다"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "게시물 작성기를 엽니다"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "작성기에서 이 임시 저장을 엽니다"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "OTA 상태: 사용할 수 없음"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "기타"
@@ -6763,13 +6846,13 @@ msgstr "비밀번호 변경됨"
msgid "Password updated!"
msgstr "비밀번호를 변경했습니다!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "일시 정지"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "동영상 일시 정지"
@@ -6829,7 +6912,7 @@ msgstr "전화번호를 인증했습니다"
msgid "Photography"
msgstr "사진"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "성인용 사진."
@@ -6874,9 +6957,9 @@ msgstr "고정한 피드"
msgid "Pinned to your feeds"
msgstr "내 피드에 고정했습니다"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "재생"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "{0} 재생"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "동영상 재생"
@@ -6893,11 +6976,11 @@ msgstr "동영상 재생"
msgid "Play Video"
msgstr "동영상 재생"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "GIF를 재생하거나 일시 정지합니다"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "동영상을 재생하거나 일시 정지합니다"
@@ -6909,7 +6992,7 @@ msgstr "GIF를 재생합니다"
msgid "Plays the video"
msgstr "동영상을 재생합니다"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "게시하는 미디어에 해당하는 콘텐츠 경고 라벨을 추가해 주세요."
@@ -7066,31 +7149,31 @@ msgstr "아래에 메시지를 작성하세요:"
msgid "Politics"
msgstr "정치"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "음란물"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "게시물"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "게시하기"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "사진 게시하기"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "동영상 게시하기"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "모두 게시하기"
@@ -7217,7 +7300,7 @@ msgstr "내가 팔로우하는 이 계정의 팔로워를 보려면 누르세요
msgid "Preview"
msgstr "미리보기"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "이전 이미지"
@@ -7257,8 +7340,8 @@ msgstr "개인정보 및 보안 설정"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "개인정보 처리방침"
@@ -7266,7 +7349,11 @@ msgstr "개인정보 처리방침"
msgid "Privacy violation of a minor"
msgstr "미성년자 사생활 침해"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "동영상 처리 중…"
@@ -7280,10 +7367,10 @@ msgstr "처리 중…"
msgid "profile"
msgstr "프로필"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "프로필"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "일괄 뮤트하거나 차단할 수 있는 공개적이고 공유 가능한 사용자 목록입니다."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "게시물 등록하기"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "게시물 등록하기"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "답글 등록하기"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "답글 등록하기"
@@ -7360,6 +7447,7 @@ msgstr "인용 알림"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "게시물 인용"
@@ -7385,7 +7473,7 @@ msgstr "게시물 인용 비활성화됨"
msgid "Quotes"
msgstr "인용"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "이 게시물의 인용"
@@ -7424,11 +7512,11 @@ msgstr "검색 필터 사용 방법에 대해 읽어보기 (영어)"
msgid "Read blog post"
msgstr "블로그 게시물 읽기"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "접기"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "펼치기"
@@ -7720,13 +7808,13 @@ msgstr "답글 비활성화됨"
msgid "Replies to this post are disabled."
msgstr "이 게시물에 대한 답글은 비활성화되어 있습니다."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "답글 보내기"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "답글 ({0, plural, other {#개}})"
@@ -7892,7 +7980,7 @@ msgstr "내가 재게시함"
msgid "Reposts"
msgstr "재게시"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "이 게시물의 재게시물"
@@ -7996,14 +8084,14 @@ msgstr "오류가 발생한 마지막 작업을 다시 시도합니다"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "이전 페이지로 돌아갑니다"
msgid "Returns to home page"
msgstr "홈 페이지로 돌아갑니다"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "이전 페이지로 돌아갑니다"
@@ -8063,7 +8151,7 @@ msgstr "이전 단계로 돌아갑니다"
msgid "Save"
msgstr "저장"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "저장"
@@ -8076,9 +8164,26 @@ msgstr "생년월일 저장"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "변경 사항 저장"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "변경 사항을 저장하시겠습니까?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "임시 저장"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "임시 저장하시겠습니까?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "내 피드에 저장"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "저장"
@@ -8155,7 +8260,7 @@ msgstr "맨 위로 스크롤"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "검색"
@@ -8164,7 +8269,7 @@ msgstr "검색"
msgid "Search @{0}'s posts"
msgstr "@{0} 님의 게시물 검색"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "이름 또는 관심 주제로 검색"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "피드 검색"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "‘{interestsDisplayName}’ 검색"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "‘{interestsDisplayName}’ 검색 (활성)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "게시물 검색"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "프로필 검색"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "검색…"
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "프로필을 검색합니다"
@@ -8283,12 +8388,12 @@ msgstr "사용자의 #{tag} 게시물 보기"
msgid "See jobs at Bluesky"
msgstr "Bluesky에 지원하기"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "더 보기"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "더 많은 추천 프로필 보기"
@@ -8456,7 +8561,7 @@ msgstr "피드에서 번역을 위해 선호하는 언어를 선택합니다."
msgid "Select your preferred notification channels"
msgstr "선호하는 알림 채널 선택"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "여러 유형의 미디어를 함께 선택할 수 없습니다."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "이메일 전송"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "피드백 보내기"
@@ -8566,7 +8671,7 @@ msgstr "비밀번호 재설정을 위한 이메일을 설정합니다"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "설정"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "설정을 저장했습니다"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "성행위 또는 선정적인 나체."
@@ -8634,7 +8739,7 @@ msgstr "외설적"
msgid "Share"
msgstr "공유"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "공유"
@@ -8712,13 +8817,13 @@ msgstr "좋아하는 피드를 공유해 보세요!"
msgid "Shared Preferences Tester"
msgstr "공유 설정 테스터"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "표시"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "대체 텍스트 표시"
@@ -8820,7 +8925,7 @@ msgstr "경고 표시 및 피드에서 필터링"
msgid "Show when you’re live"
msgstr "내가 라이브 중일 때 표시하기"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "이 게시물이 언제 작성되었는지에 대한 정보를 표시합니다"
@@ -8828,8 +8933,8 @@ msgstr "이 게시물이 언제 작성되었는지에 대한 정보를 표시합
msgid "Shows other accounts you can switch to"
msgstr "전환할 수 있는 다른 계정을 표시합니다"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "콘텐츠를 표시합니다"
@@ -8842,14 +8947,14 @@ msgstr "콘텐츠를 표시합니다"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "로그인 필요"
msgid "Signed in as @{0}"
msgstr "@{0}(으)로 로그인했습니다"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "비슷한 계정"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "연락처 공유를 건너뛰고 앱으로 바로 이동하기"
msgid "Skip introduction and start using your account"
msgstr "소개를 건너뛰고 계정 사용 시작하기"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "다음 단계로 건너뛰기"
@@ -8967,7 +9068,7 @@ msgstr "소프트웨어 개발"
msgid "Some of your verifications are invalid."
msgstr "일부 인증이 유효하지 않습니다."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "좋아할 만한 다른 피드"
@@ -8994,7 +9095,7 @@ msgstr "문제가 발생했습니다"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "문제가 발생했습니다. 다시 시도해 주세요."
@@ -9020,7 +9121,7 @@ msgstr "문제가 발생했습니다. 다시 시도해 주세요."
msgid "Something wrong? Let us know."
msgstr "문제가 발생했나요? 저희에게 알려주세요."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "죄송합니다. 현재 계정 추천을 불러올 수 없습니다."
@@ -9113,7 +9214,11 @@ msgstr "스타터 팩"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "스타터 팩을 사용하면 좋아하는 피드와 사용자를 친구들과 쉽게 공유할 수 있습니다."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "스타터 팩을 사용하면 좋아하는 피드와 사용자를 친구들과 공유할 수 있습니다."
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "스타터 팩을 사용하면 좋아하는 피드와 사용자를 친구들과 공유할 수 있습니다."
@@ -9181,11 +9286,11 @@ msgstr "이 라벨을 사용하려면 @{0}(을)를 구독하세요."
msgid "Subscribe to account activity"
msgstr "계정 활동 알림 받기"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "라벨러 구독"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "이 라벨러 구독하기"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "추천 계정"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "나를 위한 추천"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "외설적"
@@ -9294,7 +9399,7 @@ msgstr "탭하여 세부 정보 보기"
#: src/screens/Signup/StepInfo/index.tsx:334
msgid "Tap here to confirm your location with GPS."
-msgstr "이곳을 눌러 GPS로 위치를 확인하세요."
+msgstr "이곳을 탭하여 GPS로 위치를 확인하세요."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164
msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky"
@@ -9354,8 +9459,8 @@ msgstr "이용약관"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "서비스 이용약관"
@@ -9403,12 +9508,12 @@ msgstr "이 사용자 이름은 이미 사용 중입니다"
msgid "That's all, folks!"
msgstr "이상입니다, 여러분!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "그게 다예요!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "차단을 해제하면 이 계정이 나와 상호작용할 수 있게 됩니다."
@@ -9447,7 +9552,7 @@ msgstr "Discover 피드"
msgid "The Discover feed now knows what you like"
msgstr "Discover 피드는 이제 당신이 무엇을 좋아하는지 알 테죠"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "앱에서 더 나은 환경을 경험하세요. 지금 Bluesky를 다운로드하면 중단한 부분부터 다시 시작합니다."
@@ -9527,7 +9632,7 @@ msgstr "테마"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "생년월일 변경 횟수에는 제한이 있습니다. 다시 변경하려면 하루나 이틀 정도 기다려야 할 수 있습니다."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "계정 비활성화에는 시간 제한이 없으므로 언제든지 다시 돌아올 수 있습니다."
@@ -9711,6 +9816,10 @@ msgstr "이 콘텐츠는 Bluesky 계정이 없으면 볼 수 없습니다."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "이 대화는 삭제되었거나 비활성화된 계정과의 대화입니다. 옵션을 보려면 누르세요"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "이 임시 저장은 영구적으로 삭제됩니다."
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "이 이메일은 이미 내 계정에 연결되어 있습니다."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "이 피드는 비어 있습니다. 더 많은 사용자를 팔로우하거나 언어 설정을 조정해 보세요."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "이 피드는 비어 있습니다."
@@ -9798,7 +9907,7 @@ msgstr "이 리스트는 비어 있습니다."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "이 검토 서비스는 사용할 수 없습니다. 자세한 내용은 아래를 참조하세요. 이 문제가 지속되면 문의해 주세요."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "이 게시물은 <0>{0}0>에 작성되었다고 주장하지만 Bluesky에서는 <1>{1}1>에 처음 확인되었습니다."
@@ -9818,7 +9927,7 @@ msgstr "작성자가 삭제한 게시물입니다"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "이 게시물을 피드와 스레드에서 숨깁니다. 이 작업은 되돌릴 수 없습니다."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "이 게시물의 작성자가 인용 게시물을 비활성화했습니다."
@@ -9834,9 +9943,9 @@ msgstr "이 답글은 스레드 하단의 숨겨진 위치에 정렬되며 자
msgid "This service has not provided terms of service or a privacy policy."
msgstr "이 서비스는 서비스 이용약관이나 개인정보 처리방침을 제공하지 않습니다."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
-msgstr ""
+msgstr "라이브 기능이 베타 버전인 동안에는 이 서비스가 지원되지 않습니다. 사용할 수 있는 서비스: {formatted}"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:467
msgid "This should create a domain record at:"
@@ -9900,8 +10009,8 @@ msgstr "모든 사용자의 인용 게시물에서 해당 게시물이 삭제되
msgid "Thread options"
msgstr "스레드 옵션"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "스레드 설정"
@@ -9951,7 +10060,7 @@ msgstr "오늘"
msgid "Toggle to enable or disable adult content"
msgstr "성인 콘텐츠 활성화 또는 비활성화 전환"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "소리를 켜거나 끕니다"
@@ -9988,8 +10097,8 @@ msgstr "주제"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "번역"
@@ -10091,15 +10200,15 @@ msgstr "사용할 수 없는 피드 정보"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "차단 해제"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "차단 해제"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "계정 차단 해제"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "계정을 차단 해제하시겠습니까?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "실행 취소"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "실행 취소"
@@ -10142,7 +10255,7 @@ msgstr "재게시 취소"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "재게시 취소 ({0, plural, other {#개}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "{0} 님을 언팔로우"
@@ -10151,7 +10264,7 @@ msgstr "{0} 님을 언팔로우"
msgid "Unfollow account"
msgstr "계정 언팔로우"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "사용자를 언팔로우합니다"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "좋아요 취소"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "좋아요 취소 ({0, plural, other {#개}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "리스트 언뮤트"
msgid "Unmute thread"
msgstr "스레드 언뮤트"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "동영상 음소거 해제"
@@ -10276,7 +10389,7 @@ msgstr "리스트를 고정 해제했습니다"
msgid "Unsnooze email reminder"
msgstr "이메일 알림 켜기"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "구독 취소"
@@ -10285,7 +10398,7 @@ msgstr "구독 취소"
msgid "Unsubscribe from list"
msgstr "리스트 구독 취소"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "이 라벨러 구독 취소하기"
@@ -10293,7 +10406,7 @@ msgstr "이 라벨러 구독 취소하기"
msgid "Unsubscribed from list"
msgstr "리스트를 구독 취소했습니다"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "지원되지 않는 동영상 유형: {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "파일에서 업로드"
msgid "Upload from Library"
msgstr "보관함에서 업로드"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "이미지 업로드 중…"
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "링크 미리보기 업로드 중…"
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "동영상 업로드 중…"
@@ -10389,8 +10506,8 @@ msgstr "기본 제공자 사용"
msgid "Use in-app browser"
msgstr "인앱 브라우저 사용"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "인앱 브라우저를 사용하여 링크 열기"
@@ -10445,6 +10562,10 @@ msgstr "나를 차단한 사용자"
msgid "User list by {0}"
msgstr "{0} 님의 사용자 리스트"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr "{0} 님의 사용자 리스트"
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "내 사용자 리스트"
@@ -10597,8 +10718,8 @@ msgstr "인증하는 중…"
msgid "Version {0}"
msgstr "버전 {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "동영상"
@@ -10614,20 +10735,24 @@ msgstr "동영상 피드"
msgid "Video from {0}: {text}"
msgstr "{0} 님의 동영상: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "{0} 님의 동영상. 재생 또는 일시정지하려면 탭하세요"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "비디오 게임"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "동영상 일시 정지됨"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "동영상 재생 중"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "동영상을 찾을 수 없습니다."
@@ -10635,11 +10760,11 @@ msgstr "동영상을 찾을 수 없습니다."
msgid "Video settings"
msgstr "동영상 설정"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "동영상 업로드됨"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "동영상: {0}"
@@ -10647,23 +10772,23 @@ msgstr "동영상: {0}"
msgid "Videos"
msgstr "동영상"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "동영상 길이는 3분 미만이어야 합니다."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "보기"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "{0} 님의 아바타 보기"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "{0} 님의 프로필 보기"
@@ -10708,7 +10833,7 @@ msgstr "더 보기"
msgid "View more trending videos"
msgstr "인기 동영상 더 보기"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "게시물 보기"
@@ -10788,7 +10913,7 @@ msgstr "폭력적이거나 위협적인 콘텐츠"
msgid "Visit site"
msgstr "사이트 열기"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "알림 설정으로 이동"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "계정의 연령 확인 절차를 시작하는 데 문제가 발생했습니다. 도움이 필요하면 <0>지원팀에 문의0>해 주세요."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "네트워크 문제가 발생했습니다. 다시 시도해 주세요"
@@ -10968,7 +11093,7 @@ msgstr "죄송하지만 현재 뮤트한 단어를 불러올 수 없습니다.
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "죄송하지만 검색을 완료할 수 없습니다. 몇 분 후에 다시 시도해 주세요."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "죄송하지만 답글을 달려는 게시물이 삭제되었습니다."
@@ -10977,7 +11102,7 @@ msgstr "죄송하지만 답글을 달려는 게시물이 삭제되었습니다."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "죄송합니다. 페이지를 찾을 수 없습니다."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "죄송합니다. 라벨러는 20개까지만 구독할 수 있으며 20개에 도달했습니다."
@@ -11018,10 +11143,9 @@ msgstr "어떤 주제에 관심이 있으신가요?"
msgid "What do you want to call your starter pack?"
msgstr "스타터 팩의 이름을 무엇으로 할까요?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "무슨 일이 일어나고 있나요?"
@@ -11097,6 +11221,14 @@ msgstr "이 사용자를 검토해야 하는 이유는 무엇인가요?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "이 사용자를 차단하거나 이 대화를 삭제하시겠습니까?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "임시 저장 목록으로 이동하기 전에 작성 중인 내용을 저장하시겠습니까?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "나중에 다시 편집할 수 있도록 임시 저장하시겠습니까?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "메시지 입력"
msgid "Write a post"
msgstr "게시물 작성하기"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "게시물 작성"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "답글 작성하기"
@@ -11133,8 +11265,8 @@ msgstr "www.mylivestream.tv"
msgid "Yes"
msgstr "예"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "비활성화"
@@ -11188,7 +11320,7 @@ msgstr "대기 중입니다."
msgid "You are Live"
msgstr "라이브 중"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "더 이상 라이브 중이 아닙니다"
@@ -11200,7 +11332,7 @@ msgstr "동영상을 업로드할 수 없습니다."
msgid "You are not following anyone yet"
msgstr "아직 아무도 팔로우하지 않았습니다"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "라이브 중입니다!"
@@ -11255,11 +11387,11 @@ msgstr "이제 특정 사용자가 게시물을 올릴 때 알림을 받도록
msgid "You can now sign in with your new password."
msgstr "이제 새 비밀번호로 로그인할 수 있습니다."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "GIF는 한 번에 하나만 선택할 수 있습니다."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "동영상은 한 번에 하나만 선택할 수 있습니다."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "계정을 재활성화하여 로그인을 계속할 수 있습니다. 내 프로필과 글이 다른 사용자에게 표시됩니다."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "이미지는 최대 {MAX_IMAGES, plural, other {#개}}까지 선택할 수 있습니다."
@@ -11317,7 +11449,7 @@ msgstr "이 사용자를 차단했습니다"
msgid "You have blocked this user. You cannot view their content."
msgstr "이 사용자를 차단했습니다. 해당 사용자의 콘텐츠를 볼 수 없습니다."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "답글, 인용, 멘션 알림을 완전히 비활성화했으므로 이 탭은 더 이상 업데이트되지 않습니다. 이를 변경하려면 <0>알림 설정0>으로 이동하세요."
@@ -11376,6 +11508,14 @@ msgstr "이메일 주소를 성공적으로 인증했습니다. 이 대화 상
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "일시적으로 동영상 업로드 한도에 도달했습니다. 나중에 다시 시도해 주세요."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "이 초안에 저장되지 않은 변경 사항이 있습니다. 저장하시겠습니까?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "변경 사항이 저장되지 않았습니다. 임시 저장 목록으로 이동하기 전에 저장하시겠습니까?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "아직 스타터 팩을 만들지 않았습니다."
@@ -11437,7 +11577,7 @@ msgstr "계정을 만들려면 만 {MIN_ACCESS_AGE}세 이상이어야 합니다
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Bluesky를 이용하려면 만 13세 이상이어야 합니다. 자세한 내용은 <0>서비스 이용약관0>을 참조하세요."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "스타터 팩을 만들려면 다른 사용자를 최소 7명 이상 팔로우해야 합니다."
@@ -11449,7 +11589,7 @@ msgstr "이 화면을 보려면 먼저 연령 확인을 완료해야 합니다."
msgid "You must grant access to your photo library to save a QR code"
msgstr "QR 코드를 저장하려면 사진 보관함에 대한 접근 권한을 부여해야 합니다"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "미디어 라이브러리에 대한 접근 권한을 허용해야 합니다."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "대기 중입니다"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "앱 비밀번호로 로그인한 상태입니다. 계정 비활성화를 계속하려면 원래 비밀번호로 로그인하세요."
@@ -11589,7 +11729,7 @@ msgstr "동영상 업로드 일일 한도에 도달했습니다 (용량이 너
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "동영상 업로드 일일 한도에 도달했습니다 (동영상 수가 너무 많음)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "시청할 동영상이 부족합니다. 잠시 쉬는 건 어떠신가요?"
@@ -11625,7 +11765,7 @@ msgstr "이의신청을 제출했습니다. 이의신청이 받아들여지면
msgid "Your birth date"
msgstr "생년월일"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "브라우저가 이 동영상 형식을 지원하지 않습니다. 다른 브라우저를 사용하세요."
@@ -11692,8 +11832,8 @@ msgstr "내 전체 핸들: <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "내 관심 주제"
@@ -11731,11 +11871,11 @@ msgstr "비밀번호를 성공적으로 변경했습니다! 앞으로 Bluesky에
msgid "Your password must be at least 8 characters long."
msgstr "비밀번호는 8자 이상이어야 합니다."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "게시물을 보냈습니다"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "게시물을 보냈습니다"
@@ -11752,11 +11892,11 @@ msgstr "내 프로필 사진"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "여러 사용자들의 프로필 사진이 동심원 형태로 내 프로필 사진을 둘러싸고 있는 모습"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "내 프로필, 게시물, 피드, 리스트가 더 이상 다른 Bluesky 사용자에게 표시되지 않습니다. 언제든지 로그인하여 계정을 재활성화할 수 있습니다."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "답글을 보냈습니다"
diff --git a/src/locale/locales/lt/messages.po b/src/locale/locales/lt/messages.po
index 98f011c114..3864cabfa0 100644
--- a/src/locale/locales/lt/messages.po
+++ b/src/locale/locales/lt/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: lt\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Lithuanian\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n"
@@ -23,7 +23,7 @@ msgstr ""
msgid "\"{interestsDisplayName}\" category (active)"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:162
+#: src/screens/Messages/components/ChatListItem.tsx:163
msgid "(contains embedded content)"
msgstr ""
@@ -43,7 +43,7 @@ msgstr ""
msgid "{0, plural, one {# following} other {# following}}"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:265
+#: src/components/contacts/screens/ViewMatches.tsx:267
msgid "{0, plural, one {# friend found!} other {# friends found!}}"
msgstr ""
@@ -83,9 +83,9 @@ msgstr ""
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr ""
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:489
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
@@ -112,28 +116,28 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:455
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:500
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:82
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:79
msgid "{0, plural, other {{1} posts}}"
msgstr ""
#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
-#: src/screens/StarterPack/StarterPackScreen.tsx:492
+#: src/screens/StarterPack/StarterPackScreen.tsx:496
msgid "{0, plural, other {# people have}} used this starter pack!"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:360
+#: src/components/dialogs/StarterPackDialog.tsx:361
msgid "{0, plural, other {+# more}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -164,11 +168,11 @@ msgstr ""
msgid "{0} is live"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:188
+#: src/screens/Signup/StepHandle/index.tsx:185
msgid "{0} is not available"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
msgid "{0} joined this week"
msgstr ""
@@ -185,20 +189,20 @@ msgstr ""
msgid "{0} reacted {1}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:233
+#: src/screens/Messages/components/ChatListItem.tsx:234
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:577
-#: src/view/com/util/UserAvatar.tsx:595
+#: src/view/com/util/UserAvatar.tsx:575
+#: src/view/com/util/UserAvatar.tsx:593
msgid "{0}'s avatar"
msgstr ""
@@ -243,7 +247,7 @@ msgid "{DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Display name is too long. The
msgstr ""
#: src/lib/generate-starterpack.ts:104
-#: src/screens/StarterPack/Wizard/index.tsx:201
+#: src/screens/StarterPack/Wizard/index.tsx:202
msgid "{displayName}'s Starter Pack"
msgstr ""
@@ -432,11 +436,11 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:430
+#: src/screens/Settings/FindContactsSettings.tsx:435
msgid "{numMatches, plural, one {# contact found} other {# contacts found}}"
msgstr ""
@@ -449,25 +453,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago"
msgstr ""
#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor"
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:111
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:108
msgid "{rank}."
msgstr ""
#. trending topic time spent trending. should be as short as possible to fit in a pill
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:203
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200
msgid "{type}h ago"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:60
+#: src/components/verification/VerifierDialog.tsx:61
msgid "{userName} is a trusted verifier"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:67
+#: src/components/verification/VerificationsDialog.tsx:68
msgid "{userName} is verified"
msgstr ""
#. Possessive, meaning "the verifications of {userName}"
-#: src/components/verification/VerificationsDialog.tsx:69
+#: src/components/verification/VerificationsDialog.tsx:70
msgid "{userName}'s verifications"
msgstr ""
@@ -476,34 +480,34 @@ msgstr ""
msgid "+{computedTotal}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:524
+#: src/screens/StarterPack/Wizard/index.tsx:525
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:577
+#: src/screens/StarterPack/Wizard/index.tsx:578
msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:511
-#: src/screens/StarterPack/Wizard/index.tsx:565
+#: src/screens/StarterPack/Wizard/index.tsx:512
+#: src/screens/StarterPack/Wizard/index.tsx:566
msgid "<0>{0}0> and<1> 1><2>{1} 2>are included in your starter pack"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:558
+#: src/screens/StarterPack/Wizard/index.tsx:559
msgid "<0>{0}0> is included in your starter pack"
msgstr ""
-#: src/components/WhoCanReply.tsx:351
+#: src/components/WhoCanReply.tsx:352
msgid "<0>{0}0> members"
msgstr ""
@@ -516,7 +520,7 @@ msgstr ""
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:502
+#: src/screens/StarterPack/Wizard/index.tsx:503
msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
msgstr ""
@@ -545,24 +549,24 @@ msgid "A collection of popular feeds you can find on Bluesky, including News, Bo
msgstr ""
#. If last message does not contain text, fall back to "{user} reacted to {a message}"
-#: src/screens/Messages/components/ChatListItem.tsx:212
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "a message"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:99
+#: src/components/contacts/screens/PhoneInput.tsx:101
msgid "A network error occurred. Please check your internet connection"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:96
-#: src/components/contacts/screens/VerifyNumber.tsx:152
+#: src/components/contacts/screens/VerifyNumber.tsx:98
+#: src/components/contacts/screens/VerifyNumber.tsx:154
msgid "A network error occurred. Please check your internet connection."
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:140
+#: src/components/contacts/screens/VerifyNumber.tsx:142
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:92
msgid "A new form of verification"
msgstr ""
@@ -580,8 +584,8 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
-#: src/Navigation.tsx:534
-#: src/screens/Settings/AboutSettings.tsx:75
+#: src/Navigation.tsx:535
+#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
#: src/screens/Settings/Settings.tsx:263
msgid "About"
@@ -615,11 +619,11 @@ msgstr ""
msgid "Accessibility"
msgstr ""
-#: src/Navigation.tsx:385
+#: src/Navigation.tsx:386
msgid "Accessibility Settings"
msgstr ""
-#: src/Navigation.tsx:401
+#: src/Navigation.tsx:402
#: src/screens/Login/LoginForm.tsx:194
#: src/screens/Settings/AccountSettings.tsx:51
#: src/screens/Settings/Settings.tsx:178
@@ -627,20 +631,20 @@ msgstr ""
msgid "Account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:419
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423
#: src/screens/Messages/components/RequestButtons.tsx:91
-#: src/view/com/profile/ProfileMenu.tsx:181
+#: src/view/com/profile/ProfileMenu.tsx:182
msgctxt "toast"
msgid "Account blocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:194
+#: src/view/com/profile/ProfileMenu.tsx:195
msgctxt "toast"
msgid "Account followed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:442
-#: src/view/com/profile/ProfileMenu.tsx:157
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:446
+#: src/view/com/profile/ProfileMenu.tsx:158
msgctxt "toast"
msgid "Account muted"
msgstr ""
@@ -668,45 +672,45 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:84
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:290
-#: src/view/com/profile/ProfileMenu.tsx:171
+#: src/view/com/profile/ProfileMenu.tsx:172
msgctxt "toast"
msgid "Account unblocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:206
+#: src/view/com/profile/ProfileMenu.tsx:207
msgctxt "toast"
msgid "Account unfollowed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:432
-#: src/view/com/profile/ProfileMenu.tsx:147
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
+#: src/view/com/profile/ProfileMenu.tsx:148
msgctxt "toast"
msgid "Account unmuted"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:97
+#: src/components/verification/VerifierDialog.tsx:98
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:182
+#: src/lib/hooks/useNotificationHandler.ts:185
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102
#: src/screens/Settings/NotificationSettings/index.tsx:192
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:502
+#: src/Navigation.tsx:503
msgid "Activity notifications"
msgstr ""
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169
#: src/components/dialogs/MutedWords.tsx:333
-#: src/components/dialogs/StarterPackDialog.tsx:374
-#: src/components/dialogs/StarterPackDialog.tsx:380
+#: src/components/dialogs/StarterPackDialog.tsx:375
+#: src/components/dialogs/StarterPackDialog.tsx:381
#: src/view/com/modals/UserAddRemoveLists.tsx:235
msgid "Add"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:613
+#: src/screens/StarterPack/Wizard/index.tsx:614
msgid "Add {0} more to continue"
msgstr ""
@@ -714,8 +718,8 @@ msgstr ""
msgid "Add {displayName} to starter pack"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr ""
@@ -754,11 +758,11 @@ msgstr ""
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:856
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1496
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,7 +780,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:220
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
@@ -785,8 +789,8 @@ msgstr ""
msgid "Add media to post"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:520
-#: src/components/moderation/ReportDialog/index.tsx:524
+#: src/components/moderation/ReportDialog/index.tsx:514
+#: src/components/moderation/ReportDialog/index.tsx:518
msgid "Add more details (optional)"
msgstr ""
@@ -815,7 +819,7 @@ msgstr ""
msgid "Add recommended feeds"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:546
+#: src/screens/StarterPack/Wizard/index.tsx:547
msgid "Add some feeds to your starter pack!"
msgstr ""
@@ -831,18 +835,18 @@ msgstr ""
msgid "Add this feed to your feeds"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:342
-#: src/view/com/profile/ProfileMenu.tsx:345
+#: src/view/com/profile/ProfileMenu.tsx:343
+#: src/view/com/profile/ProfileMenu.tsx:346
msgid "Add to lists"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:141
+#: src/components/PostControls/BookmarkButton.tsx:142
msgid "Add to saved posts"
msgstr ""
#: src/components/dialogs/StarterPackDialog.tsx:176
-#: src/view/com/profile/ProfileMenu.tsx:333
-#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:334
+#: src/view/com/profile/ProfileMenu.tsx:337
msgid "Add to starter packs"
msgstr ""
@@ -850,7 +854,7 @@ msgstr ""
msgid "Add user to list"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:231
+#: src/ageAssurance/components/NoAccessScreen.tsx:228
msgid "Add your birthdate"
msgstr ""
@@ -859,19 +863,19 @@ msgstr ""
msgid "Added to list"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:258
+#: src/components/dialogs/StarterPackDialog.tsx:259
msgid "Added to starter pack"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:111
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:113
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:538
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr ""
@@ -879,10 +883,10 @@ msgstr ""
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr ""
@@ -894,8 +898,8 @@ msgstr ""
msgid "Adult content is disabled."
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr ""
@@ -911,17 +915,17 @@ msgstr ""
msgid "Age Assurance"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:69
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:71
msgid "Age assurance inquiry failed to send, please try again."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:77
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:79
msgctxt "toast"
msgid "Age assurance inquiry was submitted"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:354
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:199
+#: src/ageAssurance/components/NoAccessScreen.tsx:352
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:201
msgid "Age assurance only takes a few minutes"
msgstr ""
@@ -930,17 +934,17 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:174
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:91
-#: src/screens/StarterPack/StarterPackScreen.tsx:386
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:390
msgid "All accounts have been followed!"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:141
+#: src/components/contacts/screens/ViewMatches.tsx:143
msgid "All friends followed!"
msgstr ""
@@ -960,7 +964,7 @@ msgstr ""
msgid "Allow access to your direct messages"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:448
msgid "Allow anyone to reply"
msgstr ""
@@ -979,23 +983,23 @@ msgstr ""
msgid "Allow others to be notified of your posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:498
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:501
msgid "Allow people you follow to reply"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:512
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:515
msgid "Allow people you mention to reply"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:630
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:633
msgid "Allow quote posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:592
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:595
msgid "Allow users in {0} to reply"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:484
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:487
msgid "Allow your followers to reply"
msgstr ""
@@ -1009,15 +1013,15 @@ msgstr ""
msgid "Already have a code?"
msgstr ""
-#: src/components/WelcomeModal.tsx:189
+#: src/components/WelcomeModal.tsx:191
msgid "Already have an account?"
msgstr ""
-#: src/screens/Login/ChooseAccountForm.tsx:43
+#: src/screens/Login/ChooseAccountForm.tsx:44
msgid "Already signed in as @{0}"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:191
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1037,7 @@ msgstr ""
msgid "Alt text"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
msgid "Alt Text"
msgstr ""
@@ -1067,7 +1071,7 @@ msgstr ""
msgid "An error occurred while compressing the video."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:196
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,11 +1080,11 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:240
+#: src/components/contacts/screens/ViewMatches.tsx:242
msgid "An error occurred while hiding suggestion. {0}"
msgstr ""
@@ -1092,18 +1096,18 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:575
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:578
msgid "An error occurred while loading your lists :/"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:75
+#: src/components/StarterPack/QrCodeDialog.tsx:77
msgid "An error occurred while saving the QR code!"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:51
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:76
-#: src/screens/StarterPack/StarterPackScreen.tsx:352
-#: src/screens/StarterPack/StarterPackScreen.tsx:374
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:53
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:78
+#: src/screens/StarterPack/StarterPackScreen.tsx:356
+#: src/screens/StarterPack/StarterPackScreen.tsx:378
msgid "An error occurred while trying to follow all"
msgstr ""
@@ -1111,9 +1115,9 @@ msgstr ""
msgid "An error occurred while uploading the video."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:117
-#: src/components/contacts/screens/VerifyNumber.tsx:128
-#: src/components/contacts/screens/VerifyNumber.tsx:181
+#: src/components/contacts/screens/PhoneInput.tsx:119
+#: src/components/contacts/screens/VerifyNumber.tsx:130
+#: src/components/contacts/screens/VerifyNumber.tsx:183
msgid "An error occurred. {0}"
msgstr ""
@@ -1126,8 +1130,8 @@ msgstr ""
msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84
-#: src/components/verification/VerifierDialog.tsx:86
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:85
+#: src/components/verification/VerifierDialog.tsx:87
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
@@ -1135,11 +1139,11 @@ msgstr ""
msgid "An issue not included in these options"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:38
+#: src/components/dms/dialogs/NewChatDialog.tsx:39
msgid "An issue occurred starting the chat"
msgstr ""
-#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47
+#: src/components/dms/dialogs/ShareViaChatDialog.tsx:48
msgid "An issue occurred while trying to open the chat"
msgstr ""
@@ -1152,7 +1156,7 @@ msgstr ""
msgid "An issue occurred, please try again."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:119
msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
msgstr ""
@@ -1165,7 +1169,7 @@ msgstr ""
msgid "an unknown labeler"
msgstr ""
-#: src/components/WhoCanReply.tsx:372
+#: src/components/WhoCanReply.tsx:373
msgid "and"
msgstr ""
@@ -1181,7 +1185,7 @@ msgstr ""
msgid "Animals"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:154
msgid "Animated GIF"
msgstr ""
@@ -1189,15 +1193,15 @@ msgstr ""
msgid "Announcement"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:38
msgid "Announcing verification on Bluesky"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:451
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:454
msgid "Anyone"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:134
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:136
msgid "Anyone can interact"
msgstr ""
@@ -1207,7 +1211,7 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:543
#: src/screens/Settings/AppIconSettings/index.tsx:64
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
@@ -1248,7 +1252,7 @@ msgstr ""
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:354
#: src/screens/Settings/AppPasswords.tsx:50
msgid "App Passwords"
msgstr ""
@@ -1289,7 +1293,7 @@ msgstr ""
msgid "Appeal this decision"
msgstr ""
-#: src/Navigation.tsx:393
+#: src/Navigation.tsx:394
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:228
#: src/screens/Settings/Settings.tsx:231
@@ -1306,12 +1310,12 @@ msgstr ""
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:670
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:678
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr ""
@@ -1319,11 +1323,11 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:200
+#: src/components/dms/MessageContextMenu.tsx:197
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:659
+#: src/screens/StarterPack/StarterPackScreen.tsx:664
msgid "Are you sure you want to delete this starter pack?"
msgstr ""
@@ -1332,11 +1336,11 @@ msgstr ""
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr ""
@@ -1344,11 +1348,7 @@ msgstr ""
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:805
-msgid "Are you sure you'd like to discard this draft?"
-msgstr ""
-
-#: src/view/com/composer/Composer.tsx:995
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -1364,12 +1364,12 @@ msgstr ""
msgid "Art"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:558
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:560
msgid "Assign topic for algo"
msgstr ""
@@ -1394,8 +1394,8 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:333
#: src/components/moderation/LabelsOnMeDialog.tsx:334
-#: src/screens/Login/ChooseAccountForm.tsx:91
-#: src/screens/Login/ChooseAccountForm.tsx:96
+#: src/screens/Login/ChooseAccountForm.tsx:92
+#: src/screens/Login/ChooseAccountForm.tsx:97
#: src/screens/Login/ForgotPasswordForm.tsx:123
#: src/screens/Login/ForgotPasswordForm.tsx:129
#: src/screens/Login/LoginForm.tsx:313
@@ -1404,11 +1404,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:184
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
-#: src/screens/StarterPack/Wizard/index.tsx:323
+#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr ""
@@ -1448,8 +1450,8 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:54
-#: src/components/dms/MessageProfileButton.tsx:58
+#: src/components/dms/dialogs/NewChatDialog.tsx:55
+#: src/components/dms/MessageProfileButton.tsx:59
#: src/screens/Messages/ChatList.tsx:371
#: src/screens/Messages/Conversation.tsx:228
msgid "Before you can message another user, you must first verify your email."
@@ -1463,7 +1465,7 @@ msgstr ""
msgid "Begin age assurance process"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:50
msgid "Begin the age assurance process by completing the fields below."
msgstr ""
@@ -1479,30 +1481,30 @@ msgstr ""
msgid "Birthday"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:821
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/view/com/profile/ProfileMenu.tsx:550
+#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Block"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:261
#: src/components/dms/ConvoMenu.tsx:264
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:703
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:705
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:706
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:708
#: src/screens/Messages/components/RequestButtons.tsx:144
#: src/screens/Messages/components/RequestButtons.tsx:146
-#: src/view/com/profile/ProfileMenu.tsx:456
-#: src/view/com/profile/ProfileMenu.tsx:463
+#: src/view/com/profile/ProfileMenu.tsx:457
+#: src/view/com/profile/ProfileMenu.tsx:464
msgid "Block account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:813
-#: src/view/com/profile/ProfileMenu.tsx:533
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:816
+#: src/view/com/profile/ProfileMenu.tsx:534
msgid "Block Account?"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:97
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:100
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:90
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:93
msgid "Block accounts"
msgstr ""
@@ -1510,7 +1512,7 @@ msgstr ""
msgid "Block and Delete"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:125
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:118
msgid "Block list"
msgstr ""
@@ -1518,7 +1520,7 @@ msgstr ""
msgid "Block or report"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:120
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:113
msgid "Block these accounts?"
msgstr ""
@@ -1543,13 +1545,13 @@ msgstr ""
msgid "Blocked accounts"
msgstr ""
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:195
#: src/view/screens/ModerationBlockedAccounts.tsx:104
msgid "Blocked Accounts"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:815
-#: src/view/com/profile/ProfileMenu.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818
+#: src/view/com/profile/ProfileMenu.tsx:546
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -1561,11 +1563,11 @@ msgstr ""
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:122
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:115
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:542
+#: src/view/com/profile/ProfileMenu.tsx:543
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr ""
@@ -1578,7 +1580,7 @@ msgstr ""
msgid "Bluesky"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:700
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr ""
@@ -1587,7 +1589,7 @@ msgctxt "Name of app icon variant"
msgid "Bluesky Classic™"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:232
+#: src/components/contacts/screens/GetContacts.tsx:234
msgid "Bluesky helps friends find each other by creating an encoded digital fingerprint, called a \"hash\", and then looking for matching hashes."
msgstr ""
@@ -1603,7 +1605,7 @@ msgstr ""
msgid "Bluesky is better with friends!"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:35
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:42
msgid "Bluesky is more fun with friends"
msgstr ""
@@ -1611,7 +1613,7 @@ msgstr ""
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:312
+#: src/components/contacts/screens/ViewMatches.tsx:314
msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>"
msgstr ""
@@ -1619,11 +1621,11 @@ msgstr ""
msgid "Bluesky Social Terms of Service"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:542
+#: src/screens/Settings/FindContactsSettings.tsx:548
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
@@ -1631,7 +1633,7 @@ msgstr ""
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:133
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -1664,20 +1666,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:777
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:906
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:887
-#: src/components/FeedInterstitials.tsx:890
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:915
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -1698,7 +1700,7 @@ msgstr ""
msgid "Browse starter pack {displayName}"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:93
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90
msgid "Browse topic {0}"
msgstr ""
@@ -1710,18 +1712,18 @@ msgstr ""
msgid "Business"
msgstr ""
-#: src/screens/Bookmarks/index.tsx:284
+#: src/screens/Bookmarks/index.tsx:304
msgid "Button to go back to the home timeline"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:842
+#: src/components/moderation/ReportDialog/index.tsx:836
#: src/screens/Search/components/StarterPackCard.tsx:106
-#: src/screens/Search/Explore.tsx:943
+#: src/screens/Search/Explore.tsx:932
msgid "By {0}"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:453
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:455
msgid "By <0>{0}0>"
msgstr ""
@@ -1729,7 +1731,7 @@ msgstr ""
msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:294
+#: src/components/contacts/screens/PhoneInput.tsx:296
msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more0>"
msgstr ""
@@ -1754,10 +1756,10 @@ msgid "Camera"
msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:206
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:128
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:134
-#: src/components/contacts/screens/GetContacts.tsx:289
-#: src/components/contacts/screens/GetContacts.tsx:294
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:130
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:136
+#: src/components/contacts/screens/GetContacts.tsx:291
+#: src/components/contacts/screens/GetContacts.tsx:296
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:152
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:157
#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125
@@ -1770,8 +1772,8 @@ msgstr ""
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1790,8 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1050
-#: src/view/com/composer/Composer.tsx:1061
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1819,10 +1821,10 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:107
-#: src/components/PostControls/index.tsx:138
-#: src/components/PostControls/index.tsx:166
-#: src/state/shell/composer/index.tsx:95
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:139
+#: src/components/PostControls/index.tsx:167
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -1861,7 +1863,7 @@ msgstr ""
msgid "Change Handle"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:437
+#: src/components/moderation/ReportDialog/index.tsx:431
msgid "Change moderation service"
msgstr ""
@@ -1874,11 +1876,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:302
+#: src/components/moderation/ReportDialog/index.tsx:296
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:382
+#: src/components/moderation/ReportDialog/index.tsx:376
msgid "Change report reason"
msgstr ""
@@ -1899,11 +1901,11 @@ msgstr ""
msgid "Changes saved"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:99
-#: src/Navigation.tsx:559
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/lib/hooks/useNotificationHandler.ts:102
+#: src/Navigation.tsx:560
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr ""
@@ -1913,11 +1915,11 @@ msgctxt "toast"
msgid "Chat deleted"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:114
+#: src/lib/hooks/useNotificationHandler.ts:117
msgid "Chat messages - silent"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:105
+#: src/lib/hooks/useNotificationHandler.ts:108
msgid "Chat messages - sound"
msgstr ""
@@ -1926,7 +1928,7 @@ msgctxt "toast"
msgid "Chat muted"
msgstr ""
-#: src/Navigation.tsx:569
+#: src/Navigation.tsx:570
#: src/screens/Messages/components/InboxPreview.tsx:22
msgid "Chat request inbox"
msgstr ""
@@ -1938,7 +1940,7 @@ msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:78
-#: src/Navigation.tsx:564
+#: src/Navigation.tsx:565
#: src/screens/Messages/ChatList.tsx:81
#: src/screens/Messages/ChatList.tsx:85
#: src/screens/Messages/ChatList.tsx:380
@@ -1985,15 +1987,15 @@ msgstr ""
msgid "Choose domain verification method"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:217
+#: src/screens/StarterPack/Wizard/index.tsx:218
msgid "Choose Feeds"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:213
+#: src/screens/StarterPack/Wizard/index.tsx:214
msgid "Choose People"
msgstr ""
@@ -2017,11 +2019,11 @@ msgstr ""
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:273
+#: src/screens/Signup/StepInfo/index.tsx:271
msgid "Choose your password"
msgstr ""
-#: src/screens/Signup/index.tsx:181
+#: src/screens/Signup/index.tsx:192
msgid "Choose your username"
msgstr ""
@@ -2033,8 +2035,8 @@ msgstr ""
msgid "Clear all storage data (restart after this)"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:116
-#: src/screens/Settings/AboutSettings.tsx:120
+#: src/screens/Settings/AboutSettings.tsx:114
+#: src/screens/Settings/AboutSettings.tsx:118
msgid "Clear image cache"
msgstr ""
@@ -2050,11 +2052,11 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:126
+#: src/ageAssurance/components/NoAccessScreen.tsx:123
msgid "Click here to contact our support team"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:245
+#: src/ageAssurance/components/NoAccessScreen.tsx:242
msgid "Click here to log out"
msgstr ""
@@ -2063,7 +2065,7 @@ msgid "Click here to restart the verification process."
msgstr ""
#: src/ageAssurance/components/NoAccessScreen.tsx:103
-#: src/ageAssurance/components/NoAccessScreen.tsx:228
+#: src/ageAssurance/components/NoAccessScreen.tsx:225
msgid "Click here to update your birthdate"
msgstr ""
@@ -2087,17 +2089,17 @@ msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:270
#: src/ageAssurance/components/RedirectOverlay.tsx:320
#: src/ageAssurance/components/RedirectOverlay.tsx:326
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:172
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:231
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:173
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:179
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:232
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:238
#: src/components/dialogs/GifSelect.tsx:269
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:198
#: src/components/dialogs/SearchablePeopleList.tsx:295
@@ -2111,14 +2113,14 @@ msgstr ""
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:445
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:204
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
-#: src/components/verification/VerificationsDialog.tsx:144
-#: src/components/verification/VerifierDialog.tsx:150
-#: src/components/WhoCanReply.tsx:234
-#: src/components/WhoCanReply.tsx:241
+#: src/components/verification/VerificationsDialog.tsx:145
+#: src/components/verification/VerifierDialog.tsx:147
+#: src/components/WhoCanReply.tsx:235
+#: src/components/WhoCanReply.tsx:242
#: src/screens/Settings/components/ChangePasswordDialog.tsx:287
#: src/screens/Settings/components/ChangePasswordDialog.tsx:292
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:335
@@ -2143,15 +2145,15 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:222
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:228
#: src/components/dialogs/GifSelect.tsx:263
-#: src/components/verification/VerificationsDialog.tsx:136
-#: src/components/verification/VerifierDialog.tsx:142
+#: src/components/verification/VerificationsDialog.tsx:137
+#: src/components/verification/VerifierDialog.tsx:139
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:204
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:298
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:330
msgid "Close dialog"
msgstr ""
-#: src/view/shell/index.web.tsx:130
+#: src/view/shell/index.web.tsx:131
msgid "Close drawer menu"
msgstr ""
@@ -2168,7 +2170,8 @@ msgstr ""
msgid "Close image"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr ""
@@ -2182,7 +2185,7 @@ msgstr ""
msgid "Close this dialog"
msgstr ""
-#: src/components/WelcomeModal.tsx:214
+#: src/components/WelcomeModal.tsx:216
msgid "Close welcome modal"
msgstr ""
@@ -2190,7 +2193,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1058
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2229,25 +2232,25 @@ msgid "Comics"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:344
#: src/view/screens/CommunityGuidelines.tsx:37
msgid "Community Guidelines"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:322
+#: src/screens/Onboarding/StepFinished/index.tsx:325
msgid "Complete onboarding and start using your account"
msgstr ""
-#: src/screens/Signup/index.tsx:183
+#: src/screens/Signup/index.tsx:194
msgid "Complete the challenge"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:143
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2258,7 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1891
+#: src/view/com/composer/Composer.tsx:2295
msgid "Compressing video..."
msgstr ""
@@ -2263,7 +2266,6 @@ msgstr ""
msgid "Configure content filtering setting for category: {name}"
msgstr ""
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2274,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr ""
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2287,8 +2289,8 @@ msgstr ""
msgid "Confirm delete account"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:368
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:95
+#: src/ageAssurance/components/NoAccessScreen.tsx:366
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:97
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:40
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:105
msgid "Confirm your location"
@@ -2310,36 +2312,36 @@ msgid "Connecting..."
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:296
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:207
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:208
msgid "Connection issue"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:305
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:138
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:29
+#: src/ageAssurance/components/NoAccessScreen.tsx:303
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:140
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:30
msgid "Contact our moderation team"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155
-#: src/screens/Signup/index.tsx:222
-#: src/screens/Signup/index.tsx:225
+#: src/screens/Signup/index.tsx:233
+#: src/screens/Signup/index.tsx:236
msgid "Contact support"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:57
-#: src/screens/Settings/FindContactsSettings.tsx:154
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:64
+#: src/screens/Settings/FindContactsSettings.tsx:156
msgid "Contact sync is not available on this device, as the app is unable to access your contacts."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:93
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:95
msgid "Contact us"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:498
+#: src/screens/Settings/FindContactsSettings.tsx:504
msgid "Contacts imported"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:471
+#: src/screens/Settings/FindContactsSettings.tsx:477
msgid "Contacts removed"
msgstr ""
@@ -2352,7 +2354,7 @@ msgstr ""
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:518
+#: src/Navigation.tsx:519
msgid "Content and Media"
msgstr ""
@@ -2364,7 +2366,7 @@ msgstr ""
msgid "Content filters"
msgstr ""
-#: src/screens/Search/modules/ExploreRecommendations.tsx:59
+#: src/screens/Search/modules/ExploreRecommendations.tsx:60
msgid "Content from across the network we think you might like."
msgstr ""
@@ -2389,7 +2391,7 @@ msgstr ""
msgid "Content Warning"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr ""
@@ -2399,9 +2401,9 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
-#: src/screens/Onboarding/StepInterests/index.tsx:91
+#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:276
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr ""
@@ -2418,9 +2420,9 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:88
+#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2436,18 +2438,18 @@ msgctxt "toast"
msgid "Conversation deleted"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:198
+#: src/screens/Messages/components/ChatListItem.tsx:199
msgid "Conversation deleted"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:151
+#: src/screens/Settings/AboutSettings.tsx:149
msgid "Copied build version to clipboard"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:57
+#: src/components/dms/MessageContextMenu.tsx:58
#: src/components/PostControls/DiscoverDebug.tsx:36
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:249
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:257
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:73
#: src/lib/sharing.ts:25
#: src/lib/sharing.ts:41
msgid "Copied to clipboard"
@@ -2458,11 +2460,11 @@ msgstr ""
msgid "Copied!"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:127
+#: src/screens/Settings/AboutSettings.tsx:125
msgid "Copies build version to clipboard"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/components/StarterPack/QrCodeDialog.tsx:194
msgid "Copy"
msgstr ""
@@ -2470,13 +2472,13 @@ msgstr ""
msgid "Copy App Password"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:493
-#: src/view/com/profile/ProfileMenu.tsx:496
+#: src/view/com/profile/ProfileMenu.tsx:494
+#: src/view/com/profile/ProfileMenu.tsx:497
msgid "Copy at:// URI"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:153
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:156
msgid "Copy author DID"
msgstr ""
@@ -2486,8 +2488,8 @@ msgid "Copy code"
msgstr ""
#: src/screens/Settings/components/ChangeHandleDialog.tsx:502
-#: src/view/com/profile/ProfileMenu.tsx:502
-#: src/view/com/profile/ProfileMenu.tsx:505
+#: src/view/com/profile/ProfileMenu.tsx:503
+#: src/view/com/profile/ProfileMenu.tsx:506
msgid "Copy DID"
msgstr ""
@@ -2495,52 +2497,52 @@ msgstr ""
msgid "Copy host"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:113
-#: src/screens/StarterPack/StarterPackScreen.tsx:619
+#: src/components/StarterPack/ShareDialog.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:624
msgid "Copy link"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:120
+#: src/components/StarterPack/ShareDialog.tsx:121
msgid "Copy Link"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:165
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:169
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:159
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:163
msgid "Copy link to list"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:128
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:131
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:87
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:90
msgid "Copy link to post"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:269
-#: src/view/com/profile/ProfileMenu.tsx:280
+#: src/view/com/profile/ProfileMenu.tsx:270
+#: src/view/com/profile/ProfileMenu.tsx:281
msgid "Copy link to profile"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:612
+#: src/screens/StarterPack/StarterPackScreen.tsx:617
msgid "Copy link to starter pack"
msgstr ""
+#: src/components/dms/MessageContextMenu.tsx:143
#: src/components/dms/MessageContextMenu.tsx:146
-#: src/components/dms/MessageContextMenu.tsx:149
msgid "Copy message text"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:144
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:147
msgid "Copy post at:// URI"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:510
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:512
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:513
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515
msgid "Copy post text"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:178
+#: src/components/StarterPack/QrCodeDialog.tsx:180
msgid "Copy QR code"
msgstr ""
@@ -2550,7 +2552,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:349
#: src/view/screens/CopyrightPolicy.tsx:34
msgid "Copyright Policy"
msgstr ""
@@ -2567,13 +2569,13 @@ msgstr ""
msgid "Could not find profile"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:208
-#: src/screens/Settings/FindContactsSettings.tsx:397
+#: src/screens/Settings/FindContactsSettings.tsx:211
+#: src/screens/Settings/FindContactsSettings.tsx:402
msgid "Could not follow all matches - please check your network connection."
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:214
-#: src/screens/Settings/FindContactsSettings.tsx:403
+#: src/screens/Settings/FindContactsSettings.tsx:217
+#: src/screens/Settings/FindContactsSettings.tsx:408
msgid "Could not follow all matches. {0}"
msgstr ""
@@ -2582,7 +2584,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr ""
@@ -2608,11 +2610,11 @@ msgstr ""
msgid "Could not update notification settings"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:168
+#: src/components/contacts/screens/GetContacts.tsx:170
msgid "Could not upload contacts. {0}"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:162
+#: src/components/contacts/screens/GetContacts.tsx:164
msgid "Could not upload contacts. You need to re-verify your phone number to proceed"
msgstr ""
@@ -2633,18 +2635,18 @@ msgstr ""
msgid "Create a list"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:163
+#: src/components/StarterPack/QrCodeDialog.tsx:165
msgid "Create a QR code for a starter pack"
msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:206
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
-#: src/Navigation.tsx:599
+#: src/Navigation.tsx:600
msgid "Create a starter pack"
msgstr ""
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2652,20 +2654,20 @@ msgstr ""
msgid "Create a starter pack for me"
msgstr ""
-#: src/components/WelcomeModal.tsx:155
-#: src/components/WelcomeModal.tsx:163
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/components/WelcomeModal.tsx:157
+#: src/components/WelcomeModal.tsx:165
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
msgstr ""
-#: src/screens/Signup/index.tsx:124
+#: src/screens/Signup/index.tsx:135
msgid "Create Account"
msgstr ""
@@ -2676,8 +2678,8 @@ msgstr ""
msgid "Create an account"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:311
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:312
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
msgid "Create an account without using this starter pack"
msgstr ""
@@ -2693,14 +2695,14 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
-#: src/components/moderation/ReportDialog/index.tsx:702
-#: src/components/moderation/ReportDialog/index.tsx:748
+#: src/components/moderation/ReportDialog/index.tsx:696
+#: src/components/moderation/ReportDialog/index.tsx:742
msgid "Create report for {0}"
msgstr ""
@@ -2766,13 +2768,13 @@ msgstr ""
msgid "Dark theme"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:301
+#: src/screens/Signup/StepInfo/index.tsx:299
msgid "Date of birth"
msgstr ""
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr ""
@@ -2796,14 +2798,14 @@ msgstr ""
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:202
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:762
+#: src/components/dms/MessageContextMenu.tsx:199
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765
#: src/screens/Messages/components/ChatStatusInfo.tsx:55
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:280
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:274
#: src/screens/Settings/AppPasswords.tsx:212
-#: src/screens/StarterPack/StarterPackScreen.tsx:601
-#: src/screens/StarterPack/StarterPackScreen.tsx:690
-#: src/screens/StarterPack/StarterPackScreen.tsx:762
+#: src/screens/StarterPack/StarterPackScreen.tsx:606
+#: src/screens/StarterPack/StarterPackScreen.tsx:695
+#: src/screens/StarterPack/StarterPackScreen.tsx:767
msgid "Delete"
msgstr ""
@@ -2833,7 +2835,7 @@ msgstr ""
msgid "Delete chat declaration record"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:539
+#: src/screens/Settings/FindContactsSettings.tsx:545
msgid "Delete contacts"
msgstr ""
@@ -2848,20 +2850,20 @@ msgstr ""
msgid "Delete Conversation"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:160
+#: src/components/dms/MessageContextMenu.tsx:157
msgid "Delete for me"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:204
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:207
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:198
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:201
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:198
+#: src/components/dms/MessageContextMenu.tsx:195
msgid "Delete message"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:158
+#: src/components/dms/MessageContextMenu.tsx:155
msgid "Delete message for me"
msgstr ""
@@ -2869,26 +2871,26 @@ msgstr ""
msgid "Delete my account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:743
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745
-#: src/view/com/composer/Composer.tsx:969
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:595
-#: src/screens/StarterPack/StarterPackScreen.tsx:753
+#: src/screens/StarterPack/StarterPackScreen.tsx:600
+#: src/screens/StarterPack/StarterPackScreen.tsx:758
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:656
+#: src/screens/StarterPack/StarterPackScreen.tsx:661
msgid "Delete starter pack?"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:269
msgid "Delete this list?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:757
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:760
msgid "Delete this post?"
msgstr ""
@@ -2897,11 +2899,11 @@ msgid "Deleted"
msgstr ""
#: src/components/dms/MessagesListHeader.tsx:121
-#: src/screens/Messages/components/ChatListItem.tsx:131
+#: src/screens/Messages/components/ChatListItem.tsx:132
msgid "Deleted Account"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:283
+#: src/components/contacts/screens/PhoneInput.tsx:285
msgid "Deleted by Plivo after verification"
msgstr ""
@@ -2923,21 +2925,21 @@ msgstr ""
msgid "Descriptive alt text"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:647
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:657
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:650
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660
msgid "Detach quote"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:793
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796
msgid "Detach quote post?"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:140
+#: src/screens/Settings/AboutSettings.tsx:138
msgctxt "toast"
msgid "Developer mode disabled"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:134
+#: src/screens/Settings/AboutSettings.tsx:132
msgctxt "toast"
msgid "Developer mode enabled"
msgstr ""
@@ -2947,7 +2949,7 @@ msgstr ""
msgid "Developer options"
msgstr ""
-#: src/components/WhoCanReply.tsx:220
+#: src/components/WhoCanReply.tsx:221
msgid "Dialog: adjust who can interact with this post"
msgstr ""
@@ -2973,11 +2975,11 @@ msgstr ""
msgid "Disable haptic feedback"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:622
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:625
msgid "Disable quote posts of this post"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:459
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:462
msgid "Disable replies entirely"
msgstr ""
@@ -2996,8 +2998,11 @@ msgstr ""
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:807
-#: src/view/com/composer/Composer.tsx:1002
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr ""
@@ -3006,11 +3011,12 @@ msgstr ""
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:804
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:994
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr ""
@@ -3024,7 +3030,7 @@ msgstr ""
msgid "Discover new custom feeds"
msgstr ""
-#: src/screens/Search/Explore.tsx:436
+#: src/screens/Search/Explore.tsx:438
#: src/view/screens/Feeds.tsx:730
msgid "Discover New Feeds"
msgstr ""
@@ -3033,11 +3039,11 @@ msgstr ""
msgid "Dismiss"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:75
+#: src/components/contacts/FindContactsBannerNUX.tsx:76
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1815
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr ""
@@ -3049,11 +3055,16 @@ msgstr ""
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr ""
-#: src/components/FeedInterstitials.tsx:587
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3096,8 +3107,8 @@ msgstr ""
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:104
-#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:37
+#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:105
+#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:38
msgid "Don't show again"
msgstr ""
@@ -3107,8 +3118,8 @@ msgstr ""
#: src/components/contacts/components/InviteInfo.tsx:72
#: src/components/contacts/components/InviteInfo.tsx:78
-#: src/components/contacts/screens/ViewMatches.tsx:392
-#: src/components/contacts/screens/ViewMatches.tsx:409
+#: src/components/contacts/screens/ViewMatches.tsx:394
+#: src/components/contacts/screens/ViewMatches.tsx:411
#: src/components/dialogs/BirthDateSettings.tsx:196
#: src/components/dialogs/BirthDateSettings.tsx:203
#: src/components/dialogs/ServerInput.tsx:240
@@ -3121,8 +3132,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3158,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1123
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr ""
@@ -3164,6 +3175,12 @@ msgstr ""
msgid "Doxxing"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr ""
@@ -3214,9 +3231,9 @@ msgstr ""
#: src/screens/Settings/AccountSettings.tsx:145
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:252
-#: src/screens/StarterPack/StarterPackScreen.tsx:590
-#: src/screens/StarterPack/Wizard/index.tsx:339
-#: src/screens/StarterPack/Wizard/index.tsx:344
+#: src/screens/StarterPack/StarterPackScreen.tsx:595
+#: src/screens/StarterPack/Wizard/index.tsx:340
+#: src/screens/StarterPack/Wizard/index.tsx:345
msgid "Edit"
msgstr ""
@@ -3226,7 +3243,7 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:439
+#: src/view/com/util/UserAvatar.tsx:440
#: src/view/com/util/UserBanner.tsx:121
msgid "Edit avatar"
msgstr ""
@@ -3241,8 +3258,8 @@ msgstr ""
msgid "Edit image"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:724
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:737
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:727
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:740
msgid "Edit interaction settings"
msgstr ""
@@ -3251,13 +3268,13 @@ msgstr ""
msgid "Edit interests"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:196
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:199
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:190
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:193
msgid "Edit list details"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:356
-#: src/view/com/profile/ProfileMenu.tsx:376
+#: src/view/com/profile/ProfileMenu.tsx:357
+#: src/view/com/profile/ProfileMenu.tsx:377
msgid "Edit live status"
msgstr ""
@@ -3265,7 +3282,7 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:359
#: src/view/screens/Feeds.tsx:518
msgid "Edit My Feeds"
msgstr ""
@@ -3278,24 +3295,24 @@ msgstr ""
msgid "Edit People"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:114
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:260
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:115
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:263
msgid "Edit post interaction settings"
msgstr ""
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
+#: src/screens/StarterPack/StarterPackScreen.tsx:587
msgid "Edit starter pack"
msgstr ""
@@ -3303,11 +3320,11 @@ msgstr ""
msgid "Edit user list"
msgstr ""
-#: src/components/WhoCanReply.tsx:114
+#: src/components/WhoCanReply.tsx:115
msgid "Edit who can reply"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:605
msgid "Edit your starter pack"
msgstr ""
@@ -3320,7 +3337,7 @@ msgid "Either the creator of this list has blocked you or you have blocked the c
msgstr ""
#: src/screens/Settings/AccountSettings.tsx:66
-#: src/screens/Signup/StepInfo/index.tsx:225
+#: src/screens/Signup/StepInfo/index.tsx:223
msgid "Email"
msgstr ""
@@ -3359,8 +3376,8 @@ msgstr ""
#: src/components/dialogs/Embed.tsx:104
#: src/components/dialogs/Embed.tsx:108
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:119
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124
msgid "Embed post"
msgstr ""
@@ -3409,7 +3426,7 @@ msgstr ""
msgid "Enable push notifications"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:623
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:626
msgid "Enable quote posts of this post"
msgstr ""
@@ -3426,8 +3443,8 @@ msgstr ""
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:155
-#: src/screens/Settings/ContentAndMediaSettings.tsx:169
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr ""
@@ -3445,7 +3462,7 @@ msgstr ""
msgid "Ensure you have selected a language for each subtitle file."
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:228
+#: src/components/contacts/screens/VerifyNumber.tsx:230
msgid "Enter 6-digit code that was sent to your phone number"
msgstr ""
@@ -3468,7 +3485,7 @@ msgstr ""
msgid "Enter fullscreen"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:223
+#: src/components/contacts/screens/VerifyNumber.tsx:225
msgid "Enter the 6-digit code sent to {prettyNumber}"
msgstr ""
@@ -3489,7 +3506,7 @@ msgid "Enter your birthdate"
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:245
+#: src/screens/Signup/StepInfo/index.tsx:243
msgid "Enter your email address"
msgstr ""
@@ -3497,7 +3514,7 @@ msgstr ""
msgid "Enter your password"
msgstr ""
-#: src/screens/Login/index.tsx:137
+#: src/screens/Login/index.tsx:138
msgid "Enter your username and password"
msgstr ""
@@ -3505,16 +3522,16 @@ msgstr ""
msgid "Enters full screen"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:236
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1900
+#: src/view/com/composer/Composer.tsx:2304
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:90
+#: src/screens/Settings/FindContactsSettings.tsx:92
msgid "Error getting the latest data."
msgstr ""
@@ -3534,7 +3551,7 @@ msgstr ""
msgid "Error occurred while saving file"
msgstr ""
-#: src/screens/Signup/StepCaptcha/index.tsx:125
+#: src/screens/Signup/StepCaptcha/index.tsx:126
msgid "Error receiving captcha response."
msgstr ""
@@ -3542,18 +3559,18 @@ msgstr ""
msgid "Error: {error}"
msgstr ""
-#: src/components/WhoCanReply.tsx:83
+#: src/components/WhoCanReply.tsx:84
msgid "Everybody can reply"
msgstr ""
-#: src/components/WhoCanReply.tsx:277
+#: src/components/WhoCanReply.tsx:278
msgid "Everybody can reply to this post."
msgstr ""
#: src/screens/Messages/Settings.tsx:88
#: src/screens/Messages/Settings.tsx:91
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:167
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:177
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178
msgid "Everyone"
msgstr ""
@@ -3578,11 +3595,7 @@ msgstr ""
msgid "Exits account deletion process"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr ""
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr ""
@@ -3598,7 +3611,7 @@ msgstr ""
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:995
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr ""
@@ -3636,15 +3649,15 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:788
+#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
-#: src/components/WelcomeModal.tsx:168
-#: src/components/WelcomeModal.tsx:177
+#: src/components/WelcomeModal.tsx:170
+#: src/components/WelcomeModal.tsx:179
msgid "Explore the app"
msgstr ""
@@ -3672,7 +3685,7 @@ msgstr ""
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr ""
-#: src/Navigation.tsx:377
+#: src/Navigation.tsx:378
#: src/screens/Settings/ExternalMediaPreferences.tsx:34
msgid "External Media Preferences"
msgstr ""
@@ -3687,11 +3700,11 @@ msgid "Failed to accept chat"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:66
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageContextMenu.tsx:98
msgid "Failed to add emoji reaction"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:270
+#: src/components/dialogs/StarterPackDialog.tsx:271
msgid "Failed to add to starter pack"
msgstr ""
@@ -3703,12 +3716,12 @@ msgstr ""
msgid "Failed to create app password. Please try again."
msgstr ""
-#: src/components/dms/MessageProfileButton.tsx:36
+#: src/components/dms/MessageProfileButton.tsx:37
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:262
-#: src/screens/StarterPack/Wizard/index.tsx:270
+#: src/screens/StarterPack/Wizard/index.tsx:263
+#: src/screens/StarterPack/Wizard/index.tsx:271
msgid "Failed to create starter pack"
msgstr ""
@@ -3718,31 +3731,31 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:81
+#: src/components/dms/MessageContextMenu.tsx:78
msgid "Failed to delete message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:206
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:214
msgid "Failed to delete post, please try again"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:724
+#: src/screens/StarterPack/StarterPackScreen.tsx:729
msgid "Failed to delete starter pack"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:121
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:145
+#: src/components/contacts/screens/ViewMatches.tsx:147
msgid "Failed to follow all your friends, please try again"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:233
+#: src/components/contacts/screens/ViewMatches.tsx:235
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:578
+#: src/components/contacts/screens/ViewMatches.tsx:581
msgid "Failed to launch SMS app"
msgstr ""
@@ -3751,10 +3764,10 @@ msgstr ""
msgid "Failed to load conversations"
msgstr ""
-#: src/screens/Search/Explore.tsx:472
-#: src/screens/Search/Explore.tsx:524
-#: src/screens/Search/Explore.tsx:562
-#: src/screens/Search/Explore.tsx:601
+#: src/screens/Search/Explore.tsx:474
+#: src/screens/Search/Explore.tsx:522
+#: src/screens/Search/Explore.tsx:560
+#: src/screens/Search/Explore.tsx:599
msgid "Failed to load feeds preferences"
msgstr ""
@@ -3784,14 +3797,14 @@ msgstr ""
msgid "Failed to load preference."
msgstr ""
-#: src/screens/Search/Explore.tsx:465
-#: src/screens/Search/Explore.tsx:517
-#: src/screens/Search/Explore.tsx:555
-#: src/screens/Search/Explore.tsx:594
+#: src/screens/Search/Explore.tsx:467
+#: src/screens/Search/Explore.tsx:515
+#: src/screens/Search/Explore.tsx:553
+#: src/screens/Search/Explore.tsx:592
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/screens/Search/Explore.tsx:375
+#: src/screens/Search/Explore.tsx:377
msgid "Failed to load suggested follows"
msgstr ""
@@ -3804,20 +3817,20 @@ msgstr ""
msgid "Failed to pin post"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:481
+#: src/screens/Settings/FindContactsSettings.tsx:487
msgid "Failed to remove data due to a network error, please check your internet connection."
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:487
+#: src/screens/Settings/FindContactsSettings.tsx:493
msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:60
-#: src/components/dms/MessageContextMenu.tsx:95
+#: src/components/dms/MessageContextMenu.tsx:92
msgid "Failed to remove emoji reaction"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:289
+#: src/components/dialogs/StarterPackDialog.tsx:290
msgid "Failed to remove from starter pack"
msgstr ""
@@ -3829,6 +3842,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3858,11 +3875,11 @@ msgstr ""
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:238
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:104
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:106
msgid "Failed to unpin list"
msgstr ""
@@ -3910,11 +3927,12 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:293
+#: src/Navigation.tsx:294
msgid "Feed"
msgstr ""
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr ""
@@ -3927,7 +3945,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:355
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:356
msgid "Feed menu"
msgstr ""
@@ -3941,24 +3959,24 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:296
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:320
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:300
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:324
msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:584
+#: src/Navigation.tsx:585
#: src/screens/SavedFeeds.tsx:108
#: src/screens/Search/SearchResults.tsx:78
-#: src/screens/StarterPack/StarterPackScreen.tsx:190
+#: src/screens/StarterPack/StarterPackScreen.tsx:193
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr ""
@@ -3972,7 +3990,7 @@ msgctxt "toast"
msgid "Feeds updated!"
msgstr ""
-#: src/screens/Search/modules/ExploreRecommendations.tsx:65
+#: src/screens/Search/modules/ExploreRecommendations.tsx:66
msgid "Feeds we think you might like."
msgstr ""
@@ -4000,11 +4018,11 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:161
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "Filter who you receive notifications from"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:328
+#: src/screens/Onboarding/StepFinished/index.tsx:331
msgid "Finalizing"
msgstr ""
@@ -4016,18 +4034,18 @@ msgstr ""
msgid "Finance"
msgstr ""
-#: src/view/com/posts/CustomFeedEmptyState.tsx:71
+#: src/view/com/posts/CustomFeedEmptyState.tsx:72
#: src/view/com/posts/FollowingEmptyState.tsx:53
#: src/view/com/posts/FollowingEndOfFeed.tsx:54
msgid "Find accounts to follow"
msgstr ""
-#: src/Navigation.tsx:425
-#: src/Navigation.tsx:626
+#: src/Navigation.tsx:426
+#: src/Navigation.tsx:627
msgid "Find Contacts"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:76
+#: src/screens/Settings/FindContactsSettings.tsx:78
msgid "Find Friends"
msgstr ""
@@ -4036,15 +4054,15 @@ msgstr ""
msgid "Find friends from contacts"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:270
-#: src/components/contacts/screens/GetContacts.tsx:284
+#: src/components/contacts/screens/GetContacts.tsx:272
+#: src/components/contacts/screens/GetContacts.tsx:286
msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:431
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr ""
@@ -4057,8 +4075,8 @@ msgstr ""
msgid "Find your friends"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:38
-#: src/screens/Settings/FindContactsSettings.tsx:123
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:45
+#: src/screens/Settings/FindContactsSettings.tsx:125
msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more0>"
msgstr ""
@@ -4066,11 +4084,11 @@ msgstr ""
msgid "Find your people"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:278
+#: src/components/contacts/screens/GetContacts.tsx:280
msgid "Finding friends..."
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:218
+#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Finish"
msgstr ""
@@ -4097,24 +4115,24 @@ msgstr ""
#: src/components/ProfileCard.tsx:559
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:140
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:879
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:127
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:856
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr ""
-#: src/state/shell/progress-guide.tsx:231
+#: src/state/shell/progress-guide.tsx:232
msgid "Follow 10 accounts"
msgstr ""
@@ -4126,41 +4144,41 @@ msgstr ""
msgid "Follow 7 accounts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:312
-#: src/view/com/profile/ProfileMenu.tsx:323
+#: src/view/com/profile/ProfileMenu.tsx:313
+#: src/view/com/profile/ProfileMenu.tsx:324
msgid "Follow account"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:273
-#: src/components/contacts/screens/ViewMatches.tsx:288
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:265
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:156
-#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:163
-#: src/screens/Settings/FindContactsSettings.tsx:438
-#: src/screens/Settings/FindContactsSettings.tsx:448
-#: src/screens/StarterPack/StarterPackScreen.tsx:438
-#: src/screens/StarterPack/StarterPackScreen.tsx:446
+#: src/components/contacts/screens/ViewMatches.tsx:275
+#: src/components/contacts/screens/ViewMatches.tsx:290
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
+#: src/screens/Settings/FindContactsSettings.tsx:443
+#: src/screens/Settings/FindContactsSettings.tsx:453
+#: src/screens/StarterPack/StarterPackScreen.tsx:442
+#: src/screens/StarterPack/StarterPackScreen.tsx:450
msgid "Follow all"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:138
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:116
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:391
+#: src/screens/Settings/FindContactsSettings.tsx:396
msgid "Followed all matches"
msgstr ""
@@ -4180,7 +4198,7 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:248
msgid "Followers of @{0} that you know"
msgstr ""
@@ -4194,9 +4212,9 @@ msgstr ""
#: src/components/ProfileCard.tsx:546
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:143
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:877
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,7 +4232,7 @@ msgstr ""
msgid "Following {0}"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:855
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr ""
@@ -4223,7 +4241,7 @@ msgstr ""
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:364
+#: src/Navigation.tsx:365
#: src/screens/Settings/FollowingFeedPreferences.tsx:56
msgid "Following Feed Preferences"
msgstr ""
@@ -4264,8 +4282,8 @@ msgstr ""
msgid "For the best experience, we recommend using the theme font."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:323
-#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:91
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4277,8 +4295,8 @@ msgstr ""
msgid "Forget the noise"
msgstr ""
-#: src/screens/Login/index.tsx:167
-#: src/screens/Login/index.tsx:182
+#: src/screens/Login/index.tsx:168
+#: src/screens/Login/index.tsx:183
msgid "Forgot Password"
msgstr ""
@@ -4294,7 +4312,7 @@ msgstr ""
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:157
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:158
msgid "From"
msgstr ""
@@ -4307,11 +4325,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr ""
@@ -4394,15 +4412,15 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1184
-#: src/screens/VideoFeed/index.tsx:1188
-#: src/view/com/auth/LoggedOut.tsx:72
-#: src/view/com/profile/ProfileFollowers.tsx:180
-#: src/view/com/profile/ProfileFollowers.tsx:181
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
+#: src/view/com/auth/LoggedOut.tsx:73
+#: src/view/com/profile/ProfileFollowers.tsx:178
+#: src/view/com/profile/ProfileFollowers.tsx:179
#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr ""
@@ -4411,8 +4429,8 @@ msgstr ""
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:775
+#: src/screens/Profile/ProfileFeed/index.tsx:100
+#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
msgstr ""
@@ -4429,7 +4447,7 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr ""
-#: src/screens/Bookmarks/index.tsx:285
+#: src/screens/Bookmarks/index.tsx:305
#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr ""
@@ -4438,8 +4456,8 @@ msgstr ""
msgid "Go Home"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:357
-#: src/view/com/profile/ProfileMenu.tsx:378
+#: src/view/com/profile/ProfileMenu.tsx:358
+#: src/view/com/profile/ProfileMenu.tsx:379
msgid "Go live"
msgstr ""
@@ -4450,8 +4468,8 @@ msgstr ""
msgid "Go Live"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:354
-#: src/view/com/profile/ProfileMenu.tsx:374
+#: src/view/com/profile/ProfileMenu.tsx:355
+#: src/view/com/profile/ProfileMenu.tsx:375
msgid "Go live (disabled)"
msgstr ""
@@ -4463,14 +4481,14 @@ msgstr ""
msgid "Go to {firstAuthorName}'s profile"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:91
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:71
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:80
+#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:92
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:72
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:81
#: src/screens/Moderation/index.tsx:219
msgid "Go to account settings"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:363
+#: src/screens/Messages/components/ChatListItem.tsx:364
msgid "Go to conversation with {0}"
msgstr ""
@@ -4498,8 +4516,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr ""
@@ -4515,8 +4533,8 @@ msgstr ""
msgid "Hacking or system attacks"
msgstr ""
-#: src/state/shell/progress-guide.tsx:220
-#: src/state/shell/progress-guide.tsx:230
+#: src/state/shell/progress-guide.tsx:221
+#: src/state/shell/progress-guide.tsx:231
msgid "Half way there!"
msgstr ""
@@ -4539,7 +4557,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr ""
#: src/components/FeedCard.tsx:157
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Happening now"
msgstr ""
@@ -4559,7 +4577,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:549
+#: src/Navigation.tsx:550
msgid "Hashtag"
msgstr ""
@@ -4576,15 +4594,15 @@ msgstr ""
msgid "Have a code? <0>Click here.0>"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:332
+#: src/screens/Signup/StepInfo/index.tsx:330
msgid "Have we got your location wrong? <0>Tap here to confirm your location with GPS.0>"
msgstr ""
-#: src/screens/Signup/index.tsx:220
+#: src/screens/Signup/index.tsx:231
msgid "Having trouble?"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:287
+#: src/components/contacts/screens/PhoneInput.tsx:289
msgid "Held by Bluesky for 7 days to prevent abuse, then deleted"
msgstr ""
@@ -4592,7 +4610,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr ""
@@ -4609,11 +4627,11 @@ msgstr ""
msgid "Hey there 👋"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:170
+#: src/ageAssurance/components/NoAccessScreen.tsx:167
msgid "Hey there!"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:210
+#: src/ageAssurance/components/NoAccessScreen.tsx:207
msgid "Hi there!"
msgstr ""
@@ -4622,7 +4640,7 @@ msgstr ""
msgid "Hidden"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:653
+#: src/screens/VideoFeed/index.tsx:647
msgid "Hidden by your moderation settings."
msgstr ""
@@ -4630,17 +4648,17 @@ msgstr ""
msgid "Hidden list"
msgstr ""
-#: src/components/interstitials/Trending.tsx:130
+#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:773
+#: src/components/moderation/PostHider.tsx:139
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
#: src/lib/moderation/useLabelBehaviorDescription.ts:28
#: src/lib/moderation/useLabelBehaviorDescription.ts:33
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:129
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:130
msgid "Hide"
msgstr ""
@@ -4658,22 +4676,22 @@ msgstr ""
msgid "Hide customization options"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:527
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:530
msgid "Hide lists"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:610
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:613
msgid "Hide post for me"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:631
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
msgid "Hide reply for everyone"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:603
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:606
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:612
msgid "Hide reply for me"
msgstr ""
@@ -4686,21 +4704,21 @@ msgstr ""
msgid "Hide this event"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:771
msgid "Hide this post?"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:771
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:806
msgid "Hide this reply?"
msgstr ""
-#: src/components/interstitials/Trending.tsx:112
+#: src/components/interstitials/Trending.tsx:115
msgid "Hide trending topics"
msgstr ""
-#: src/components/interstitials/Trending.tsx:128
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127
+#: src/components/interstitials/Trending.tsx:131
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128
msgid "Hide trending topics?"
msgstr ""
@@ -4712,13 +4730,13 @@ msgstr ""
msgid "Hide user list"
msgstr ""
-#: src/screens/Moderation/VerificationSettings.tsx:90
-#: src/screens/Moderation/VerificationSettings.tsx:99
+#: src/screens/Moderation/VerificationSettings.tsx:87
+#: src/screens/Moderation/VerificationSettings.tsx:96
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr ""
@@ -4758,11 +4776,11 @@ msgstr ""
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/Navigation.tsx:783
-#: src/Navigation.tsx:803
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/Navigation.tsx:784
+#: src/Navigation.tsx:804
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr ""
@@ -4775,7 +4793,7 @@ msgstr ""
msgid "Hosting provider"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:188
msgid "Hot"
msgstr ""
@@ -4788,7 +4806,7 @@ msgstr ""
msgid "How should we open this link?"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:276
+#: src/components/contacts/screens/PhoneInput.tsx:278
msgid "How we use your number:"
msgstr ""
@@ -4796,7 +4814,7 @@ msgstr ""
msgid "Human trafficking"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:264
+#: src/components/contacts/screens/GetContacts.tsx:266
msgid "I consent to Bluesky using my contacts for mutual friend discovery and to retain hashed data for matching until I opt out."
msgstr ""
@@ -4815,19 +4833,19 @@ msgstr ""
msgid "I understand"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:574
+#: src/components/contacts/screens/ViewMatches.tsx:577
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:351
+#: src/screens/Signup/StepInfo/index.tsx:349
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:122
+#: src/ageAssurance/components/NoAccessScreen.tsx:119
msgid "If you believe your birthdate is incorrect, please <0>contact our support team0>."
msgstr ""
@@ -4839,7 +4857,7 @@ msgstr ""
msgid "If you choose to hide all events, you can always re-enable them from <0>Settings → Content & Media0>."
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:277
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:271
msgid "If you delete this list, you won't be able to recover it."
msgstr ""
@@ -4851,7 +4869,7 @@ msgstr ""
msgid "If you need to update your email, <0>click here0>."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:759
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:762
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
@@ -4872,7 +4890,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr ""
@@ -4880,12 +4898,12 @@ msgstr ""
msgid "Image"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:64
+#: src/screens/Settings/AboutSettings.tsx:62
msgid "Image cache cleared"
msgstr ""
#. Android-only toast message which includes amount of space freed using localized number formatting
-#: src/screens/Settings/AboutSettings.tsx:50
+#: src/screens/Settings/AboutSettings.tsx:48
msgid "Image cache cleared, freed {0}"
msgstr ""
@@ -4902,10 +4920,10 @@ msgstr ""
msgid "Impersonation"
msgstr ""
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:68
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:73
-#: src/screens/Settings/FindContactsSettings.tsx:143
-#: src/screens/Settings/FindContactsSettings.tsx:148
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:75
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:80
+#: src/screens/Settings/FindContactsSettings.tsx:145
+#: src/screens/Settings/FindContactsSettings.tsx:150
msgid "Import contacts"
msgstr ""
@@ -4914,16 +4932,16 @@ msgstr ""
msgid "Import Contacts"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:31
-#: src/components/contacts/FindContactsBannerNUX.tsx:69
+#: src/components/contacts/FindContactsBannerNUX.tsx:32
+#: src/components/contacts/FindContactsBannerNUX.tsx:70
msgid "Import contacts to find your friends"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:507
+#: src/screens/Settings/FindContactsSettings.tsx:513
msgid "Imported on {0}"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:213
+#: src/ageAssurance/components/NoAccessScreen.tsx:210
msgid "In order to provide an age-appropriate experience, we need to know your birthdate. This is a one-time thing, and your data will be kept private."
msgstr ""
@@ -4931,7 +4949,7 @@ msgstr ""
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:146
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:147
msgid "In-app notifications"
msgstr ""
@@ -4984,7 +5002,7 @@ msgstr ""
msgid "Input the code which has been emailed to you"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:135
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:137
msgid "Interaction limited"
msgstr ""
@@ -5013,13 +5031,13 @@ msgstr ""
msgid "Invalid handle. Please try a different one."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:391
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395
msgctxt "toast"
msgid "Invalid interaction settings."
msgstr ""
#: src/components/contacts/phone-number.ts:33
-#: src/components/contacts/screens/PhoneInput.tsx:139
+#: src/components/contacts/screens/PhoneInput.tsx:141
msgid "Invalid phone number"
msgstr ""
@@ -5031,19 +5049,19 @@ msgstr ""
msgid "Invalid Verification Code"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:583
+#: src/components/contacts/screens/ViewMatches.tsx:586
msgid "Invite"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:563
+#: src/components/contacts/screens/ViewMatches.tsx:566
msgid "Invite {name} to join Bluesky"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:195
+#: src/screens/Signup/StepInfo/index.tsx:193
msgid "Invite code"
msgstr ""
-#: src/screens/Signup/state.ts:342
+#: src/screens/Signup/state.ts:346
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr ""
@@ -5052,11 +5070,11 @@ msgstr ""
msgid "Invite Friends"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:298
+#: src/components/contacts/screens/ViewMatches.tsx:300
msgid "Invite friends <0/>"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:81
+#: src/components/StarterPack/ShareDialog.tsx:82
msgid "Invite people to this starter pack!"
msgstr ""
@@ -5068,8 +5086,8 @@ msgstr ""
msgid "Invites, but personal"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:365
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:92
+#: src/ageAssurance/components/NoAccessScreen.tsx:363
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:94
msgid "Is your location not accurate? <0>Tap here to confirm your location.0>"
msgstr ""
@@ -5077,19 +5095,19 @@ msgstr ""
msgid "It looks like some of your contacts have not tried to find you here yet. You can personally invite them by customizing a draft message we will provide."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:384
+#: src/screens/Signup/StepInfo/index.tsx:382
msgid "It's correct"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:491
+#: src/screens/StarterPack/Wizard/index.tsx:492
msgid "It's just <0>{0} 0>right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:486
+#: src/screens/StarterPack/Wizard/index.tsx:487
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1834
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr ""
@@ -5098,10 +5116,10 @@ msgstr ""
msgid "Jobs"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:209
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
-#: src/screens/StarterPack/StarterPackScreen.tsx:464
-#: src/screens/StarterPack/StarterPackScreen.tsx:475
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:216
+#: src/screens/StarterPack/StarterPackScreen.tsx:468
+#: src/screens/StarterPack/StarterPackScreen.tsx:479
msgid "Join Bluesky"
msgstr ""
@@ -5122,20 +5140,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr ""
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr ""
@@ -5151,7 +5169,7 @@ msgstr ""
msgid "Labels on your content"
msgstr ""
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:221
msgid "Language Settings"
msgstr ""
@@ -5165,13 +5183,13 @@ msgstr ""
msgid "Larger"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:348
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:193
+#: src/ageAssurance/components/NoAccessScreen.tsx:346
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:195
msgid "Last initiated {timeAgo} ago"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:346
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:191
+#: src/ageAssurance/components/NoAccessScreen.tsx:344
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:193
msgid "Last initiated just now"
msgstr ""
@@ -5181,9 +5199,9 @@ msgstr ""
msgid "Latest"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:170
-#: src/components/verification/VerifierDialog.tsx:138
-#: src/screens/Moderation/VerificationSettings.tsx:48
+#: src/components/verification/VerificationsDialog.tsx:167
+#: src/components/verification/VerifierDialog.tsx:135
+#: src/screens/Moderation/VerificationSettings.tsx:49
#: src/screens/Profile/Header/EditProfileDialog.tsx:349
#: src/screens/Settings/components/ChangeHandleDialog.tsx:213
#: src/screens/Settings/components/ChangeHandleDialog.tsx:277
@@ -5195,7 +5213,7 @@ msgstr ""
msgid "Learn More"
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:65
+#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66
msgid "Learn more about age assurance"
msgstr ""
@@ -5207,9 +5225,9 @@ msgstr ""
msgid "Learn more about how inviting friends works"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:300
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:45
-#: src/screens/Settings/FindContactsSettings.tsx:130
+#: src/components/contacts/screens/PhoneInput.tsx:302
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:52
+#: src/screens/Settings/FindContactsSettings.tsx:132
msgctxt "english-only-resource"
msgid "Learn more about importing contacts"
msgstr ""
@@ -5218,8 +5236,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr ""
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr ""
@@ -5231,13 +5249,13 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:151
-#: src/components/verification/VerifierDialog.tsx:119
+#: src/components/verification/VerificationsDialog.tsx:152
+#: src/components/verification/VerifierDialog.tsx:120
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -5247,16 +5265,16 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:88
+#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:89
msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr ""
@@ -5286,16 +5304,16 @@ msgstr ""
msgid "left to go."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr ""
-#: src/screens/Login/index.tsx:168
-#: src/screens/Login/index.tsx:183
+#: src/screens/Login/index.tsx:169
+#: src/screens/Login/index.tsx:184
msgid "Let's get your password reset!"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:330
+#: src/screens/Onboarding/StepFinished/index.tsx:333
msgid "Let's go!"
msgstr ""
@@ -5310,12 +5328,12 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:517
msgid "Like"
msgstr ""
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:286
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5323,25 +5341,25 @@ msgstr ""
msgid "Like 10 posts"
msgstr ""
-#: src/state/shell/progress-guide.tsx:216
-#: src/state/shell/progress-guide.tsx:221
+#: src/state/shell/progress-guide.tsx:217
+#: src/state/shell/progress-guide.tsx:222
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/Navigation.tsx:462
+#: src/Navigation.tsx:463
msgid "Like notifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:502
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:504
msgid "Like this feed"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:146
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:147
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:298
-#: src/Navigation.tsx:303
+#: src/Navigation.tsx:299
+#: src/Navigation.tsx:304
msgid "Liked by"
msgstr ""
@@ -5357,39 +5375,39 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:490
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:166
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:180
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:492
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:167
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:126
+#: src/lib/hooks/useNotificationHandler.ts:129
#: src/screens/Settings/NotificationSettings/index.tsx:126
#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:168
+#: src/lib/hooks/useNotificationHandler.ts:171
#: src/screens/Settings/NotificationSettings/index.tsx:207
#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:486
+#: src/Navigation.tsx:487
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:482
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:47
-#: src/screens/PostThread/components/HeaderDropdown.tsx:52
+#: src/screens/PostThread/components/HeaderDropdown.tsx:48
+#: src/screens/PostThread/components/HeaderDropdown.tsx:53
msgid "Linear"
msgstr ""
-#: src/Navigation.tsx:253
+#: src/Navigation.tsx:254
msgid "List"
msgstr ""
@@ -5397,7 +5415,7 @@ msgstr ""
msgid "List avatar"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:50
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:47
msgctxt "toast"
msgid "List blocked"
msgstr ""
@@ -5419,7 +5437,7 @@ msgstr ""
msgid "List creator"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:90
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:92
msgctxt "toast"
msgid "List deleted"
msgstr ""
@@ -5444,7 +5462,7 @@ msgstr ""
msgid "List must have a name."
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:31
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:32
msgctxt "toast"
msgid "List muted"
msgstr ""
@@ -5457,24 +5475,24 @@ msgstr ""
msgid "List name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:116
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:131
+#: src/screens/ProfileList/components/Header.tsx:114
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:129
msgctxt "toast"
msgid "List unblocked"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:98
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:113
+#: src/screens/ProfileList/components/Header.tsx:100
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:115
msgctxt "toast"
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:175
#: src/view/screens/Lists.tsx:67
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr ""
@@ -5491,20 +5509,30 @@ msgstr ""
msgid "LIVE"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:52
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:52
+#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:53
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:53
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:235
+#: src/components/live/LiveStatusDialog.tsx:228
msgid "Live feature is in beta"
msgstr ""
@@ -5515,31 +5543,31 @@ msgstr ""
msgid "Live link"
msgstr ""
-#: src/screens/Search/Explore.tsx:84
+#: src/screens/Search/Explore.tsx:83
msgid "Load more"
msgstr ""
-#: src/screens/Search/Explore.tsx:506
-#: src/screens/Search/Explore.tsx:583
+#: src/screens/Search/Explore.tsx:504
+#: src/screens/Search/Explore.tsx:581
msgid "Load more suggested feeds"
msgstr ""
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
-#: src/view/com/feeds/FeedPage.tsx:169
+#: src/view/com/feeds/FeedPage.tsx:170
msgid "Load new posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:569
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:572
msgid "Loading lists..."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:273
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:276
msgid "Loading post interaction settings..."
msgstr ""
@@ -5547,7 +5575,7 @@ msgstr ""
msgid "Loading..."
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:324
msgid "Log"
msgstr ""
@@ -5564,7 +5592,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr ""
@@ -5638,22 +5666,31 @@ msgstr ""
msgid "Media"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
-#: src/Navigation.tsx:446
+#: src/Navigation.tsx:447
msgid "Mention notifications"
msgstr ""
-#: src/components/WhoCanReply.tsx:318
+#: src/components/WhoCanReply.tsx:319
msgid "mentioned users"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:147
+#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr ""
@@ -5661,20 +5698,20 @@ msgstr ""
msgid "Menu"
msgstr ""
-#: src/components/dms/MessageProfileButton.tsx:97
+#: src/components/dms/MessageProfileButton.tsx:98
msgid "Message {0}"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/MessageContextMenu.tsx:76
msgctxt "toast"
msgid "Message deleted"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:199
+#: src/screens/Messages/components/ChatListItem.tsx:200
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:127
+#: src/components/dms/MessageContextMenu.tsx:124
msgid "Message from @{0}: {1}"
msgstr ""
@@ -5691,11 +5728,11 @@ msgstr ""
msgid "Message is too long"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:125
+#: src/components/dms/MessageContextMenu.tsx:122
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:798
+#: src/Navigation.tsx:799
msgid "Messages"
msgstr ""
@@ -5708,7 +5745,7 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:510
+#: src/Navigation.tsx:511
msgid "Miscellaneous notifications"
msgstr ""
@@ -5716,7 +5753,11 @@ msgstr ""
msgid "Misleading"
msgstr ""
-#: src/Navigation.tsx:179
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
+#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
#: src/screens/Settings/Settings.tsx:195
@@ -5755,7 +5796,7 @@ msgstr ""
msgid "Moderation lists"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:185
#: src/view/screens/ModerationModlists.tsx:67
msgid "Moderation Lists"
msgstr ""
@@ -5764,7 +5805,7 @@ msgstr ""
msgid "moderation settings"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:314
msgid "Moderation states"
msgstr ""
@@ -5777,8 +5818,8 @@ msgstr ""
msgid "Moderator has chosen to set a general warning on the content."
msgstr ""
-#: src/view/shell/desktop/Feeds.tsx:109
-#: src/view/shell/desktop/Feeds.tsx:156
+#: src/view/shell/desktop/Feeds.tsx:106
+#: src/view/shell/desktop/Feeds.tsx:153
msgid "More feeds"
msgstr ""
@@ -5787,9 +5828,10 @@ msgstr ""
msgid "More languages..."
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:149
-#: src/view/com/profile/ProfileMenu.tsx:241
-#: src/view/com/profile/ProfileMenu.tsx:248
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
+#: src/view/com/profile/ProfileMenu.tsx:242
+#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
msgstr ""
@@ -5820,15 +5862,15 @@ msgstr ""
msgid "Mute {tag}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:686
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:692
-#: src/view/com/profile/ProfileMenu.tsx:435
-#: src/view/com/profile/ProfileMenu.tsx:442
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:689
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:695
+#: src/view/com/profile/ProfileMenu.tsx:436
+#: src/view/com/profile/ProfileMenu.tsx:443
msgid "Mute account"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:89
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:92
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:82
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:85
msgid "Mute accounts"
msgstr ""
@@ -5841,11 +5883,11 @@ msgstr ""
msgid "Mute in:"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:115
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:108
msgid "Mute list"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:110
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:103
msgid "Mute these accounts?"
msgstr ""
@@ -5873,13 +5915,13 @@ msgstr ""
msgid "Mute this word until you unmute it"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:574
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:577
msgid "Mute thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:584
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:586
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:589
msgid "Mute words & tags"
msgstr ""
@@ -5887,7 +5929,7 @@ msgstr ""
msgid "Muted accounts"
msgstr ""
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:190
#: src/view/screens/ModerationMutedAccounts.tsx:116
msgid "Muted Accounts"
msgstr ""
@@ -5904,7 +5946,7 @@ msgstr ""
msgid "Muted words & tags"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:112
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:105
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr ""
@@ -5939,12 +5981,12 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr ""
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:333
-#: src/components/moderation/ReportDialog/index.tsx:350
+#: src/components/moderation/ReportDialog/index.tsx:327
+#: src/components/moderation/ReportDialog/index.tsx:344
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -5952,8 +5994,8 @@ msgstr ""
msgid "Nevermind, create a handle for me"
msgstr ""
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196
-#: src/view/com/profile/ProfileMenu.tsx:390
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:193
+#: src/view/com/profile/ProfileMenu.tsx:391
msgid "New"
msgstr ""
@@ -5971,7 +6013,7 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:67
+#: src/components/dms/dialogs/NewChatDialog.tsx:68
#: src/screens/Messages/ChatList.tsx:403
#: src/screens/Messages/ChatList.tsx:410
msgid "New chat"
@@ -5983,15 +6025,15 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:478
+#: src/Navigation.tsx:479
msgid "New follower notifications"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:161
+#: src/lib/hooks/useNotificationHandler.ts:164
#: src/screens/Settings/NotificationSettings/index.tsx:137
#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
msgid "New followers"
@@ -6018,16 +6060,16 @@ msgstr ""
msgid "New password"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr ""
-#: src/view/com/feeds/FeedPage.tsx:180
+#: src/view/com/feeds/FeedPage.tsx:181
msgctxt "action"
msgid "New post"
msgstr ""
@@ -6053,39 +6095,39 @@ msgstr ""
msgid "New user info dialog"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:93
-#: src/screens/PostThread/components/HeaderDropdown.tsx:98
+#: src/screens/PostThread/components/HeaderDropdown.tsx:94
+#: src/screens/PostThread/components/HeaderDropdown.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:72
#: src/screens/Settings/ThreadPreferences.tsx:75
msgid "Newest replies first"
msgstr ""
#: src/lib/interests.ts:67
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:238
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:235
msgid "News"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:392
-#: src/components/contacts/screens/ViewMatches.tsx:407
+#: src/components/contacts/screens/ViewMatches.tsx:394
+#: src/components/contacts/screens/ViewMatches.tsx:409
#: src/screens/Login/ForgotPasswordForm.tsx:137
#: src/screens/Login/ForgotPasswordForm.tsx:143
#: src/screens/Login/LoginForm.tsx:346
#: src/screens/Login/LoginForm.tsx:353
#: src/screens/Login/SetNewPasswordForm.tsx:182
#: src/screens/Login/SetNewPasswordForm.tsx:188
-#: src/screens/Onboarding/StepFinished/index.tsx:323
-#: src/screens/Onboarding/StepFinished/index.tsx:332
+#: src/screens/Onboarding/StepFinished/index.tsx:326
+#: src/screens/Onboarding/StepFinished/index.tsx:335
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165
#: src/screens/Signup/BackNextButtons.tsx:67
-#: src/screens/StarterPack/Wizard/index.tsx:210
-#: src/screens/StarterPack/Wizard/index.tsx:214
-#: src/screens/StarterPack/Wizard/index.tsx:392
-#: src/screens/StarterPack/Wizard/index.tsx:399
+#: src/screens/StarterPack/Wizard/index.tsx:211
+#: src/screens/StarterPack/Wizard/index.tsx:215
+#: src/screens/StarterPack/Wizard/index.tsx:393
+#: src/screens/StarterPack/Wizard/index.tsx:400
msgid "Next"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr ""
@@ -6097,11 +6139,11 @@ msgstr ""
msgid "No app passwords yet"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:677
+#: src/components/contacts/screens/ViewMatches.tsx:680
msgid "No contacts found"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:655
+#: src/components/contacts/screens/ViewMatches.tsx:658
msgid "No contacts with the name “{query}” found"
msgstr ""
@@ -6114,6 +6156,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr ""
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6126,7 +6172,7 @@ msgstr ""
msgid "No feeds found. Try searching for something else."
msgstr ""
-#: src/view/com/profile/ProfileFollowers.tsx:171
+#: src/view/com/profile/ProfileFollowers.tsx:169
msgid "No followers yet"
msgstr ""
@@ -6136,7 +6182,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr ""
@@ -6150,11 +6196,11 @@ msgstr ""
msgid "No longer following {0}"
msgstr ""
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:141
+#: src/screens/Messages/components/ChatListItem.tsx:142
msgid "No messages yet"
msgstr ""
@@ -6162,7 +6208,7 @@ msgstr ""
msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you."
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:559
+#: src/components/contacts/screens/ViewMatches.tsx:562
msgid "No name"
msgstr ""
@@ -6178,7 +6224,7 @@ msgstr ""
msgid "No one"
msgstr ""
-#: src/components/WhoCanReply.tsx:301
+#: src/components/WhoCanReply.tsx:302
msgid "No one but the author can quote this post."
msgstr ""
@@ -6195,7 +6241,7 @@ msgstr ""
msgid "No quotes yet"
msgstr ""
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,11 +6255,11 @@ msgid "No result"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:229
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr ""
-#: src/screens/Search/Explore.tsx:800
+#: src/screens/Search/Explore.tsx:789
msgid "No results for \"{0}\"."
msgstr ""
@@ -6230,7 +6276,7 @@ msgstr ""
msgid "No results found for \"<0>{query}0>\"."
msgstr ""
-#: src/screens/Search/Explore.tsx:804
+#: src/screens/Search/Explore.tsx:793
msgid "No results."
msgstr ""
@@ -6238,7 +6284,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr ""
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,11 +6293,11 @@ msgstr ""
msgid "No thanks"
msgstr ""
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:465
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:468
msgid "Nobody"
msgstr ""
@@ -6285,7 +6331,7 @@ msgid "None"
msgstr ""
#: src/screens/FindContactsFlowScreen.tsx:70
-#: src/screens/Settings/FindContactsSettings.tsx:101
+#: src/screens/Settings/FindContactsSettings.tsx:103
msgid "Not available on this platform."
msgstr ""
@@ -6293,12 +6339,12 @@ msgstr ""
msgid "Not followed by anyone you're following"
msgstr ""
-#: src/Navigation.tsx:169
+#: src/Navigation.tsx:170
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:557
+#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr ""
@@ -6306,7 +6352,7 @@ msgstr ""
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:134
msgid "Note: This post is only visible to logged-in users."
msgstr ""
@@ -6315,13 +6361,13 @@ msgid "Nothing here"
msgstr ""
#: src/screens/Bookmarks/components/EmptyState.tsx:35
-#: src/screens/Bookmarks/index.tsx:281
+#: src/screens/Bookmarks/index.tsx:301
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:432
-#: src/Navigation.tsx:579
-#: src/view/screens/Notifications.tsx:136
+#: src/Navigation.tsx:433
+#: src/Navigation.tsx:580
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr ""
@@ -6333,8 +6379,8 @@ msgstr ""
msgid "Notification Sounds"
msgstr ""
-#: src/Navigation.tsx:574
-#: src/Navigation.tsx:793
+#: src/Navigation.tsx:575
+#: src/Navigation.tsx:794
#: src/screens/Notifications/ActivityList.tsx:30
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90
#: src/screens/Settings/NotificationSettings/index.tsx:92
@@ -6349,10 +6395,10 @@ msgstr ""
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr ""
@@ -6368,8 +6414,8 @@ msgstr ""
msgid "Now"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr ""
@@ -6389,8 +6435,8 @@ msgid "Oh no!"
msgstr ""
#. Confirm button text.
-#: src/components/contacts/screens/GetContacts.tsx:314
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:222
+#: src/components/contacts/screens/GetContacts.tsx:316
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6402,8 +6448,8 @@ msgstr ""
msgid "Okay"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:83
-#: src/screens/PostThread/components/HeaderDropdown.tsx:88
+#: src/screens/PostThread/components/HeaderDropdown.tsx:84
+#: src/screens/PostThread/components/HeaderDropdown.tsx:89
#: src/screens/Settings/ThreadPreferences.tsx:64
#: src/screens/Settings/ThreadPreferences.tsx:67
msgid "Oldest replies first"
@@ -6417,11 +6463,11 @@ msgstr ""
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:398
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:395
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr ""
@@ -6433,7 +6479,7 @@ msgstr ""
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:405
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr ""
@@ -6441,7 +6487,7 @@ msgstr ""
msgid "Only .jpg and .png files are supported"
msgstr ""
-#: src/components/WhoCanReply.tsx:281
+#: src/components/WhoCanReply.tsx:282
msgid "Only {0} can reply."
msgstr ""
@@ -6464,8 +6510,8 @@ msgid "Oops, something went wrong!"
msgstr ""
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,30 +6522,34 @@ msgstr ""
msgid "Open avatar creator"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:198
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:373
-#: src/screens/Messages/components/ChatListItem.tsx:377
+#: src/screens/Messages/components/ChatListItem.tsx:374
+#: src/screens/Messages/components/ChatListItem.tsx:378
msgid "Open conversation options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1481
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:191
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:292
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:297
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
msgid "Open feed options menu"
msgstr ""
@@ -6531,16 +6581,16 @@ msgstr ""
msgid "Open post options menu"
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:205
-#: src/components/live/LiveStatusDialog.tsx:219
+#: src/components/live/LiveStatusDialog.tsx:202
+#: src/components/live/LiveStatusDialog.tsx:212
msgid "Open profile"
msgstr ""
-#: src/components/PostControls/ShareMenu/index.tsx:100
+#: src/components/PostControls/ShareMenu/index.tsx:98
msgid "Open share menu"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:568
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
msgid "Open starter pack menu"
msgstr ""
@@ -6553,15 +6603,15 @@ msgstr ""
msgid "Open system log"
msgstr ""
-#: src/view/shell/desktop/Feeds.tsx:188
+#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:153
msgid "Opens a dialog to choose who can interact with this post"
msgstr ""
@@ -6589,7 +6639,7 @@ msgstr ""
msgid "Opens composer"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:199
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
@@ -6598,21 +6648,21 @@ msgstr ""
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1482
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/view/com/composer/photos/SelectGifBtn.tsx:36
+#: src/view/com/composer/photos/SelectGifBtn.tsx:37
msgid "Opens GIF select dialog"
msgstr ""
@@ -6620,7 +6670,7 @@ msgstr ""
msgid "Opens helpdesk in browser"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:221
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6628,7 +6678,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:581
+#: src/view/com/util/UserAvatar.tsx:579
msgid "Opens live status dialog"
msgstr ""
@@ -6640,12 +6690,16 @@ msgstr ""
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:144
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
msgstr ""
@@ -6679,7 +6733,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr ""
@@ -6741,7 +6795,7 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:229
#: src/screens/Settings/AccountSettings.tsx:121
#: src/screens/Settings/AccountSettings.tsx:125
-#: src/screens/Signup/StepInfo/index.tsx:260
+#: src/screens/Signup/StepInfo/index.tsx:258
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -6755,7 +6809,7 @@ msgstr ""
msgid "Password must be at least 8 characters long."
msgstr ""
-#: src/screens/Login/index.tsx:195
+#: src/screens/Login/index.tsx:196
msgid "Password updated"
msgstr ""
@@ -6775,28 +6829,28 @@ msgstr ""
#: src/screens/ProfileList/index.tsx:166
#: src/screens/Search/SearchResults.tsx:72
-#: src/screens/StarterPack/StarterPackScreen.tsx:189
+#: src/screens/StarterPack/StarterPackScreen.tsx:192
msgid "People"
msgstr ""
-#: src/Navigation.tsx:240
+#: src/Navigation.tsx:241
msgid "People followed by @{0}"
msgstr ""
-#: src/Navigation.tsx:233
+#: src/Navigation.tsx:234
msgid "People following @{0}"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:181
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:191
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:192
msgid "People I follow"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:504
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:507
msgid "People you follow"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:518
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:521
msgid "People you mention"
msgstr ""
@@ -6816,12 +6870,12 @@ msgstr ""
msgid "Pets"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:189
-#: src/components/contacts/screens/PhoneInput.tsx:201
+#: src/components/contacts/screens/PhoneInput.tsx:191
+#: src/components/contacts/screens/PhoneInput.tsx:203
msgid "Phone number"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:301
+#: src/components/contacts/screens/VerifyNumber.tsx:303
msgid "Phone number verified"
msgstr ""
@@ -6829,12 +6883,12 @@ msgstr ""
msgid "Photography"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:527
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:529
#: src/screens/SavedFeeds.tsx:351
msgid "Pin feed"
msgstr ""
@@ -6843,17 +6897,17 @@ msgstr ""
msgid "Pin Feed"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:156
-#: src/screens/ProfileList/components/Header.tsx:163
+#: src/screens/ProfileList/components/Header.tsx:150
+#: src/screens/ProfileList/components/Header.tsx:157
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:338
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:339
msgid "Pin to Home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:478
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:485
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:481
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:488
msgid "Pin to your profile"
msgstr ""
@@ -6861,8 +6915,8 @@ msgstr ""
msgid "Pinned"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:160
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:161
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:175
msgid "Pinned {0} to Home"
msgstr ""
@@ -6870,7 +6924,7 @@ msgstr ""
msgid "Pinned Feeds"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:74
+#: src/screens/ProfileList/components/Header.tsx:76
msgid "Pinned to your feeds"
msgstr ""
@@ -6909,7 +6963,7 @@ msgstr ""
msgid "Plays the video"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -6917,12 +6971,12 @@ msgstr ""
msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive."
msgstr ""
-#: src/screens/Signup/state.ts:289
+#: src/screens/Signup/state.ts:293
msgid "Please choose your handle."
msgstr ""
-#: src/screens/Signup/state.ts:281
-#: src/screens/Signup/StepInfo/index.tsx:151
+#: src/screens/Signup/state.ts:285
+#: src/screens/Signup/StepInfo/index.tsx:153
msgid "Please choose your password."
msgstr ""
@@ -6930,12 +6984,12 @@ msgstr ""
msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky."
msgstr ""
-#: src/screens/Signup/state.ts:304
+#: src/screens/Signup/state.ts:308
msgid "Please complete the verification captcha."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101
-#: src/screens/Signup/StepInfo/index.tsx:140
+#: src/screens/Signup/StepInfo/index.tsx:142
msgid "Please double-check that you have entered your email address correctly."
msgstr ""
@@ -6982,12 +7036,12 @@ msgstr ""
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
-#: src/screens/Signup/state.ts:265
-#: src/screens/Signup/StepInfo/index.tsx:122
+#: src/screens/Signup/state.ts:269
+#: src/screens/Signup/StepInfo/index.tsx:124
msgid "Please enter your email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:115
+#: src/screens/Signup/StepInfo/index.tsx:117
msgid "Please enter your invite code."
msgstr ""
@@ -7024,7 +7078,7 @@ msgstr ""
msgid "Please go back, or activate this element to return to the start of the active content."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:97
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:99
msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status."
msgstr ""
@@ -7040,12 +7094,12 @@ msgstr ""
msgid "Please select a reason for this report"
msgstr ""
-#: src/lib/hooks/useAccountSwitcher.ts:45
-#: src/lib/hooks/useAccountSwitcher.ts:55
+#: src/lib/hooks/useAccountSwitcher.ts:46
+#: src/lib/hooks/useAccountSwitcher.ts:56
msgid "Please sign in as @{0}"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:102
+#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Please use the native app to import your contacts."
msgstr ""
@@ -7062,35 +7116,35 @@ msgid "Please write your message below:"
msgstr ""
#: src/lib/interests.ts:70
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:232
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229
msgid "Politics"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr ""
-#: src/screens/PostThread/index.tsx:531
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr ""
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr ""
@@ -7099,14 +7153,14 @@ msgstr ""
msgid "Post blocked"
msgstr ""
-#: src/Navigation.tsx:266
-#: src/Navigation.tsx:273
-#: src/Navigation.tsx:280
-#: src/Navigation.tsx:287
+#: src/Navigation.tsx:267
+#: src/Navigation.tsx:274
+#: src/Navigation.tsx:281
+#: src/Navigation.tsx:288
msgid "Post by @{0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:186
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:194
msgctxt "toast"
msgid "Post deleted"
msgstr ""
@@ -7118,7 +7172,7 @@ msgstr ""
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:134
#: src/screens/PostThread/components/ThreadItemPost.tsx:112
#: src/screens/PostThread/components/ThreadItemTreePost.tsx:108
-#: src/screens/VideoFeed/index.tsx:557
+#: src/screens/VideoFeed/index.tsx:551
msgid "Post has been deleted"
msgstr ""
@@ -7132,11 +7186,11 @@ msgstr ""
msgid "Post Hidden by You"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:679
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:682
msgid "Post interaction settings"
msgstr ""
-#: src/Navigation.tsx:200
+#: src/Navigation.tsx:201
#: src/screens/ModerationInteractionSettings/index.tsx:34
msgid "Post Interaction Settings"
msgstr ""
@@ -7156,7 +7210,7 @@ msgctxt "toast"
msgid "Post pinned"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:66
+#: src/components/PostControls/BookmarkButton.tsx:67
msgid "Post saved"
msgstr ""
@@ -7169,7 +7223,7 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:262
#: src/screens/ProfileList/index.tsx:166
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216
-#: src/screens/StarterPack/StarterPackScreen.tsx:191
+#: src/screens/StarterPack/StarterPackScreen.tsx:194
#: src/view/screens/Profile.tsx:234
msgid "Posts"
msgstr ""
@@ -7213,11 +7267,11 @@ msgstr ""
msgid "Press to view followers of this account that you also follow"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:118
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:119
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr ""
@@ -7239,8 +7293,8 @@ msgstr ""
msgid "Privacy and security"
msgstr ""
-#: src/Navigation.tsx:409
-#: src/Navigation.tsx:417
+#: src/Navigation.tsx:410
+#: src/Navigation.tsx:418
#: src/screens/Settings/ActivityPrivacySettings.tsx:40
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:44
msgid "Privacy and Security"
@@ -7253,12 +7307,12 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102
-#: src/Navigation.tsx:333
-#: src/screens/Settings/AboutSettings.tsx:92
-#: src/screens/Settings/AboutSettings.tsx:95
+#: src/Navigation.tsx:334
+#: src/screens/Settings/AboutSettings.tsx:90
+#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr ""
@@ -7266,7 +7320,7 @@ msgstr ""
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1897
+#: src/view/com/composer/Composer.tsx:2301
msgid "Processing video..."
msgstr ""
@@ -7280,10 +7334,10 @@ msgstr ""
msgid "profile"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr ""
@@ -7296,7 +7350,7 @@ msgstr ""
msgid "Promoting or selling prohibited items or services"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:160
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:162
msgid "Psst! You can edit who can interact with this post."
msgstr ""
@@ -7305,22 +7359,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr ""
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1101
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1094
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1079
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1086
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7328,7 +7382,7 @@ msgstr ""
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:129
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:130
msgid "Push notifications"
msgstr ""
@@ -7340,19 +7394,19 @@ msgstr ""
msgid "Push, People you follow"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:137
+#: src/components/StarterPack/QrCodeDialog.tsx:139
msgid "QR code copied to your clipboard!"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:115
+#: src/components/StarterPack/QrCodeDialog.tsx:117
msgid "QR code has been downloaded!"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:116
+#: src/components/StarterPack/QrCodeDialog.tsx:118
msgid "QR code saved to your camera roll!"
msgstr ""
-#: src/Navigation.tsx:454
+#: src/Navigation.tsx:455
msgid "Quote notifications"
msgstr ""
@@ -7360,14 +7414,15 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:340
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
msgid "Quote post was re-attached"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:339
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:343
msgid "Quote post was successfully detached"
msgstr ""
@@ -7378,14 +7433,14 @@ msgstr ""
msgid "Quote posts disabled"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:154
+#: src/lib/hooks/useNotificationHandler.ts:157
#: src/screens/Post/PostQuotes.tsx:41
#: src/screens/Settings/NotificationSettings/index.tsx:170
#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
msgid "Quotes"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr ""
@@ -7393,12 +7448,12 @@ msgstr ""
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:106
+#: src/components/contacts/screens/PhoneInput.tsx:108
msgid "Rate limit exceeded. Please try again later."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:646
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:656
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:649
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:659
msgid "Re-attach quote"
msgstr ""
@@ -7419,16 +7474,16 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:159
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:170
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:996
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:996
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr ""
@@ -7454,11 +7509,11 @@ msgstr ""
msgid "Read the Bluesky Terms of Service"
msgstr ""
-#: src/components/WelcomeModal.tsx:146
+#: src/components/WelcomeModal.tsx:148
msgid "Real conversations."
msgstr ""
-#: src/components/WelcomeModal.tsx:144
+#: src/components/WelcomeModal.tsx:146
msgid "Real people."
msgstr ""
@@ -7467,11 +7522,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:135
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:136
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:119
msgid "Receive push notifications"
msgstr ""
@@ -7483,7 +7538,7 @@ msgstr ""
msgid "Recently used"
msgstr ""
-#: src/screens/Search/modules/ExploreRecommendations.tsx:54
+#: src/screens/Search/modules/ExploreRecommendations.tsx:55
msgid "Recommended"
msgstr ""
@@ -7507,12 +7562,12 @@ msgstr ""
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171
#: src/components/dialogs/MutedWords.tsx:443
-#: src/components/dialogs/StarterPackDialog.tsx:374
-#: src/components/dialogs/StarterPackDialog.tsx:380
+#: src/components/dialogs/StarterPackDialog.tsx:375
+#: src/components/dialogs/StarterPackDialog.tsx:381
#: src/components/FeedCard.tsx:375
#: src/components/StarterPack/Wizard/WizardListCard.tsx:105
#: src/components/StarterPack/Wizard/WizardListCard.tsx:112
-#: src/screens/Bookmarks/index.tsx:266
+#: src/screens/Bookmarks/index.tsx:267
#: src/screens/Settings/Settings.tsx:682
#: src/view/com/modals/UserAddRemoveLists.tsx:235
#: src/view/com/posts/PostFeedErrorMessage.tsx:220
@@ -7532,8 +7587,8 @@ msgstr ""
msgid "Remove account"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:548
-#: src/screens/Settings/FindContactsSettings.tsx:556
+#: src/screens/Settings/FindContactsSettings.tsx:554
+#: src/screens/Settings/FindContactsSettings.tsx:562
msgid "Remove all contacts"
msgstr ""
@@ -7541,8 +7596,8 @@ msgstr ""
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:498
-#: src/view/com/util/UserAvatar.tsx:501
+#: src/view/com/util/UserAvatar.tsx:499
+#: src/view/com/util/UserAvatar.tsx:502
msgid "Remove Avatar"
msgstr ""
@@ -7565,10 +7620,10 @@ msgstr ""
msgid "Remove feed?"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:181
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:184
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:175
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:178
#: src/screens/SavedFeeds.tsx:340
msgid "Remove from my feeds"
msgstr ""
@@ -7582,8 +7637,8 @@ msgstr ""
msgid "Remove from saved feeds"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:140
-#: src/screens/Bookmarks/index.tsx:260
+#: src/components/PostControls/BookmarkButton.tsx:141
+#: src/screens/Bookmarks/index.tsx:261
msgid "Remove from saved posts"
msgstr ""
@@ -7617,8 +7672,8 @@ msgstr ""
msgid "Remove subtitle file"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:497
-#: src/screens/Settings/FindContactsSettings.tsx:323
+#: src/components/contacts/screens/ViewMatches.tsx:499
+#: src/screens/Settings/FindContactsSettings.tsx:327
msgid "Remove suggestion"
msgstr ""
@@ -7631,9 +7686,9 @@ msgid "Remove user from list"
msgstr ""
#: src/components/verification/VerificationRemovePrompt.tsx:46
-#: src/components/verification/VerificationsDialog.tsx:252
-#: src/view/com/profile/ProfileMenu.tsx:408
-#: src/view/com/profile/ProfileMenu.tsx:411
+#: src/components/verification/VerificationsDialog.tsx:249
+#: src/view/com/profile/ProfileMenu.tsx:409
+#: src/view/com/profile/ProfileMenu.tsx:412
msgid "Remove verification"
msgstr ""
@@ -7658,17 +7713,17 @@ msgstr ""
msgid "Removed from saved feeds"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:106
-#: src/screens/Bookmarks/index.tsx:218
+#: src/components/PostControls/BookmarkButton.tsx:107
+#: src/screens/Bookmarks/index.tsx:219
msgid "Removed from saved posts"
msgstr ""
-#: src/components/dialogs/StarterPackDialog.tsx:277
+#: src/components/dialogs/StarterPackDialog.tsx:278
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:122
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:74
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:123
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:76
#: src/view/com/posts/FeedShutdownMsg.tsx:44
msgid "Removed from your feeds"
msgstr ""
@@ -7704,7 +7759,7 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:267
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:279
-#: src/lib/hooks/useNotificationHandler.ts:140
+#: src/lib/hooks/useNotificationHandler.ts:143
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218
#: src/screens/Settings/NotificationSettings/index.tsx:148
#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
@@ -7712,21 +7767,21 @@ msgstr ""
msgid "Replies"
msgstr ""
-#: src/components/WhoCanReply.tsx:85
+#: src/components/WhoCanReply.tsx:86
msgid "Replies disabled"
msgstr ""
-#: src/components/WhoCanReply.tsx:279
+#: src/components/WhoCanReply.tsx:280
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1117
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:240
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -7740,36 +7795,36 @@ msgstr ""
msgid "Reply Hidden by You"
msgstr ""
-#: src/Navigation.tsx:438
+#: src/Navigation.tsx:439
msgid "Reply notifications"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:412
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:415
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:69
+#: src/screens/PostThread/components/HeaderDropdown.tsx:70
msgid "Reply sorting"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:377
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:381
msgctxt "toast"
msgid "Reply visibility updated"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:376
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:380
msgid "Reply was successfully hidden"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:168
+#: src/components/dms/MessageContextMenu.tsx:165
#: src/components/dms/MessagesListBlockedFooter.tsx:85
#: src/components/dms/MessagesListBlockedFooter.tsx:92
-#: src/components/live/LiveStatusDialog.tsx:257
+#: src/components/live/LiveStatusDialog.tsx:250
msgid "Report"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:475
-#: src/view/com/profile/ProfileMenu.tsx:478
+#: src/view/com/profile/ProfileMenu.tsx:476
+#: src/view/com/profile/ProfileMenu.tsx:479
msgid "Report account"
msgstr ""
@@ -7782,31 +7837,31 @@ msgid "Report conversation"
msgstr ""
#: src/components/moderation/ReportDialog/index.tsx:90
-#: src/components/moderation/ReportDialog/index.tsx:253
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:543
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:549
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:545
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:551
msgid "Report feed"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:215
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:218
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:209
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:212
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:166
+#: src/components/dms/MessageContextMenu.tsx:163
msgid "Report message"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:712
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:714
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:715
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:717
msgid "Report post"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:632
-#: src/screens/StarterPack/StarterPackScreen.tsx:635
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
+#: src/screens/StarterPack/StarterPackScreen.tsx:640
msgid "Report starter pack"
msgstr ""
@@ -7827,7 +7882,7 @@ msgstr ""
msgid "Report this list"
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:240
+#: src/components/live/LiveStatusDialog.tsx:233
#: src/components/moderation/ReportDialog/copy.ts:19
msgid "Report this livestream"
msgstr ""
@@ -7861,14 +7916,14 @@ msgstr ""
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:470
+#: src/Navigation.tsx:471
msgid "Repost notifications"
msgstr ""
#: src/components/PostControls/RepostButton.tsx:145
#: src/components/PostControls/RepostButton.web.tsx:44
#: src/components/PostControls/RepostButton.web.tsx:104
-#: src/screens/StarterPack/StarterPackScreen.tsx:563
+#: src/screens/StarterPack/StarterPackScreen.tsx:568
msgid "Repost or quote post"
msgstr ""
@@ -7886,23 +7941,23 @@ msgstr ""
msgid "Reposted by you"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:133
+#: src/lib/hooks/useNotificationHandler.ts:136
#: src/screens/Settings/NotificationSettings/index.tsx:181
#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:175
+#: src/lib/hooks/useNotificationHandler.ts:178
#: src/screens/Settings/NotificationSettings/index.tsx:222
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:494
+#: src/Navigation.tsx:495
msgid "Reposts of your reposts notifications"
msgstr ""
@@ -7920,7 +7975,7 @@ msgstr ""
msgid "Require an email code to sign in to your account."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:209
+#: src/screens/Signup/StepInfo/index.tsx:207
msgid "Required for this provider"
msgstr ""
@@ -7932,12 +7987,12 @@ msgstr ""
msgid "Resend"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:362
-#: src/components/contacts/screens/VerifyNumber.tsx:379
+#: src/components/contacts/screens/VerifyNumber.tsx:364
+#: src/components/contacts/screens/VerifyNumber.tsx:381
msgid "Resend code"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:369
+#: src/components/contacts/screens/VerifyNumber.tsx:371
msgid "Resend code in <0>00:{0}0>"
msgstr ""
@@ -7972,8 +8027,8 @@ msgstr ""
msgid "Reset password"
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:516
-#: src/screens/Settings/FindContactsSettings.tsx:532
+#: src/screens/Settings/FindContactsSettings.tsx:522
+#: src/screens/Settings/FindContactsSettings.tsx:538
msgid "Resync contacts"
msgstr ""
@@ -7988,22 +8043,22 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceErrors.tsx:27
#: src/components/ageAssurance/AgeAssuranceErrors.tsx:30
-#: src/components/contacts/screens/VerifyNumber.tsx:347
-#: src/components/contacts/screens/VerifyNumber.tsx:352
+#: src/components/contacts/screens/VerifyNumber.tsx:349
+#: src/components/contacts/screens/VerifyNumber.tsx:354
#: src/components/dms/MessageItem.tsx:322
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:114
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8015,14 +8070,14 @@ msgstr ""
msgid "Retry"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:284
+#: src/components/moderation/ReportDialog/index.tsx:278
#: src/view/screens/Storybook/Admonitions.tsx:60
msgid "Retry loading report options"
msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:219
-#: src/screens/StarterPack/StarterPackScreen.tsx:769
+#: src/screens/StarterPack/StarterPackScreen.tsx:774
msgid "Return to previous page"
msgstr ""
@@ -8030,26 +8085,26 @@ msgstr ""
msgid "Returns to home page"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1185
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/screens/StarterPack/Wizard/index.tsx:325
msgid "Returns to the previous step"
msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:203
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:292
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:307
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:662
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:667
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:665
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:670
#: src/components/live/EditLiveDialog.tsx:202
#: src/components/live/EditLiveDialog.tsx:209
-#: src/components/StarterPack/QrCodeDialog.tsx:204
+#: src/components/StarterPack/QrCodeDialog.tsx:206
#: src/screens/Profile/Header/EditProfileDialog.tsx:236
#: src/screens/Profile/Header/EditProfileDialog.tsx:250
#: src/screens/SavedFeeds.tsx:120
@@ -8063,7 +8118,7 @@ msgstr ""
msgid "Save"
msgstr ""
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr ""
@@ -8076,11 +8131,28 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:142
-#: src/components/StarterPack/ShareDialog.tsx:148
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:143
+#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
msgstr ""
@@ -8088,22 +8160,22 @@ msgstr ""
msgid "Save new handle"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:196
+#: src/components/StarterPack/QrCodeDialog.tsx:198
msgid "Save QR code"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:643
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:649
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:646
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:652
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:321
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:322
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:328
msgid "Save to my feeds"
msgstr ""
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8113,13 +8185,13 @@ msgid "Saved Feeds"
msgstr ""
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:143
-#: src/Navigation.tsx:618
-#: src/screens/Bookmarks/index.tsx:60
+#: src/Navigation.tsx:619
+#: src/screens/Bookmarks/index.tsx:61
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:132
-#: src/screens/ProfileList/components/Header.tsx:85
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:133
+#: src/screens/ProfileList/components/Header.tsx:87
msgid "Saved to your feeds"
msgstr ""
@@ -8155,20 +8227,20 @@ msgstr ""
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr ""
-#: src/Navigation.tsx:259
+#: src/Navigation.tsx:260
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:662
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:353
+#: src/components/contacts/screens/ViewMatches.tsx:355
msgid "Search contacts"
msgstr ""
@@ -8177,12 +8249,12 @@ msgid "Search feeds"
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:491
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:484
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8194,15 +8266,15 @@ msgstr ""
msgid "Search for \"{searchText}\""
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:549
+#: src/screens/StarterPack/Wizard/index.tsx:550
msgid "Search for feeds that you want to suggest to others."
msgstr ""
-#: src/screens/Search/Explore.tsx:362
+#: src/screens/Search/Explore.tsx:364
msgid "Search for more accounts"
msgstr ""
-#: src/screens/Search/Explore.tsx:439
+#: src/screens/Search/Explore.tsx:441
msgid "Search for more feeds"
msgstr ""
@@ -8228,13 +8300,13 @@ msgstr ""
msgid "Search my posts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:291
-#: src/view/com/profile/ProfileMenu.tsx:294
+#: src/view/com/profile/ProfileMenu.tsx:292
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:681
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr ""
@@ -8247,7 +8319,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:682
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,17 +8355,17 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr ""
-#: src/components/FeedInterstitials.tsx:730
-#: src/components/FeedInterstitials.tsx:791
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:712
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
-#: src/view/com/profile/ProfileFollows.tsx:192
-#: src/view/com/profile/ProfileFollows.tsx:193
+#: src/view/com/profile/ProfileFollows.tsx:190
+#: src/view/com/profile/ProfileFollows.tsx:191
msgid "See suggested accounts"
msgstr ""
@@ -8323,11 +8395,11 @@ msgstr ""
msgid "Select a color"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:372
+#: src/components/moderation/ReportDialog/index.tsx:366
msgid "Select a reason"
msgstr ""
-#: src/screens/Login/ChooseAccountForm.tsx:77
+#: src/screens/Login/ChooseAccountForm.tsx:78
msgid "Select account"
msgstr ""
@@ -8359,23 +8431,23 @@ msgstr ""
msgid "Select duration"
msgstr ""
-#: src/screens/Login/index.tsx:158
+#: src/screens/Login/index.tsx:159
msgid "Select from an existing account"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:547
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:550
msgid "Select from your lists"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:549
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:552
msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}0>"
msgstr ""
-#: src/view/com/composer/photos/SelectGifBtn.tsx:35
+#: src/view/com/composer/photos/SelectGifBtn.tsx:36
msgid "Select GIF"
msgstr ""
-#: src/components/dialogs/GifSelect.tsx:294
+#: src/components/dialogs/GifSelect.tsx:295
msgid "Select GIF \"{0}\""
msgstr ""
@@ -8398,7 +8470,7 @@ msgstr ""
msgid "Select languages"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:422
+#: src/components/moderation/ReportDialog/index.tsx:416
msgid "Select moderation service"
msgstr ""
@@ -8439,11 +8511,11 @@ msgstr ""
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:302
+#: src/screens/Signup/StepInfo/index.tsx:300
msgid "Select your date of birth"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:67
+#: src/screens/Onboarding/StepInterests/index.tsx:68
#: src/screens/Settings/InterestsSettings.tsx:165
msgid "Select your interests from the options below"
msgstr ""
@@ -8452,7 +8524,7 @@ msgstr ""
msgid "Select your preferred language for translations in your feed."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:113
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:114
msgid "Select your preferred notification channels"
msgstr ""
@@ -8468,8 +8540,8 @@ msgstr ""
msgid "Send a neat website!"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:252
-#: src/components/contacts/screens/PhoneInput.tsx:257
+#: src/components/contacts/screens/PhoneInput.tsx:254
+#: src/components/contacts/screens/PhoneInput.tsx:259
msgid "Send code"
msgstr ""
@@ -8485,7 +8557,7 @@ msgctxt "action"
msgid "Send Email"
msgstr ""
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr ""
@@ -8494,15 +8566,15 @@ msgstr ""
msgid "Send message"
msgstr ""
-#: src/components/PostControls/ShareMenu/RecentChats.tsx:121
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:122
msgid "Send post to {name}"
msgstr ""
-#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
+#: src/components/dms/dialogs/ShareViaChatDialog.tsx:63
msgid "Send post to..."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:813
+#: src/components/moderation/ReportDialog/index.tsx:807
msgid "Send report to {title}"
msgstr ""
@@ -8516,10 +8588,10 @@ msgstr ""
msgid "Send verification email"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103
-#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:102
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:108
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
msgid "Send via direct message"
msgstr ""
@@ -8527,7 +8599,7 @@ msgstr ""
msgid "Sends email with confirmation code for account deletion"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:280
+#: src/components/contacts/screens/PhoneInput.tsx:282
msgid "Sent to our phone number verification provider Plivo"
msgstr ""
@@ -8543,7 +8615,7 @@ msgstr ""
msgid "Set new password"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:475
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:478
msgid "Set precisely which groups of people can reply to your post"
msgstr ""
@@ -8551,11 +8623,11 @@ msgstr ""
msgid "Set up your account"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:425
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:428
msgid "Set who can reply to your post"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:220
+#: src/ageAssurance/components/NoAccessScreen.tsx:217
msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!"
msgstr ""
@@ -8563,10 +8635,10 @@ msgstr ""
msgid "Sets email for password reset"
msgstr ""
-#: src/Navigation.tsx:215
+#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr ""
@@ -8619,7 +8691,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr ""
@@ -8627,14 +8699,14 @@ msgstr ""
msgid "Sexually Suggestive"
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:192
+#: src/components/StarterPack/QrCodeDialog.tsx:194
#: src/screens/Hashtag.tsx:142
-#: src/screens/StarterPack/StarterPackScreen.tsx:433
+#: src/screens/StarterPack/StarterPackScreen.tsx:437
#: src/screens/Topic.tsx:103
msgid "Share"
msgstr ""
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr ""
@@ -8647,60 +8719,60 @@ msgstr ""
msgid "Share a fun fact!"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:562
+#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Share anyway"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:164
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:162
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165
msgid "Share author DID"
msgstr ""
#: src/components/dialogs/LinkWarning.tsx:96
#: src/components/dialogs/LinkWarning.tsx:104
-#: src/components/StarterPack/ShareDialog.tsx:113
-#: src/components/StarterPack/ShareDialog.tsx:122
+#: src/components/StarterPack/ShareDialog.tsx:114
+#: src/components/StarterPack/ShareDialog.tsx:123
msgid "Share link"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:72
+#: src/components/StarterPack/ShareDialog.tsx:73
msgid "Share link dialog"
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:153
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:156
msgid "Share post at:// URI"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:127
-#: src/components/StarterPack/ShareDialog.tsx:137
+#: src/components/StarterPack/ShareDialog.tsx:128
+#: src/components/StarterPack/ShareDialog.tsx:138
msgid "Share QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:471
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:473
msgid "Share this feed"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:426
+#: src/screens/StarterPack/StarterPackScreen.tsx:430
msgid "Share this starter pack"
msgstr ""
-#: src/components/StarterPack/ShareDialog.tsx:84
+#: src/components/StarterPack/ShareDialog.tsx:85
msgid "Share this starter pack and help people join your community on Bluesky."
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:118
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:121
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:159
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:165
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:171
-#: src/screens/StarterPack/StarterPackScreen.tsx:613
-#: src/screens/StarterPack/StarterPackScreen.tsx:621
-#: src/view/com/profile/ProfileMenu.tsx:269
-#: src/view/com/profile/ProfileMenu.tsx:282
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
+#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/view/com/profile/ProfileMenu.tsx:270
+#: src/view/com/profile/ProfileMenu.tsx:283
msgid "Share via..."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:229
+#: src/components/contacts/screens/GetContacts.tsx:231
msgid "Share your contacts to find friends"
msgstr ""
@@ -8708,25 +8780,25 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:319
msgid "Shared Preferences Tester"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:183
msgid "Show alt text"
msgstr ""
#: src/components/moderation/ScreenHider.tsx:178
#: src/components/moderation/ScreenHider.tsx:181
#: src/screens/List/ListHiddenScreen.tsx:190
+#: src/screens/VideoFeed/index.tsx:650
#: src/screens/VideoFeed/index.tsx:656
-#: src/screens/VideoFeed/index.tsx:662
msgid "Show anyway"
msgstr ""
@@ -8743,8 +8815,8 @@ msgstr ""
msgid "Show customization options"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:541
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:543
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:544
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546
msgid "Show less like this"
msgstr ""
@@ -8752,7 +8824,7 @@ msgstr ""
msgid "Show list anyway"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:528
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:531
msgid "Show lists of users to select from"
msgstr ""
@@ -8765,12 +8837,12 @@ msgstr ""
msgid "Show More"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:533
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:535
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:536
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538
msgid "Show more like this"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14
+#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:15
msgid "Show more replies"
msgstr ""
@@ -8788,12 +8860,12 @@ msgstr ""
msgid "Show replies"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:43
+#: src/screens/PostThread/components/HeaderDropdown.tsx:44
msgid "Show replies as"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:620
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:623
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633
msgid "Show reply for everyone"
msgstr ""
@@ -8820,7 +8892,7 @@ msgstr ""
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr ""
@@ -8828,28 +8900,28 @@ msgstr ""
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
#: src/components/dialogs/Signin.tsx:97
#: src/components/dialogs/Signin.tsx:99
-#: src/components/WelcomeModal.tsx:194
-#: src/components/WelcomeModal.tsx:206
+#: src/components/WelcomeModal.tsx:196
+#: src/components/WelcomeModal.tsx:208
#: src/screens/Hashtag.tsx:240
-#: src/screens/Login/index.tsx:136
-#: src/screens/Login/index.tsx:157
+#: src/screens/Login/index.tsx:137
+#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8859,7 +8931,7 @@ msgstr ""
msgid "Sign in as {0}"
msgstr ""
-#: src/screens/Login/ChooseAccountForm.tsx:81
+#: src/screens/Login/ChooseAccountForm.tsx:82
msgid "Sign in as..."
msgstr ""
@@ -8880,8 +8952,8 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:521
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:522
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:524
msgid "Sign in to view post"
msgstr ""
@@ -8911,38 +8983,34 @@ msgstr ""
msgid "Sign-in Required"
msgstr ""
-#: src/lib/hooks/useAccountSwitcher.ts:41
-#: src/screens/Login/ChooseAccountForm.tsx:53
+#: src/lib/hooks/useAccountSwitcher.ts:42
+#: src/screens/Login/ChooseAccountForm.tsx:54
msgid "Signed in as @{0}"
msgstr ""
-#: src/components/FeedInterstitials.tsx:707
-msgid "Similar accounts"
-msgstr ""
-
-#: src/components/contacts/screens/PhoneInput.tsx:160
-#: src/components/contacts/screens/VerifyNumber.tsx:202
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:78
-#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:82
-#: src/screens/Onboarding/StepFinished/index.tsx:288
-#: src/screens/Onboarding/StepFinished/index.tsx:310
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:252
+#: src/components/contacts/screens/PhoneInput.tsx:162
+#: src/components/contacts/screens/VerifyNumber.tsx:204
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
+#: src/screens/Onboarding/StepFinished/index.tsx:291
+#: src/screens/Onboarding/StepFinished/index.tsx:313
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
-#: src/screens/StarterPack/Wizard/index.tsx:218
+#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:157
-#: src/components/contacts/screens/VerifyNumber.tsx:199
+#: src/components/contacts/screens/PhoneInput.tsx:159
+#: src/components/contacts/screens/VerifyNumber.tsx:201
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/screens/Onboarding/StepFinished/index.tsx:281
-#: src/screens/Onboarding/StepFinished/index.tsx:307
+#: src/screens/Onboarding/StepFinished/index.tsx:284
+#: src/screens/Onboarding/StepFinished/index.tsx:310
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8955,7 +9023,7 @@ msgstr ""
msgid "Snoozes the reminder"
msgstr ""
-#: src/components/WelcomeModal.tsx:148
+#: src/components/WelcomeModal.tsx:150
msgid "Social media you control."
msgstr ""
@@ -8963,15 +9031,15 @@ msgstr ""
msgid "Software Dev"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:120
+#: src/components/verification/VerificationsDialog.tsx:121
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:869
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr ""
-#: src/components/WhoCanReply.tsx:86
+#: src/components/WhoCanReply.tsx:87
msgid "Some people can reply"
msgstr ""
@@ -8979,7 +9047,7 @@ msgstr ""
msgid "Someone reacted {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:243
+#: src/screens/Messages/components/ChatListItem.tsx:244
msgid "Someone reacted {0} to {1}"
msgstr ""
@@ -8992,9 +9060,9 @@ msgid "Something went wrong"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
-#: src/components/moderation/ReportDialog/index.tsx:279
+#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr ""
@@ -9012,20 +9080,20 @@ msgstr ""
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:233
+#: src/components/moderation/ReportDialog/index.tsx:231
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:539
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:541
msgid "Something wrong? Let us know."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
-#: src/App.native.tsx:132
-#: src/App.web.tsx:104
+#: src/App.native.tsx:137
+#: src/App.web.tsx:113
msgid "Sorry! Your session expired. Please sign in again."
msgstr ""
@@ -9055,15 +9123,15 @@ msgid "Spam or other inauthentic behavior or deception"
msgstr ""
#: src/lib/interests.ts:72
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:230
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227
msgid "Sports"
msgstr ""
-#: src/components/PostControls/ShareMenu/RecentChats.tsx:206
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:207
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:74
+#: src/components/dms/dialogs/NewChatDialog.tsx:75
msgid "Start a new chat"
msgstr ""
@@ -9081,9 +9149,9 @@ msgstr ""
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:589
-#: src/Navigation.tsx:594
-#: src/screens/StarterPack/Wizard/index.tsx:209
+#: src/Navigation.tsx:590
+#: src/Navigation.tsx:595
+#: src/screens/StarterPack/Wizard/index.tsx:210
msgid "Starter Pack"
msgstr ""
@@ -9100,11 +9168,11 @@ msgstr ""
msgid "Starter pack by you"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:733
+#: src/screens/StarterPack/StarterPackScreen.tsx:738
msgid "Starter pack is invalid"
msgstr ""
-#: src/screens/Search/Explore.tsx:630
+#: src/screens/Search/Explore.tsx:629
#: src/view/screens/Profile.tsx:240
msgid "Starter Packs"
msgstr ""
@@ -9113,17 +9181,21 @@ msgstr ""
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr ""
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:100
-#: src/screens/Settings/AboutSettings.tsx:103
+#: src/screens/Settings/AboutSettings.tsx:98
+#: src/screens/Settings/AboutSettings.tsx:101
msgid "Status Page"
msgstr ""
#: src/screens/Onboarding/Layout.tsx:226
-#: src/screens/Signup/index.tsx:169
+#: src/screens/Signup/index.tsx:180
msgid "Step {0} of {1}"
msgstr ""
@@ -9131,11 +9203,11 @@ msgstr ""
msgid "Storage cleared, you need to restart the app now."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:291
+#: src/components/contacts/screens/PhoneInput.tsx:293
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:309
#: src/screens/Settings/Settings.tsx:464
msgid "Storybook"
msgstr ""
@@ -9144,8 +9216,8 @@ msgstr ""
msgid "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream."
msgstr ""
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:117
-#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:123
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:119
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:125
#: src/components/live/GoLiveDisabledDialog.tsx:138
#: src/components/live/GoLiveDisabledDialog.tsx:139
#: src/components/moderation/LabelsOnMeDialog.tsx:342
@@ -9163,13 +9235,13 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:500
-#: src/components/moderation/ReportDialog/index.tsx:561
-#: src/components/moderation/ReportDialog/index.tsx:568
+#: src/components/moderation/ReportDialog/index.tsx:494
+#: src/components/moderation/ReportDialog/index.tsx:555
+#: src/components/moderation/ReportDialog/index.tsx:562
msgid "Submit report"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:81
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:74
msgid "Subscribe"
msgstr ""
@@ -9181,20 +9253,20 @@ msgstr ""
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr ""
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:69
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:62
msgid "Subscribe to this list"
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:251
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:158
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:159
msgid "Success"
msgstr ""
@@ -9207,18 +9279,18 @@ msgstr ""
msgid "Successfully verified"
msgstr ""
-#: src/screens/Search/Explore.tsx:359
+#: src/screens/Search/Explore.tsx:361
msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:705
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:155
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr ""
@@ -9232,13 +9304,13 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:329
#: src/view/screens/Support.tsx:34
#: src/view/screens/Support.tsx:37
msgid "Support"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:233
+#: src/components/contacts/screens/PhoneInput.tsx:235
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
@@ -9270,8 +9342,8 @@ msgid "System"
msgstr ""
#: src/screens/Log.tsx:58
-#: src/screens/Settings/AboutSettings.tsx:107
-#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/AboutSettings.tsx:105
+#: src/screens/Settings/AboutSettings.tsx:108
#: src/screens/Settings/Settings.tsx:457
msgid "System log"
msgstr ""
@@ -9292,7 +9364,7 @@ msgstr ""
msgid "Tap for more information"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:336
+#: src/screens/Signup/StepInfo/index.tsx:334
msgid "Tap here to confirm your location with GPS."
msgstr ""
@@ -9314,11 +9386,11 @@ msgstr ""
msgid "Targeted harassment"
msgstr ""
-#: src/state/shell/progress-guide.tsx:235
+#: src/state/shell/progress-guide.tsx:236
msgid "Task complete - 10 follows!"
msgstr ""
-#: src/state/shell/progress-guide.tsx:225
+#: src/state/shell/progress-guide.tsx:226
msgid "Task complete - 10 likes!"
msgstr ""
@@ -9350,12 +9422,12 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:182
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97
-#: src/Navigation.tsx:338
-#: src/screens/Settings/AboutSettings.tsx:84
-#: src/screens/Settings/AboutSettings.tsx:87
+#: src/Navigation.tsx:339
+#: src/screens/Settings/AboutSettings.tsx:82
+#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr ""
@@ -9377,8 +9449,8 @@ msgstr ""
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:394
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:121
+#: src/ageAssurance/components/NoAccessScreen.tsx:392
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:123
msgid "Thanks! You're all set."
msgstr ""
@@ -9386,16 +9458,16 @@ msgstr ""
msgid "That contains the following:"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:110
-#: src/screens/StarterPack/StarterPackScreen.tsx:111
-#: src/screens/StarterPack/StarterPackScreen.tsx:155
-#: src/screens/StarterPack/StarterPackScreen.tsx:156
+#: src/screens/StarterPack/StarterPackScreen.tsx:112
+#: src/screens/StarterPack/StarterPackScreen.tsx:113
+#: src/screens/StarterPack/StarterPackScreen.tsx:157
+#: src/screens/StarterPack/StarterPackScreen.tsx:158
#: src/screens/StarterPack/Wizard/index.tsx:117
#: src/screens/StarterPack/Wizard/index.tsx:127
msgid "That starter pack could not be found."
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:77
+#: src/screens/Signup/StepHandle/index.tsx:80
msgid "That username is already taken"
msgstr ""
@@ -9403,13 +9475,13 @@ msgstr ""
msgid "That's all, folks!"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1157
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
-#: src/view/com/profile/ProfileMenu.tsx:538
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr ""
@@ -9443,11 +9515,11 @@ msgstr ""
msgid "The Discover feed"
msgstr ""
-#: src/state/shell/progress-guide.tsx:226
+#: src/state/shell/progress-guide.tsx:227
msgid "The Discover feed now knows what you like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:332
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -9493,7 +9565,7 @@ msgstr ""
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:743
+#: src/screens/StarterPack/StarterPackScreen.tsx:748
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
@@ -9513,9 +9585,9 @@ msgstr ""
msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:112
-#: src/components/contacts/screens/VerifyNumber.tsx:110
-#: src/components/contacts/screens/VerifyNumber.tsx:162
+#: src/components/contacts/screens/PhoneInput.tsx:114
+#: src/components/contacts/screens/VerifyNumber.tsx:112
+#: src/components/contacts/screens/VerifyNumber.tsx:164
msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again."
msgstr ""
@@ -9527,11 +9599,11 @@ msgstr ""
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:144
+#: src/components/contacts/screens/GetContacts.tsx:146
msgid "There was a problem with your internet connection, please try again"
msgstr ""
@@ -9539,15 +9611,15 @@ msgstr ""
msgid "There was an issue connecting to Tenor."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
-#: src/screens/ProfileList/components/Header.tsx:88
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:76
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:179
+#: src/screens/ProfileList/components/Header.tsx:90
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:78
#: src/screens/SavedFeeds.tsx:97
msgid "There was an issue contacting the server"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:419
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:98
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:421
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:99
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr ""
@@ -9555,8 +9627,8 @@ msgstr ""
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
-#: src/screens/Search/Explore.tsx:999
-#: src/view/com/posts/PostFeed.tsx:755
+#: src/screens/Search/Explore.tsx:988
+#: src/view/com/posts/PostFeed.tsx:757
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -9581,40 +9653,40 @@ msgstr ""
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:138
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:139
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:423
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:436
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:446
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:104
-#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:115
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:440
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:116
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:127
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:253
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294
-#: src/view/com/profile/ProfileMenu.tsx:151
-#: src/view/com/profile/ProfileMenu.tsx:161
-#: src/view/com/profile/ProfileMenu.tsx:175
-#: src/view/com/profile/ProfileMenu.tsx:185
-#: src/view/com/profile/ProfileMenu.tsx:198
-#: src/view/com/profile/ProfileMenu.tsx:210
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:162
+#: src/view/com/profile/ProfileMenu.tsx:176
+#: src/view/com/profile/ProfileMenu.tsx:186
+#: src/view/com/profile/ProfileMenu.tsx:199
+#: src/view/com/profile/ProfileMenu.tsx:211
msgid "There was an issue! {0}"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:238
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:240
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
-#: src/screens/ProfileList/components/Header.tsx:107
-#: src/screens/ProfileList/components/Header.tsx:125
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:122
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:140
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:40
-#: src/screens/ProfileList/components/SubscribeMenu.tsx:59
+#: src/screens/ProfileList/components/Header.tsx:105
+#: src/screens/ProfileList/components/Header.tsx:119
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:120
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:134
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:37
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:52
msgid "There was an issue. Please check your internet connection and try again."
msgstr ""
@@ -9628,7 +9700,7 @@ msgstr ""
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:654
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:657
msgid "These are your default settings"
msgstr ""
@@ -9640,11 +9712,11 @@ msgstr ""
msgid "This {screenDescription} has been flagged:"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:87
+#: src/components/verification/VerificationsDialog.tsx:88
msgid "This account has a checkmark because it's been verified by trusted sources."
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:92
+#: src/components/verification/VerificationsDialog.tsx:93
msgid "This account has one or more attempted verifications, but it is not currently verified."
msgstr ""
@@ -9678,7 +9750,7 @@ msgstr ""
msgid "This chat was disconnected"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:103
+#: src/components/contacts/screens/VerifyNumber.tsx:105
msgid "This code is invalid. Resend to get a new code."
msgstr ""
@@ -9707,10 +9779,14 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:365
+#: src/screens/Messages/components/ChatListItem.tsx:366
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9735,12 +9811,12 @@ msgstr ""
msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later."
msgstr ""
-#: src/view/com/posts/CustomFeedEmptyState.tsx:61
+#: src/view/com/posts/CustomFeedEmptyState.tsx:62
msgid "This feed is empty! You may need to follow more users or tune your language settings."
msgstr ""
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr ""
@@ -9798,35 +9874,35 @@ msgstr ""
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
-#: src/components/WhoCanReply.tsx:272
+#: src/components/WhoCanReply.tsx:273
msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
msgstr ""
-#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143
msgid "This post is only visible to logged-in users."
msgstr ""
-#: src/screens/Bookmarks/index.tsx:256
+#: src/screens/Bookmarks/index.tsx:257
msgid "This post was deleted by its author"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:770
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:773
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:514
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:559
+#: src/view/com/profile/ProfileMenu.tsx:560
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:805
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808
msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
msgstr ""
@@ -9834,7 +9910,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9850,7 +9926,7 @@ msgstr ""
msgid "This user does not have a display name, and therefore cannot be verified."
msgstr ""
-#: src/view/com/profile/ProfileFollowers.tsx:172
+#: src/view/com/profile/ProfileFollowers.tsx:170
msgid "This user doesn't have any followers."
msgstr ""
@@ -9879,7 +9955,7 @@ msgstr ""
msgid "This user is new here. Press for more info about when they joined."
msgstr ""
-#: src/view/com/profile/ProfileFollows.tsx:184
+#: src/view/com/profile/ProfileFollows.tsx:182
msgid "This user isn't following anyone."
msgstr ""
@@ -9891,12 +9967,12 @@ msgstr ""
msgid "This will remove @{0} from the quick access list."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:795
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:23
-#: src/screens/PostThread/components/HeaderDropdown.tsx:26
+#: src/screens/PostThread/components/HeaderDropdown.tsx:24
+#: src/screens/PostThread/components/HeaderDropdown.tsx:27
msgid "Thread options"
msgstr ""
@@ -9909,12 +9985,12 @@ msgstr ""
msgid "Thread Preferences"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:57
-#: src/screens/PostThread/components/HeaderDropdown.tsx:62
+#: src/screens/PostThread/components/HeaderDropdown.tsx:58
+#: src/screens/PostThread/components/HeaderDropdown.tsx:63
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:371
+#: src/Navigation.tsx:372
msgid "Threads Preferences"
msgstr ""
@@ -9935,7 +10011,7 @@ msgstr ""
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:242
+#: src/ageAssurance/components/NoAccessScreen.tsx:239
msgid "To log out, <0>click here0>."
msgstr ""
@@ -9955,15 +10031,15 @@ msgstr ""
msgid "Toggles the sound"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:120
+#: src/components/contacts/screens/VerifyNumber.tsx:122
msgid "Too many attempts. Please wait a few minutes and try again."
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:173
+#: src/components/contacts/screens/VerifyNumber.tsx:175
msgid "Too many codes sent. Please wait a few minutes and try again."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:153
+#: src/components/contacts/screens/GetContacts.tsx:155
msgid "Too many contacts - you've exceeded the number of contacts you can import to find your friends"
msgstr ""
@@ -9973,23 +10049,23 @@ msgstr ""
msgid "Top"
msgstr ""
-#: src/screens/PostThread/components/HeaderDropdown.tsx:73
-#: src/screens/PostThread/components/HeaderDropdown.tsx:78
+#: src/screens/PostThread/components/HeaderDropdown.tsx:74
+#: src/screens/PostThread/components/HeaderDropdown.tsx:79
#: src/screens/Settings/ThreadPreferences.tsx:56
#: src/screens/Settings/ThreadPreferences.tsx:59
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:554
+#: src/Navigation.tsx:555
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:139
-#: src/components/dms/MessageContextMenu.tsx:141
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:502
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:504
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
+#: src/components/dms/MessageContextMenu.tsx:136
+#: src/components/dms/MessageContextMenu.tsx:138
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr ""
@@ -9998,11 +10074,11 @@ msgstr ""
msgid "Tree view"
msgstr ""
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:49
msgid "Trending"
msgstr ""
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:56
msgid "Trending options"
msgstr ""
@@ -10014,7 +10090,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:139
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -10059,14 +10135,14 @@ msgid "Unable to contact your service. Please check your internet connection and
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:68
-#: src/screens/Login/index.tsx:93
+#: src/screens/Login/index.tsx:94
#: src/screens/Login/LoginForm.tsx:169
#: src/screens/Login/SetNewPasswordForm.tsx:81
-#: src/screens/Signup/index.tsx:77
+#: src/screens/Signup/index.tsx:88
msgid "Unable to contact your service. Please check your Internet connection."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:680
msgid "Unable to delete"
msgstr ""
@@ -10078,7 +10154,7 @@ msgstr ""
msgid "Unapply Pull Request {currentChannel}"
msgstr ""
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:41
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:42
msgid "Unavailable"
msgstr ""
@@ -10091,44 +10167,48 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
-#: src/screens/ProfileList/components/Header.tsx:171
-#: src/screens/ProfileList/components/Header.tsx:178
-#: src/view/com/profile/ProfileMenu.tsx:550
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
+#: src/screens/ProfileList/components/Header.tsx:165
+#: src/screens/ProfileList/components/Header.tsx:172
+#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:261
#: src/components/dms/ConvoMenu.tsx:264
-#: src/view/com/profile/ProfileMenu.tsx:455
-#: src/view/com/profile/ProfileMenu.tsx:461
+#: src/view/com/profile/ProfileMenu.tsx:456
+#: src/view/com/profile/ProfileMenu.tsx:462
msgid "Unblock account"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
-#: src/view/com/profile/ProfileMenu.tsx:532
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
+#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:247
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:250
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:241
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:244
msgid "Unblock list"
msgstr ""
-#: src/components/PostControls/BookmarkButton.tsx:42
+#: src/components/PostControls/BookmarkButton.tsx:43
msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,32 +10222,32 @@ msgstr ""
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:311
-#: src/view/com/profile/ProfileMenu.tsx:321
+#: src/view/com/profile/ProfileMenu.tsx:312
+#: src/view/com/profile/ProfileMenu.tsx:322
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:860
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:484
+#: src/components/moderation/ReportDialog/index.tsx:478
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:197
+#: src/ageAssurance/components/NoAccessScreen.tsx:194
msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:182
+#: src/ageAssurance/components/NoAccessScreen.tsx:179
msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region."
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:211
+#: src/components/verification/VerificationsDialog.tsx:208
msgid "Unknown verifier"
msgstr ""
@@ -10179,12 +10259,12 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:515
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:517
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:276
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -10194,8 +10274,8 @@ msgctxt "video"
msgid "Unmute"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:185
-#: src/screens/ProfileList/components/Header.tsx:192
+#: src/screens/ProfileList/components/Header.tsx:179
+#: src/screens/ProfileList/components/Header.tsx:186
msgid "Unmute"
msgstr ""
@@ -10204,10 +10284,10 @@ msgstr ""
msgid "Unmute {tag}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:685
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691
-#: src/view/com/profile/ProfileMenu.tsx:434
-#: src/view/com/profile/ProfileMenu.tsx:440
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:688
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:694
+#: src/view/com/profile/ProfileMenu.tsx:435
+#: src/view/com/profile/ProfileMenu.tsx:441
msgid "Unmute account"
msgstr ""
@@ -10215,13 +10295,13 @@ msgstr ""
msgid "Unmute conversation"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:257
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:260
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:251
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:254
msgid "Unmute list"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:570
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:574
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:577
msgid "Unmute thread"
msgstr ""
@@ -10229,13 +10309,13 @@ msgstr ""
msgid "Unmute video"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:156
-#: src/screens/ProfileList/components/Header.tsx:163
+#: src/screens/ProfileList/components/Header.tsx:150
+#: src/screens/ProfileList/components/Header.tsx:157
msgid "Unpin"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:527
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:522
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:529
#: src/screens/SavedFeeds.tsx:351
msgid "Unpin feed"
msgstr ""
@@ -10244,30 +10324,30 @@ msgstr ""
msgid "Unpin Feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:311
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:313
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:477
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:484
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:480
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:487
msgid "Unpin from profile"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:230
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:233
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:224
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:227
msgid "Unpin moderation list"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:163
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
msgid "Unpinned {0} from Home"
msgstr ""
-#: src/screens/ProfileList/components/Header.tsx:75
+#: src/screens/ProfileList/components/Header.tsx:77
msgid "Unpinned from your feeds"
msgstr ""
-#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:102
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:104
msgid "Unpinned list"
msgstr ""
@@ -10276,7 +10356,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:341
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr ""
@@ -10285,7 +10365,7 @@ msgstr ""
msgid "Unsubscribe from list"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:308
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr ""
@@ -10293,7 +10373,7 @@ msgstr ""
msgid "Unsubscribed from list"
msgstr ""
-#: src/view/com/composer/Composer.tsx:897
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10322,12 +10402,12 @@ msgstr ""
msgid "Update your email"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:344
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:348
msgctxt "toast"
msgid "Updating quote attachment failed"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:396
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
@@ -10344,20 +10424,20 @@ msgstr ""
msgid "Upload a text file to:"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:469
-#: src/view/com/util/UserAvatar.tsx:472
+#: src/view/com/util/UserAvatar.tsx:470
+#: src/view/com/util/UserAvatar.tsx:473
#: src/view/com/util/UserBanner.tsx:159
#: src/view/com/util/UserBanner.tsx:162
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:486
+#: src/view/com/util/UserAvatar.tsx:487
#: src/view/com/util/UserBanner.tsx:176
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:480
-#: src/view/com/util/UserAvatar.tsx:484
+#: src/view/com/util/UserAvatar.tsx:481
+#: src/view/com/util/UserAvatar.tsx:485
#: src/view/com/util/UserBanner.tsx:170
#: src/view/com/util/UserBanner.tsx:174
msgid "Upload from Library"
@@ -10372,7 +10452,7 @@ msgstr ""
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1894
+#: src/view/com/composer/Composer.tsx:2298
msgid "Uploading video..."
msgstr ""
@@ -10445,6 +10525,10 @@ msgstr ""
msgid "User list by {0}"
msgstr ""
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr ""
@@ -10459,15 +10543,15 @@ msgctxt "toast"
msgid "User list updated"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:233
+#: src/screens/Signup/StepHandle/index.tsx:230
msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:217
+#: src/screens/Signup/StepHandle/index.tsx:214
msgid "Username cannot begin or end with a hyphen"
msgstr ""
-#: src/screens/Signup/StepHandle/index.tsx:221
+#: src/screens/Signup/StepHandle/index.tsx:218
msgid "Username must only contain letters (a-z), numbers, and hyphens"
msgstr ""
@@ -10475,11 +10559,11 @@ msgstr ""
msgid "Username or email address"
msgstr ""
-#: src/components/WhoCanReply.tsx:335
+#: src/components/WhoCanReply.tsx:336
msgid "users followed by <0>@{0}0>"
msgstr ""
-#: src/components/WhoCanReply.tsx:322
+#: src/components/WhoCanReply.tsx:323
msgid "users following <0>@{0}0>"
msgstr ""
@@ -10500,28 +10584,28 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:208
-#: src/screens/Moderation/VerificationSettings.tsx:32
+#: src/Navigation.tsx:209
+#: src/screens/Moderation/VerificationSettings.tsx:33
msgid "Verification Settings"
msgstr ""
-#: src/screens/Moderation/VerificationSettings.tsx:41
+#: src/screens/Moderation/VerificationSettings.tsx:42
msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:103
+#: src/components/verification/VerificationsDialog.tsx:104
msgid "Verified by:"
msgstr ""
#: src/components/verification/VerificationCreatePrompt.tsx:84
#: src/components/verification/VerificationCreatePrompt.tsx:86
-#: src/view/com/profile/ProfileMenu.tsx:418
-#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:419
+#: src/view/com/profile/ProfileMenu.tsx:422
msgid "Verify account"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:331
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:176
+#: src/ageAssurance/components/NoAccessScreen.tsx:329
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:178
msgid "Verify again"
msgstr ""
@@ -10547,15 +10631,15 @@ msgstr ""
msgid "Verify email dialog"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:319
-#: src/ageAssurance/components/NoAccessScreen.tsx:333
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:164
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:178
+#: src/ageAssurance/components/NoAccessScreen.tsx:317
+#: src/ageAssurance/components/NoAccessScreen.tsx:331
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:166
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:180
msgid "Verify now"
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:172
-#: src/components/contacts/screens/VerifyNumber.tsx:214
+#: src/components/contacts/screens/PhoneInput.tsx:174
+#: src/components/contacts/screens/VerifyNumber.tsx:216
msgid "Verify phone number"
msgstr ""
@@ -10579,21 +10663,21 @@ msgid "Verify your email"
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:296
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:207
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:208
msgid "Verifying"
msgstr ""
-#: src/ageAssurance/components/RedirectOverlay.tsx:165
+#: src/ageAssurance/components/RedirectOverlay.tsx:164
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74
msgid "Verifying your age assurance status"
msgstr ""
-#: src/components/contacts/screens/VerifyNumber.tsx:304
+#: src/components/contacts/screens/VerifyNumber.tsx:306
msgid "Verifying..."
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:126
-#: src/screens/Settings/AboutSettings.tsx:155
+#: src/screens/Settings/AboutSettings.tsx:124
+#: src/screens/Settings/AboutSettings.tsx:153
msgid "Version {0}"
msgstr ""
@@ -10606,7 +10690,7 @@ msgstr ""
msgid "Video failed to process"
msgstr ""
-#: src/Navigation.tsx:610
+#: src/Navigation.tsx:611
msgid "Video Feed"
msgstr ""
@@ -10614,16 +10698,20 @@ msgstr ""
msgid "Video from {0}: {text}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:234
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1115
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1115
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr ""
@@ -10635,7 +10723,7 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1904
+#: src/view/com/composer/Composer.tsx:2308
msgid "Video uploaded"
msgstr ""
@@ -10651,19 +10739,19 @@ msgstr ""
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:586
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:267
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr ""
#: src/components/ProfileCard.tsx:142
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:456
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:819
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr ""
@@ -10684,8 +10772,8 @@ msgstr ""
msgid "View debug entry"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:684
-#: src/screens/VideoFeed/index.tsx:702
+#: src/screens/VideoFeed/index.tsx:678
+#: src/screens/VideoFeed/index.tsx:696
msgid "View details"
msgstr ""
@@ -10697,18 +10785,18 @@ msgstr ""
msgid "View information about these labels"
msgstr ""
-#: src/components/interstitials/TrendingVideos.tsx:198
-#: src/components/interstitials/TrendingVideos.tsx:220
-#: src/screens/Search/modules/ExploreTrendingVideos.tsx:193
-#: src/screens/Search/modules/ExploreTrendingVideos.tsx:212
+#: src/components/interstitials/TrendingVideos.tsx:199
+#: src/components/interstitials/TrendingVideos.tsx:221
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:190
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:209
msgid "View more"
msgstr ""
-#: src/components/interstitials/TrendingVideos.tsx:226
+#: src/components/interstitials/TrendingVideos.tsx:227
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:581
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10729,11 +10817,11 @@ msgstr ""
msgid "View the labeling service provided by @{0}"
msgstr ""
-#: src/components/verification/VerificationCheckButton.tsx:99
+#: src/components/verification/VerificationCheckButton.tsx:100
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:488
msgid "View users who like this feed"
msgstr ""
@@ -10762,7 +10850,7 @@ msgstr ""
msgid "View your muted accounts"
msgstr ""
-#: src/components/verification/VerificationCheckButton.tsx:98
+#: src/components/verification/VerificationCheckButton.tsx:99
msgid "View your verifications"
msgstr ""
@@ -10788,7 +10876,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10810,12 +10898,12 @@ msgstr ""
msgid "Warn content and filter from feeds"
msgstr ""
-#: src/components/live/LiveStatusDialog.tsx:172
-#: src/components/live/LiveStatusDialog.tsx:185
+#: src/components/live/LiveStatusDialog.tsx:173
+#: src/components/live/LiveStatusDialog.tsx:182
msgid "Watch now"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:250
+#: src/components/contacts/screens/GetContacts.tsx:252
msgid "We apply the highest privacy standards, and never share or sell your contact information."
msgstr ""
@@ -10839,7 +10927,7 @@ msgstr ""
msgid "We couldn't load this conversation"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:241
+#: src/components/contacts/screens/GetContacts.tsx:243
msgid "We delete hashes after matches are made"
msgstr ""
@@ -10859,15 +10947,15 @@ msgstr ""
msgid "We have sent another verification email to <0>{0}0>."
msgstr ""
-#: src/components/contacts/screens/PhoneInput.tsx:181
+#: src/components/contacts/screens/PhoneInput.tsx:183
msgid "We need to verify your number before we can look for your friends. A verification code will be sent to this number."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:238
+#: src/components/contacts/screens/GetContacts.tsx:240
msgid "We never keep plain phone numbers"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:244
+#: src/components/contacts/screens/GetContacts.tsx:246
msgid "We only suggest follows if both people consent"
msgstr ""
@@ -10900,7 +10988,7 @@ msgid "We were unable to load your configured labelers at this time."
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:304
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:215
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:216
msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically."
msgstr ""
@@ -10908,7 +10996,7 @@ msgstr ""
msgid "We will let you know when your account is ready."
msgstr ""
-#: src/screens/Settings/FindContactsSettings.tsx:503
+#: src/screens/Settings/FindContactsSettings.tsx:509
msgid "We will notify you when we find your friends."
msgstr ""
@@ -10916,7 +11004,7 @@ msgstr ""
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:60
+#: src/screens/Onboarding/StepInterests/index.tsx:61
msgid "We'll use this to help customize your experience."
msgstr ""
@@ -10929,7 +11017,7 @@ msgid "We're also updating our Community Guidelines, and we want your input! The
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:310
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:222
msgid "We're confirming your age assurance status with our servers. This should only take a few seconds."
msgstr ""
@@ -10938,20 +11026,20 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:189
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:95
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "We're so excited to have you join us!"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:387
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:114
+#: src/ageAssurance/components/NoAccessScreen.tsx:385
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:116
msgid "We're sorry, but based on your device's location, you are currently located in a region that requires age assurance."
msgstr ""
@@ -10968,7 +11056,7 @@ msgstr ""
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr ""
-#: src/view/com/composer/Composer.tsx:511
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
@@ -10977,7 +11065,7 @@ msgstr ""
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:216
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr ""
@@ -10998,7 +11086,7 @@ msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Poli
msgstr ""
#: src/ageAssurance/components/RedirectOverlay.tsx:256
-#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:163
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164
msgid "We've confirmed your age assurance status. You can now close this dialog."
msgstr ""
@@ -11010,7 +11098,7 @@ msgstr ""
msgid "Welcome, friend!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:57
+#: src/screens/Onboarding/StepInterests/index.tsx:58
msgid "What are your interests?"
msgstr ""
@@ -11018,14 +11106,13 @@ msgstr ""
msgid "What do you want to call your starter pack?"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:857
-#: src/view/com/feeds/ComposerPrompt.tsx:189
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:147
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -11033,16 +11120,16 @@ msgstr ""
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr ""
-#: src/components/WhoCanReply.tsx:224
+#: src/components/WhoCanReply.tsx:225
msgid "Who can interact with this post?"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:421
-#: src/components/WhoCanReply.tsx:114
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:424
+#: src/components/WhoCanReply.tsx:115
msgid "Who can reply"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:128
msgid "Who can verify?"
msgstr ""
@@ -11097,6 +11184,14 @@ msgstr ""
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11202,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:957
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:855
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr ""
@@ -11133,20 +11228,20 @@ msgstr ""
msgid "Yes"
msgstr ""
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:687
+#: src/screens/StarterPack/StarterPackScreen.tsx:692
msgid "Yes, delete this starter pack"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
msgid "Yes, detach"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
msgid "Yes, hide"
msgstr ""
@@ -11158,11 +11253,11 @@ msgstr ""
msgid "Yesterday"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:59
+#: src/components/verification/VerifierDialog.tsx:60
msgid "You are a trusted verifier"
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:173
+#: src/ageAssurance/components/NoAccessScreen.tsx:170
msgid "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app."
msgstr ""
@@ -11174,8 +11269,8 @@ msgstr ""
msgid "You are currently blocked from using the Go Live feature. To appeal this moderation decision, please submit the form below."
msgstr ""
-#: src/ageAssurance/components/NoAccessScreen.tsx:301
-#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:134
+#: src/ageAssurance/components/NoAccessScreen.tsx:299
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:136
msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team0> if you believe this is an error."
msgstr ""
@@ -11188,7 +11283,7 @@ msgstr ""
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:212
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11196,15 +11291,15 @@ msgstr ""
msgid "You are not allowed to upload videos."
msgstr ""
-#: src/view/com/profile/ProfileFollows.tsx:183
+#: src/view/com/profile/ProfileFollows.tsx:181
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:157
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:64
+#: src/components/verification/VerificationsDialog.tsx:65
msgid "You are verified"
msgstr ""
@@ -11229,11 +11324,11 @@ msgstr ""
msgid "You can also temporarily deactivate your account instead, and reactivate it at any time."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:247
+#: src/components/contacts/screens/GetContacts.tsx:249
msgid "You can always opt out and delete your data"
msgstr ""
-#: src/lib/hooks/useNotificationHandler.ts:101
+#: src/lib/hooks/useNotificationHandler.ts:104
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
@@ -11241,7 +11336,7 @@ msgstr ""
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:383
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
msgctxt "toast"
msgid "You can hide a maximum of {MAX_HIDDEN_REPLIES} replies."
msgstr ""
@@ -11250,7 +11345,7 @@ msgstr ""
msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button."
msgstr ""
-#: src/screens/Login/index.tsx:196
+#: src/screens/Login/index.tsx:197
#: src/screens/Login/PasswordUpdatedForm.tsx:26
msgid "You can now sign in with your new password."
msgstr ""
@@ -11272,9 +11367,9 @@ msgstr ""
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
-#: src/components/interstitials/Trending.tsx:129
+#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:137
-#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:129
msgid "You can update this later from your settings."
msgstr ""
@@ -11291,7 +11386,7 @@ msgstr ""
msgid "You don't have any chat requests at the moment."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:583
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:586
msgid "You don't have any lists yet."
msgstr ""
@@ -11303,7 +11398,7 @@ msgstr ""
msgid "You don't have any saved feeds."
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:309
+#: src/components/contacts/screens/ViewMatches.tsx:311
msgid "You got here first"
msgstr ""
@@ -11317,7 +11412,7 @@ msgstr ""
msgid "You have blocked this user. You cannot view their content."
msgstr ""
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11471,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr ""
@@ -11425,11 +11528,11 @@ msgstr ""
msgid "You may only add up to 3 feeds"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:322
+#: src/screens/Signup/StepInfo/index.tsx:320
msgid "You must be {0} years of age or older to create an account in your region."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:317
+#: src/screens/Signup/StepInfo/index.tsx:315
msgid "You must be {MIN_ACCESS_AGE} years of age or older to create an account."
msgstr ""
@@ -11437,15 +11540,15 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr ""
-#: src/components/ageAssurance/AgeRestrictedScreen.tsx:60
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:61
msgid "You must complete age assurance in order to access this screen."
msgstr ""
-#: src/components/StarterPack/QrCodeDialog.tsx:65
+#: src/components/StarterPack/QrCodeDialog.tsx:67
msgid "You must grant access to your photo library to save a QR code"
msgstr ""
@@ -11469,7 +11572,7 @@ msgstr ""
msgid "You reacted {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:220
+#: src/screens/Messages/components/ChatListItem.tsx:221
msgid "You reacted {0} to {1}"
msgstr ""
@@ -11487,11 +11590,11 @@ msgstr ""
msgid "You will no longer receive notifications for {0}"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:231
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:239
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/components/PostControls/PostMenu/PostMenuItems.tsx:221
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:229
msgid "You will now receive notifications for this thread"
msgstr ""
@@ -11499,35 +11602,35 @@ msgstr ""
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:156
+#: src/screens/Messages/components/ChatListItem.tsx:157
msgid "You: {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:185
+#: src/screens/Messages/components/ChatListItem.tsx:186
msgid "You: {defaultEmbeddedContentMessage}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:178
+#: src/screens/Messages/components/ChatListItem.tsx:179
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:141
+#: src/screens/Signup/index.tsx:152
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:146
+#: src/screens/Signup/index.tsx:157
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:244
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:245
msgid "You'll follow these people and {0} others"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:242
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:243
msgid "You'll follow these people right away"
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:311
+#: src/components/contacts/screens/GetContacts.tsx:313
msgid "You'll need to go to the System Settings for Bluesky and give permission if you want to use this feature."
msgstr ""
@@ -11535,7 +11638,7 @@ msgstr ""
msgid "You'll start receiving notifications for {0}!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:282
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:283
msgid "You'll stay updated with these feeds"
msgstr ""
@@ -11544,7 +11647,7 @@ msgid "You're in line"
msgstr ""
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -11557,11 +11660,11 @@ msgstr ""
msgid "You've chosen to hide a word or tag within this post."
msgstr ""
-#: src/components/contacts/screens/GetContacts.tsx:310
+#: src/components/contacts/screens/GetContacts.tsx:312
msgid "You've denied access to your contacts"
msgstr ""
-#: src/state/shell/progress-guide.tsx:236
+#: src/state/shell/progress-guide.tsx:237
msgid "You've found some people to follow"
msgstr ""
@@ -11589,11 +11692,11 @@ msgstr ""
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1166
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
-#: src/screens/Signup/index.tsx:179
+#: src/screens/Signup/index.tsx:190
msgid "Your account"
msgstr ""
@@ -11621,7 +11724,7 @@ msgstr ""
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:289
+#: src/screens/Signup/StepInfo/index.tsx:287
msgid "Your birth date"
msgstr ""
@@ -11645,7 +11748,7 @@ msgstr ""
msgid "Your contact {firstAuthorName} is on Bluesky"
msgstr ""
-#: src/components/contacts/screens/ViewMatches.tsx:451
+#: src/components/contacts/screens/ViewMatches.tsx:453
msgid "Your contact {name}"
msgstr ""
@@ -11665,8 +11768,8 @@ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:51
#: src/screens/Settings/components/ChangePasswordDialog.tsx:81
-#: src/screens/Signup/state.ts:273
-#: src/screens/Signup/StepInfo/index.tsx:129
+#: src/screens/Signup/state.ts:277
+#: src/screens/Signup/StepInfo/index.tsx:131
msgid "Your email appears to be invalid."
msgstr ""
@@ -11674,11 +11777,11 @@ msgstr ""
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
-#: src/state/shell/progress-guide.tsx:215
+#: src/state/shell/progress-guide.tsx:216
msgid "Your first like!"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:490
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:493
msgid "Your followers"
msgstr ""
@@ -11690,7 +11793,7 @@ msgstr ""
msgid "Your full handle will be <0>@{0}0>"
msgstr ""
-#: src/Navigation.tsx:526
+#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
#: src/screens/Settings/ContentAndMediaSettings.tsx:93
#: src/screens/Settings/ContentAndMediaSettings.tsx:96
@@ -11715,7 +11818,7 @@ msgstr ""
msgid "Your location data is not tracked and does not leave your device."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:367
+#: src/screens/Signup/StepInfo/index.tsx:365
msgid "Your location has been updated."
msgstr ""
@@ -11727,15 +11830,15 @@ msgstr ""
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:158
+#: src/screens/Signup/StepInfo/index.tsx:160
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:574
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,15 +11855,15 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr ""
-#: src/view/com/composer/Composer.tsx:576
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:511
+#: src/components/moderation/ReportDialog/index.tsx:505
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -11768,7 +11871,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/components/verification/VerificationsDialog.tsx:65
+#: src/components/verification/VerificationsDialog.tsx:66
msgid "Your verifications"
msgstr ""
diff --git a/src/locale/locales/ne/messages.po b/src/locale/locales/ne/messages.po
index 9c815aff5e..ea03ee72bc 100644
--- a/src/locale/locales/ne/messages.po
+++ b/src/locale/locales/ne/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ne\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Nepali\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# पुन: पोष्ट} other {# पुन: प
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# सेकेन्ड} other {# सेकेन्डहरू}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {अनुगामी} other {अनुगामीह
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {अनुगमन गरिरहेको} other {अनुगमन गरिरहेका}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {मन पराइएको} other {मन पराइएका}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {मन पराइएको} other {मन परा
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {पोष्ट} other {पोष्टहरू}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {उद्धरण} other {उद्धरणहरू}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {पुन: पोष्ट} other {पुन: पोष्टहरू}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr ""
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
@@ -432,7 +436,7 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1> र {2, plural, one {# other} other {# others}} तपाईंको स्टार्टर प्याकमा समावेश छन्"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {अनुगामी} other {अनुगामीहरू}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {पछ्याउँदै छन्} other {पछ्याउँदै छन्}}"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "जारी राख्न {0} थप्नुहोस्"
msgid "Add {displayName} to starter pack"
msgstr "स्टार्टर प्याकमा {displayName} थप्नुहोस्"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "सामग्री चेतावनी थप्नुहोस्"
@@ -754,11 +763,11 @@ msgstr "वैकल्पिक पाठ थप्नुहोस् (ऐच
msgid "Add another account"
msgstr "अर्को खाता थप्नुहोस्"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "अर्को पोष्ट थप्नुहोस्"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "एप पासवर्ड थप्नुहोस्"
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "वयस्क"
@@ -879,10 +888,10 @@ msgstr "वयस्क"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "वयस्क सामग्री"
@@ -894,8 +903,8 @@ msgstr "वयस्क सामग्री मात्र वेब मा
msgid "Adult content is disabled."
msgstr "वयस्क सामग्री अक्षम छ।"
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "वयस्क सामग्रीका लेबलहरू"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr ""
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "पहिले नै @{0} को रूपमा साइन इन गरिएको छ"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "वैकल्पिक"
msgid "Alt text"
msgstr "वैकल्पिक पाठ"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "वैकल्पिक पाठ"
@@ -1059,7 +1068,7 @@ msgstr "एक इमेल {0} मा पठाइएको छ। यसमा
msgid "An error has occurred"
msgstr "त्रुटि भएको छ"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "त्रुटि भयो"
@@ -1067,7 +1076,7 @@ msgstr "त्रुटि भयो"
msgid "An error occurred while compressing the video."
msgstr "भिडियो संकुचन गर्दा त्रुटि भयो।"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "तपाईंको स्टार्टर प्याक निर्माण गर्दा त्रुटि भयो। के पुन: प्रयास गर्न चाहनुहुन्छ?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "भिडियो लोड गर्दा त्रुटि भयो। कृपया पछि पुन: प्रयास गर्नुहोस्।"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "भिडियो लोड गर्दा त्रुटि भयो। कृपया पुन: प्रयास गर्नुहोस्।"
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "जनावरहरू"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "एनिमेटेड GIF"
@@ -1306,12 +1315,12 @@ msgstr "डिफल्ट सिफारिस गरिएका फिडह
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "{0} बाट आर्काइभ गरिएको"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "आर्काइभ गरिएको पोस्ट"
@@ -1332,11 +1341,11 @@ msgstr "के तपाईं यो स्टार्टर प्याक
msgid "Are you sure you want to discard your changes?"
msgstr "के तपाईं आफ्ना परिवर्तनहरू हटाउन निश्चित हुनुहुन्छ?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "के तपाईं यो कुराकानी छोड्न निश्चित हुनुहुन्छ? तपाईंका सन्देशहरू तपाईंको लागि मेटिनेछन्, तर अर्को सहभागीको लागि होइन।"
@@ -1344,11 +1353,7 @@ msgstr "के तपाईं यो कुराकानी छोड्न
msgid "Are you sure you want to remove this from your feeds?"
msgstr "के तपाईं यसलाई आफ्नो फिडहरूबाट हटाउन निश्चित हुनुहुन्छ?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "के तपाईं यस मस्यौदा हटाउन चाहनुहुन्छ?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "के तपाईं यस पोस्ट हटाउन चाहनुहुन्छ?"
@@ -1364,7 +1369,7 @@ msgstr ""
msgid "Art"
msgstr "कला"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "कलात्मक वा गैर-इरोटिक नग्नता।"
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "भिडियो र GIF हरू अटोप्ले गर्नुहोस्"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "फिर्ता"
@@ -1578,7 +1585,7 @@ msgstr "ब्लग"
msgid "Bluesky"
msgstr "ब्लूस्काई"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "ब्लूस्काईले दाबी गरिएको मितिको प्रामाणिकता पुष्टि गर्न सक्दैन।"
@@ -1623,7 +1630,7 @@ msgstr ""
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "ब्लूस्काई तपाईंको नेटवर्कका मानिसहरूबाट सिफारिस गरिएका खाताहरूको सेट चयन गर्नेछ।"
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "एक्सप्लोर पृष्ठमा थप फिड ब्राउज गर्नुहोस्"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "थप सुझावहरू ब्राउज गर्नुहोस्"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "एक्सप्लोर पृष्ठमा थप सुझावहरू ब्राउज गर्नुहोस्"
@@ -1770,8 +1777,8 @@ msgstr "क्यामेरा"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "क्यामेरा"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "खोजी रद्द गर्नुहोस्"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "ब्लक गरिएको प्रयोगकर्तासँग अन्तरक्रिया गर्न सकिँदैन"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "कुराकानी"
@@ -1989,7 +1996,7 @@ msgstr "डोमेन प्रमाणीकरण विधि छान्
msgid "Choose Feeds"
msgstr "फिडहरू छान्नुहोस्"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "मेरो लागि छान्नुहोस्"
@@ -2096,6 +2103,7 @@ msgstr "क्लिप 🐴 क्लोप 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "क्लिप 🐴 क्लोप 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "GIF संवाद बन्द गर्नुहोस्"
msgid "Close image"
msgstr "चित्र बन्द गर्नुहोस्"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "चित्र दर्शक बन्द गर्नुहोस्"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "पासवर्ड अद्यावधिक चेतावनी बन्द गर्नुहोस्"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2242,12 +2251,12 @@ msgstr "अनबोर्डिङ पूरा गर्नुहोस् र
msgid "Complete the challenge"
msgstr "चुनौती पूरा गर्नुहोस्"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "नयाँ पोस्ट तयार गर्नुहोस्"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2264,11 @@ msgstr ""
msgid "Compose reply"
msgstr "जवाफ तयार गर्नुहोस्"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "भिडियो कम्प्रेस गर्दै..."
@@ -2263,7 +2276,6 @@ msgstr "भिडियो कम्प्रेस गर्दै..."
msgid "Configure content filtering setting for category: {name}"
msgstr "श्रेणी: {name} का लागि सामग्री फिल्टरिङ सेटिङ कन्फिगर गर्नुहोस्"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "<0>मोडरेशन सेटिङ्स0> मा कन्फिगर गरिएको।"
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "सामग्री र मिडिया"
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "सामग्री चेतावनी"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "सामग्री चेतावनीहरू"
@@ -2401,7 +2413,7 @@ msgstr "सन्दर्भ मेनु पृष्ठभूमि, मे
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "जारी राख्नुहोस्"
@@ -2420,7 +2432,7 @@ msgstr "थ्रेड जारी राख्नुहोस्..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "कुराकानी छोड्न सकिएन"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "फिड लोड गर्न सकिएन"
@@ -2643,8 +2655,8 @@ msgstr "स्टार्टर प्याकका लागि QR कोड
msgid "Create a starter pack"
msgstr "स्टार्टर प्याक सिर्जना गर्नुहोस्"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "मेरो लागि स्टार्टर प्याक स
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "अर्को बनाउनुहोस्"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "नयाँ खाता सिर्जना गर्नुहोस्"
@@ -2772,7 +2784,7 @@ msgstr "जन्म मिति"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "खाता निष्क्रिय गर्नुहोस्"
@@ -2871,7 +2883,7 @@ msgstr "मेरो खाता मेटाउनुहोस्"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "पोस्ट मेटाउनुहोस्"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "उपशीर्षक अक्षम गर्नुहोस्"
@@ -2996,8 +3008,11 @@ msgstr "अक्षम गरियो"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "त्याग्नुहोस्"
@@ -3006,11 +3021,12 @@ msgstr "त्याग्नुहोस्"
msgid "Discard changes?"
msgstr "परिवर्तनहरू त्याग्नुहोस्?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "मस्यौदा त्याग्नुहोस्?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "पोस्ट त्याग्नुहोस्?"
@@ -3037,7 +3053,7 @@ msgstr "रद्द गर्नुहोस्"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "त्रुटि रद्द गर्नुहोस्"
@@ -3049,11 +3065,16 @@ msgstr "गाइडलाई रद्द गर्नुहोस्"
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr ""
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr "संवाद बन्द गर्न डबल ट्याप गर्नुहोस्"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Bluesky डाउनलोड गर्नुहोस्"
@@ -3164,6 +3185,13 @@ msgstr "CAR फाइल डाउनलोड गर्नुहोस्"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "तस्बिरहरू थप्न ड्रप गर्नुहोस्"
@@ -3285,13 +3313,13 @@ msgstr "पोस्ट अन्तर्क्रिया सेटिङ्
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "प्रोफाइल सम्पादन गर्नुहोस्"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "प्रोफाइल सम्पादन गर्नुहोस्"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "उपशीर्षकहरू सक्षम गर्नुहोस्"
@@ -3421,13 +3449,13 @@ msgstr "उपशीर्षकहरू सक्षम गर्नुहो
msgid "Enable this source only"
msgstr "यो स्रोत मात्र सक्षम गर्नुहोस्"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr ""
@@ -3464,7 +3492,7 @@ msgstr "शब्द वा ट्याग प्रविष्ट गर्
msgid "Enter code"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "पूर्ण स्क्रीनमा प्रवेश गर्नुहोस्"
@@ -3501,7 +3529,7 @@ msgstr ""
msgid "Enter your username and password"
msgstr "तपाईंको प्रयोगकर्ता नाम र पासवर्ड प्रविष्ट गर्नुहोस्"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr ""
@@ -3509,7 +3537,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "त्रुटि"
@@ -3570,7 +3598,7 @@ msgstr "तपाईंले पछ्याएका प्रयोगकर
msgid "Excludes users you follow"
msgstr "तपाईंले पछ्याएका प्रयोगकर्ताहरू हटाउँछ"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "पूर्ण स्क्रीनबाट बाहिर जानुहोस्"
@@ -3578,11 +3606,7 @@ msgstr "पूर्ण स्क्रीनबाट बाहिर जान
msgid "Exits account deletion process"
msgstr "खाता मेट्ने प्रक्रिया बन्द गर्नुहोस्"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "चित्र दृश्य बन्द गर्नुहोस्"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "वैकल्पिक पाठ विस्तार गर्नुहोस्"
@@ -3598,11 +3622,11 @@ msgstr "जसमा तपाईं उत्तर दिँदै हुन
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "एक रेकर्डमा URI समाधान हुने आशा गरियो"
@@ -3639,7 +3663,7 @@ msgstr "स्पष्ट यौन चित्रहरू।"
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
@@ -3657,8 +3681,8 @@ msgstr "मेरो डाटा निर्यात गर्नुहोस
msgid "Export My Data"
msgstr "मेरो डाटा निर्यात गर्नुहोस्"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "बाह्य मिडिया"
@@ -3730,7 +3754,7 @@ msgstr "पोस्ट मेटाउन असफल। कृपया प
msgid "Failed to delete starter pack"
msgstr "स्टार्टर प्याक मेटाउन असफल"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "फिड"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "{0} द्वारा फिड"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "प्रतिक्रिया"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "फिड्स"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr "अन्तिम रूप दिँदै"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr ""
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "अनुसरण गर्नुहोस्"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "{0} लाई अनुसरण गर्नुहोस्"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr ""
@@ -4133,7 +4166,7 @@ msgstr "खाता अनुसरण गर्नुहोस्"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "खाता अनुसरण गर्नुहोस्"
msgid "Follow all"
msgstr "सबैलाई अनुसरण गर्नुहोस्"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "पछाडि अनुसरण गर्नुहोस्"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "तपाईंले चिनेका अनुसरणकर्त
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "अनुसरण गर्दै"
msgid "Following {0}"
msgstr "{0} लाई अनुसरण गर्दै"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "अनुसरण फिड प्राथमिकताहरू"
@@ -4264,7 +4297,7 @@ msgstr "सुरक्षा कारणहरूको लागि, तप
msgid "For the best experience, we recommend using the theme font."
msgstr "सर्वोत्तम अनुभवको लागि, हामी थिम फन्ट प्रयोग गर्न सिफारिस गर्छौं।"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "<0/> बाट"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "स्टार्टर प्याक उत्पन्न गर्नुहोस्"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "मद्दत प्राप्त गर्नुहोस्"
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr ""
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "आफ्नो प्रोफाइललाई अनुहार दिनुहोस्"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "फर्कनुहोस्"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "ग्राफिक मिडिया"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "सहयोग"
@@ -4632,9 +4670,9 @@ msgstr "लुकेको सूची"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "प्रयोगकर्ता सूची लुकाउनुह
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr ""
@@ -4760,9 +4798,9 @@ msgstr "पर्खनुहोस्! हामी बिस्तारै
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "गृहपृष्ठ"
@@ -4819,7 +4857,7 @@ msgstr "म बुझ्छु"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "यदि वैकल्पिक पाठ लामो छ भने, यसको विस्तारित स्थिति परिवर्तन गर्नुहोस्।"
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "यदि तपाईं आफ्नो ह्यान्डल वा इमेल परिवर्तन गर्न प्रयास गरिरहनु भएको छ भने, निष्क्रिय गर्नु अघि गर्नुहोस्।"
@@ -4996,6 +5034,10 @@ msgstr ""
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "अहिले मात्र तपाईं हुनुहुन्छ! माथि खोजेर आफ्नो स्टार्टर प्याकमा थप मानिसहरू थप्नुहोस्।"
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "जॉब आईडी: {0}"
@@ -5122,20 +5164,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "{0} द्वारा लेबल गरिएको।"
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "लेखकद्वारा लेबल गरिएको।"
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "लेबलहरू"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "लेबलहरू थपियो"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "आफ्नो PDS आफैं होस्ट गर्ने बारे थप जान्नुहोस्।"
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr ""
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "यस चेतावनीबारे थप जान्नुहोस्।"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "थप जान्नुहोस्।"
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "छोड्नुहोस्"
@@ -5286,7 +5328,7 @@ msgstr "ब्लूस्काई छोड्दै"
msgid "left to go."
msgstr "जान बाँकी।"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "मलाई छान्न दिनुहोस्"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr ""
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "यस पोस्टमा रुचिहरू"
@@ -5474,7 +5516,7 @@ msgstr "सूची अनम्यूट गरियो"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "सूचीहरू"
@@ -5496,10 +5538,20 @@ msgstr ""
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "थप लोड गर्नुहोस्"
msgid "Load more suggested feeds"
msgstr "थप सुझाइएका फीडहरू लोड गर्नुहोस्।"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "नयाँ सूचनाहरू लोड गर्नुहोस्।"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "लोगो द्वारा <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "मेरो लागि एउटा बनाउनुहोस्।
msgid "Make sure this is where you intend to go!"
msgstr "तपाईं जहाँ जान चाहनुहुन्छ, यो त्यही हो भनेर सुनिश्चित गर्नुहोस्!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "सुरक्षित फीडहरू व्यवस्थापन गर्नुहोस्"
@@ -5638,7 +5690,16 @@ msgstr ""
msgid "Media"
msgstr "मिडिया"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "केही दर्शकहरूको लागि असुविधाजनक वा अनुचित हुन सक्ने मिडिया।"
@@ -5653,7 +5714,7 @@ msgstr "उल्लेख गरिएका प्रयोगकर्ता"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr ""
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "चलचित्रहरू"
msgid "Music"
msgstr "संगीत"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "अर्को स्क्रिनमा जानुहोस्"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "तपाईंको प्रोफाइलमा जानुहोस्"
@@ -5983,6 +6049,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
@@ -6018,12 +6085,12 @@ msgstr "नयाँ सन्देशहरू"
msgid "New password"
msgstr "नयाँ पासवर्ड"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "नयाँ पोस्ट"
@@ -6085,7 +6152,7 @@ msgstr "समाचार"
msgid "Next"
msgstr "अर्को"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "अर्को चित्र"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "कुनै DNS प्यानल छैन"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6136,7 +6207,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "अहिलेसम्म कुनै रुचिहरू छैन"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "{0} लाई अब अनुसरण गरिरहेको छैन"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "अहिलेसम्म कुनै उद्धरण छैन।"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "कुनै परिणाम छैन"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "कुनै परिणाम छैन"
@@ -6238,7 +6309,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr "\"{search}\" को लागि कुनै खोज परिणाम भेटिएन।"
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "हैन, धन्यवाद"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr ""
msgid "Not Found"
msgstr "फेला परेन"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "साझेदारीको बारेमा नोट"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "सूचना सेटिङ्स"
@@ -6349,10 +6424,10 @@ msgstr "सूचना ध्वनीहरू"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "सूचनाहरू"
@@ -6368,8 +6443,8 @@ msgstr "अहिले"
msgid "Now"
msgstr "अहिले"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "नग्नता"
@@ -6390,7 +6465,7 @@ msgstr "ओहो!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "ठिक छ"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "हुन्छ"
@@ -6417,23 +6492,23 @@ msgstr "मा<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "अनबोर्डिङ रिसेट"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "एक वा बढी GIF हरूमा वैकल्पिक पाठ छैन।"
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "एक वा बढी चित्रहरूमा वैकल्पिक पाठ छैन।"
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "एक वा बढी भिडियोहरूमा वैकल्पिक पाठ छैन।"
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "ओहो, केही गडबड भयो!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "ओहो!"
msgid "Open avatar creator"
msgstr "अवतार सिर्जनाकर्ता खोल्नुहोस्"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "कुराकानी विकल्प खोल्नुहोस्"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "इमोजी चयनकर्ता खोल्नुहोस्"
@@ -6557,7 +6636,7 @@ msgstr "प्रणाली लग खोल्नुहोस्"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "आफ्नो पोस्टमा सामग्री चेतावनी थप्नको लागि संवाद खोल्नुहोस्"
@@ -6589,25 +6668,25 @@ msgstr ""
msgid "Opens composer"
msgstr "कम्पोजर खोल्नुहोस्"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "नयाँ Bluesky खाता सिर्जना गर्न प्रवाह खोल्नुहोस्"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "आफ्नो विद्यमान Bluesky खातामा साइन इन गर्न प्रवाह खोल्नुहोस्"
@@ -6620,7 +6699,7 @@ msgstr "GIF चयन संवाद खोल्नुहोस्"
msgid "Opens helpdesk in browser"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "पासवर्ड रिसेट फारम खोल्नुह
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "अन्य"
@@ -6763,13 +6846,13 @@ msgstr "पासवर्ड अद्यावधिक गरियो"
msgid "Password updated!"
msgstr "पासवर्ड अद्यावधिक गरियो!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "रोक्नुहोस्"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "भिडियो रोक्नुहोस्"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "फोटोग्राफी"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "वयस्कका लागि बनाइएका तस्वीरहरू।"
@@ -6874,9 +6957,9 @@ msgstr "पिन गरिएका फिडहरू"
msgid "Pinned to your feeds"
msgstr "तपाईंका फिडहरूमा पिन गरियो"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "चलाउनुहोस्"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "{0} चलाउनुहोस्"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "भिडियो चलाउनुहोस्"
@@ -6893,11 +6976,11 @@ msgstr "भिडियो चलाउनुहोस्"
msgid "Play Video"
msgstr "भिडियो चलाउनुहोस्"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr ""
@@ -6909,7 +6992,7 @@ msgstr "GIF चलाउनुहोस्"
msgid "Plays the video"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "राजनीति"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "पोर्न"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "पोस्ट"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "पोस्ट"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "सबै पोस्ट गर्नुहोस्"
@@ -7217,7 +7300,7 @@ msgstr "यस खाता का अनुयायीहरू जसला
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "अघिल्लो चित्र।"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "गोपनीयता नीति"
@@ -7266,7 +7349,11 @@ msgstr "गोपनीयता नीति"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "भिडियो प्रशोधन हुँदैछ।"
@@ -7280,10 +7367,10 @@ msgstr "प्रशोधन हुँदैछ।"
msgid "profile"
msgstr "प्रोफाइल"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "प्रोफाइल"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr ""
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "उद्धरण पोस्ट।"
@@ -7385,7 +7473,7 @@ msgstr "उद्धरण पोस्टहरू अक्षम गरिए
msgid "Quotes"
msgstr "उद्धरण।"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "यस पोस्टका उद्धरण।"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr ""
@@ -7720,13 +7808,13 @@ msgstr "उत्तरहरू निष्क्रिय गरियो"
msgid "Replies to this post are disabled."
msgstr "यो पोस्टका उत्तरहरू निष्क्रिय गरिएका छन्।"
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "उत्तर दिनुहोस्"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -7892,7 +7980,7 @@ msgstr "तपाईँद्वारा पुनःपोस्ट गरि
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "यस पोस्टका पुनःपोस्टहरू"
@@ -7996,14 +8084,14 @@ msgstr "अन्तिम कार्य पुन: प्रयास गर
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "अघिल्लो पृष्ठमा फर्कनुहोस
msgid "Returns to home page"
msgstr "गृहपृष्ठमा फर्कनुहोस्"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "अघिल्लो पृष्ठमा फर्कनुहोस्"
@@ -8063,7 +8151,7 @@ msgstr ""
msgid "Save"
msgstr "सुरक्षित गर्नुहोस्"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "सुरक्षित गर्नुहोस्"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "परिवर्तनहरू सुरक्षित गर्नुहोस्"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "मेरो फिडहरूमा सुरक्षित गर्नुहोस्"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "माथि स्क्रोल गर्नुहोस्"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "खोज्नुहोस्"
@@ -8164,7 +8269,7 @@ msgstr "खोज्नुहोस्"
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr ""
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "प्रोफाइलहरूको लागि खोज्नुहोस्।"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,12 +8388,12 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr "Bluesky मा जागिरहरू हेर्नुहोस्।"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "आफ्नो फिडमा अनुवादका लागि
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "इमेल पठाउनुहोस्"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "प्रतिक्रिया पठाउनुहोस्"
@@ -8566,7 +8671,7 @@ msgstr "पासवर्ड रीसेटको लागि इमेल
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "सेटिङ्स"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "यौन क्रियाकलाप वा कामोत्तेजक नग्नता।"
@@ -8634,7 +8739,7 @@ msgstr "यौन रूपले प्रस्तावनात्मक"
msgid "Share"
msgstr "साझा गर्नुहोस्"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "साझा गर्नुहोस्"
@@ -8712,13 +8817,13 @@ msgstr "तपाईंको मनपर्ने फीड साझा ग
msgid "Shared Preferences Tester"
msgstr "साझा गरिएको प्राथमिकता परीक्षक"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "देखाउनुहोस्"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "विकल्पात्मक पाठ देखाउनुहोस्"
@@ -8820,7 +8925,7 @@ msgstr "चेतावनी देखाउनुहोस् र फीडब
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr ""
@@ -8828,8 +8933,8 @@ msgstr ""
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
@@ -8842,14 +8947,14 @@ msgstr ""
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "साइन इन आवश्यक छ"
msgid "Signed in as @{0}"
msgstr "को रूपमा साइन इन गरिएको छ @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "समान खाता"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "सॉफ़्टवेयर विकासकर्ता"
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "तपाईंलाई मन पर्ने अन्य फीडहरू"
@@ -8994,7 +9095,7 @@ msgstr "केहि गलत भयो"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "केहि गलत भयो, कृपया पुन: प्रयास गर्नुहोस्"
@@ -9020,7 +9121,7 @@ msgstr ""
msgid "Something wrong? Let us know."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "स्टार्टर प्याकहरू"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "स्टार्टर प्याकहरूले तपाईंलाई तपाईंका मनपर्ने फीडहरू र मानिसहरू सजिलैसँग तपाईंका साथीहरूसँग साझा गर्न दिन्छ।"
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "यी लेबलहरू प्रयोग गर्न @{0} ला
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "लेबलरलाई सदस्यता लिनुहोस्"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "यस लेबलरलाई सदस्यता लिनुहोस्"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "तपाईंका लागि सुझाव गरिएको"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "सुझावात्मक"
@@ -9354,8 +9459,8 @@ msgstr "नियमहरू"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "सेवाका नियमहरू"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "त्यति हो, साथीहरू!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "खाता अनब्लक गरेपछि तपाईं सँग अन्तर्क्रिया गर्न सक्षम हुनेछ।"
@@ -9447,7 +9552,7 @@ msgstr "डिस्कभर फीड"
msgid "The Discover feed now knows what you like"
msgstr "डिस्कभर फीडले अब तपाईंलाई के मनपर्छ थाहा पाएको छ।"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "अनुप्रयोगमा अनुभव राम्रो छ। अब ब्लूस्काई डाउनलोड गर्नुहोस् र हामी तपाईंको स्थानबाट पुनः सुरु गर्नेछौं।"
@@ -9527,7 +9632,7 @@ msgstr "थिम"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "खाता निष्क्रिय गर्नको लागि कुनै समय सीमा छैन, कुनै पनि समय फर्कनुहोस्।"
@@ -9711,6 +9816,10 @@ msgstr "यो सामग्री बिना Bluesky खाता प्र
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "यो फिड खाली छ! तपाईंलाई अझ धेरै प्रयोगकर्ताहरूलाई अनुसरण गर्न आवश्यक पर्न सक्छ या आफ्नो भाषा सेटिङलाई अनुकूलन गर्नुपर्छ।"
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "यो फिड खाली छ।"
@@ -9798,7 +9907,7 @@ msgstr ""
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "यो मोडरेशन सेवा उपलब्ध छैन। थप विवरणको लागि तल हेर्नुहोस्। यदि यो समस्या जारी रहन्छ भने, हामीलाई सम्पर्क गर्नुहोस्।"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "यो पोस्ट <0>{0}0> मा सिर्जना गरिएको दावी गर्दछ, तर पहिलो पटक Bluesky द्वारा <1>{1}1> मा देखिएको थियो।"
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "यो पोस्ट फिड र थ्रेडहरूबाट लुकेको हुनेछ। यसलाई उल्टाउन सकिँदैन।"
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "यस पोस्टको लेखकले उद्धरण पोस्टहरू निष्क्रिय गरेको छ।"
@@ -9834,7 +9943,7 @@ msgstr "यो जवाफ तपाईंको थ्रेडको तल
msgid "This service has not provided terms of service or a privacy policy."
msgstr "यस सेवाले सेवा सर्तहरू वा गोपनीयता नीति प्रदान गरेको छैन।"
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "यसले तपाईंको पोस्टलाई यो उ
msgid "Thread options"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "थ्रेड प्राथमिकताहरू"
@@ -9951,7 +10060,7 @@ msgstr "आज"
msgid "Toggle to enable or disable adult content"
msgstr "वयस्क सामग्री सक्षम वा असक्षम गर्न टगल गर्नुहोस्"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr ""
@@ -9988,8 +10097,8 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "अनुवाद गर्नुहोस्"
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "ब्लक हटाउनुहोस्"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "ब्लक हटाउनुहोस्"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "खाता ब्लक हटाउनुहोस्"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "खाता ब्लक हटाउन चाहानुहुन्छ?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "पुनःपोस्टलाई रद्द गर्नुहो
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "{0} लाई अनफोलो गर्नुहोस्"
@@ -10151,7 +10264,7 @@ msgstr "{0} लाई अनफोलो गर्नुहोस्"
msgid "Unfollow account"
msgstr "खाता अनफोलो गर्नुहोस्"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr ""
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr ""
msgid "Unmute thread"
msgstr "थ्रेड म्यूट हटाउनुहोस्"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "भिडियो म्यूट हटाउनुहोस्"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "सदस्यता समाप्त गर्नुहोस्"
@@ -10285,7 +10398,7 @@ msgstr "सदस्यता समाप्त गर्नुहोस्"
msgid "Unsubscribe from list"
msgstr "सूचीबाट सदस्यता समाप्त गर्नुहोस्"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "यस लेबलरबाट सदस्यता समाप्त गर्नुहोस्"
@@ -10293,7 +10406,7 @@ msgstr "यस लेबलरबाट सदस्यता समाप्त
msgid "Unsubscribed from list"
msgstr "सूचीबाट सदस्यता समाप्त गरिएको"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "फाइल बाट अपलोड गर्नुहोस्"
msgid "Upload from Library"
msgstr "लाइब्रेरी बाट अपलोड गर्नुहोस्"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "तस्विरहरू अपलोड गर्दै..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "लिंक थम्बनेल अपलोड गर्दै..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "भिडियो अपलोड गर्दै..."
@@ -10389,8 +10506,8 @@ msgstr "डिफल्ट प्रदायक प्रयोग गर्न
msgid "Use in-app browser"
msgstr "एप भित्र ब्राउजर प्रयोग गर्नुहोस्"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "लिंक खोल्नको लागि एप भित्र ब्राउजर प्रयोग गर्नुहोस्"
@@ -10445,6 +10562,10 @@ msgstr "प्रयोगकर्ता तपाईंलाई अवरु
msgid "User list by {0}"
msgstr "{0} द्वारा प्रयोगकर्ता सूची"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "तपाईं द्वारा प्रयोगकर्ता सूची"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "भिडियो"
@@ -10614,20 +10735,24 @@ msgstr ""
msgid "Video from {0}: {text}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "भिडियो खेल"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "भिडियो फेला पारिएन।"
@@ -10635,11 +10760,11 @@ msgstr "भिडियो फेला पारिएन।"
msgid "Video settings"
msgstr "भिडियो सेटिङ्गहरू"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "भिडियो अपलोड गरियो"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "भिडियो: {0}"
@@ -10647,23 +10772,23 @@ msgstr "भिडियो: {0}"
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "{0} को अवतार हेर्नुहोस्"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "{0} को प्रोफाइल हेर्नुहोस्"
@@ -10708,7 +10833,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "हामी नेटवर्क समस्या भोगिरहेका छौं, कृपया पुनः प्रयास गर्नुहोस्।"
@@ -10968,7 +11093,7 @@ msgstr "हामीलाई खेद छ, तर हामी तपाईं
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "हामीलाई खेद छ, तर तपाईंको खोजी पूरा गर्न सकिएन। कृपया केही मिनेटमा पुन: प्रयास गर्नुहोस्।"
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "हामीलाई खेद छ! तपाईंले जवाफ दिइरहेको पोस्ट मेटाइ सकेको छ।"
@@ -10977,7 +11102,7 @@ msgstr "हामीलाई खेद छ! तपाईंले जवाफ
msgid "We're sorry! We can't find the page you were looking for."
msgstr "हामीलाई खेद छ! हामी तपाईंले खोजेको पृष्ठ फेला पार्न सक्दैनौं।"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "हामीलाई खेद छ! तपाईं केवल बाइसवटा लेबलरहरूमा सदस्यता लिन सक्नुहुन्छ, र तपाईंले आफ्नो बाइसवटाको सीमा पुगेको छ।"
@@ -11018,10 +11143,9 @@ msgstr "तपाईंका चासोहरू के छन्?"
msgid "What do you want to call your starter pack?"
msgstr "तपाईंको स्टार्टर प्याकलाई के भन्न चाहनुहुन्छ?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "के भइरहेको छ?"
@@ -11097,6 +11221,14 @@ msgstr "यो प्रयोगकर्ता किन समीक्षा
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "सन्देश लेख्नुहोस्"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "पोस्ट लेख्नुहोस्"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "तपाईंको जवाफ लेख्नुहोस्"
@@ -11133,8 +11265,8 @@ msgstr ""
msgid "Yes"
msgstr "हो"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "हो, निष्क्रिय गर्नुहोस्"
@@ -11188,7 +11320,7 @@ msgstr "तपाईं पंक्तिमा हुनुहुन्छ।"
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11200,7 +11332,7 @@ msgstr "तपाईंलाई भिडियो अपलोड गर्न
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "तपाईं अब नयाँ पासवर्डसँग साइन इन गर्न सक्नुहुन्छ।"
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "तपाईं आफ्नो खाता पुनः सक्रिय गरेर लगइन जारी राख्न सक्नुहुन्छ। तपाईंको प्रोफाइल र पोस्ट अन्य प्रयोगकर्ताहरूलाई देखिनेछन्।"
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "तपाईंले यो प्रयोगकर्तालाई
msgid "You have blocked this user. You cannot view their content."
msgstr "तपाईंले यो प्रयोगकर्तालाई ब्लक गर्नुभएको छ। तपाईं तिनीहरूको सामग्री हेर्न सक्नुहुन्न।"
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "तपाईंले भिडियो अपलोडको लागि अस्थायी रूपमा सीमा पार गर्नुभयो। कृपया पछि पुनः प्रयास गर्नुहोस्।"
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "तपाईंले अझै starter pack सिर्जना गर्नुभएको छैन!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "तपाईंलाई कम्तिमा सात अन्य व्यक्तिहरूलाई फलो गर्नुपर्छ ताकि starter pack सिर्जना गर्न सकिन्छ।"
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "QR कोड बचत गर्नको लागि तपाईंलाई आफ्नो फोटो लाइब्रेरीमा पहुँच दिनु पर्छ।"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "तपाईं पंक्तिमा हुनुहुन्छ।"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -11589,7 +11729,7 @@ msgstr "तपाईंले भिडियो अपलोडको लाग
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "तपाईंले भिडियो अपलोडको लागि आफ्नो दैनिक सीमा पुग्नुभयो (धेरै भिडियो)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
@@ -11625,7 +11765,7 @@ msgstr ""
msgid "Your birth date"
msgstr "तपाईंको जन्म मिति"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "तपाईंको ब्राउजर भिडियो ढाँचा समर्थन गर्दैन। कृपया अर्को ब्राउजर प्रयास गर्नुहोस्।"
@@ -11692,8 +11832,8 @@ msgstr "तपाईंको पूर्ण ह्याण्डल हुन
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr ""
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "तपाईंको प्रोफाइल, पोष्टहरू, फीडहरू, र सूचीहरू अब अन्य ब्लूस्की प्रयोगकर्ताहरूलाई देखाइने छैन। तपाईं कुनै पनि समयमा आफ्नो खाता पुनः सक्रिय गर्नको लागि लग इन गर्न सक्नुहुन्छ।"
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/nl/messages.po b/src/locale/locales/nl/messages.po
index 15ec700a76..6aa22929e1 100644
--- a/src/locale/locales/nl/messages.po
+++ b/src/locale/locales/nl/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: nl\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# herplaatsing} other {# herplaatsingen}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# seconde} other {# seconden}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# ongelezen item} other {# ongelezen items}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# ongelezen item} other {# ongelezen items}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {#ma} other {#ma}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {volger} other {volgers}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {volgend} other {volgend}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {vind-ik-leuk} other {vind-ik-leuks}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {vind-ik-leuk} other {vind-ik-leuks}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {bericht} other {berichten}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citaat} other {citaten}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {herplaatsing} other {herplaatsingen}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr "{0} heeft gereageerd met {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} heeft gereageerd met {1} op {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, one {}other {# gebruikers zijn}} lid geword
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# minuut} other {# minuten}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# ongelezen item} other {# ongelezen items}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>en {2, plural, one {# ander} other {# anderen}} zijn inbegrepen in je startpakket"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {volger} other {volgers}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {volgend} other {volgend}}"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Voeg er nog {0} toe om door te gaan"
msgid "Add {displayName} to starter pack"
msgstr "{displayName} toevoegen aan het startpakket"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Een inhoudswaarschuwing toevoegen"
@@ -754,11 +763,11 @@ msgstr "Optioneel alt-tekst toevoegen"
msgid "Add another account"
msgstr "Nog een account toevoegen"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Nog een bericht toevoegen"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "App-wachtwoord toevoegen"
msgid "Add emoji reaction"
msgstr "Emoji-reactie toevoegen"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr "Aanvullende informatie (maximaal 300 tekens)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Volwassene"
@@ -879,10 +888,10 @@ msgstr "Volwassene"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Inhoud voor volwassenen"
@@ -894,8 +903,8 @@ msgstr "Inhoud voor volwassenen kan alleen worden ingeschakeld via het web op <0
msgid "Adult content is disabled."
msgstr "Inhoud voor volwassenen is uitgeschakeld."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Labels voor inhoud voor volwassenen"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@voorbeeld.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Alle"
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Al aangemeld als @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Alt-tekst"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Alt-tekst"
@@ -1059,7 +1068,7 @@ msgstr "Er is een e-mail verzonden naar {0}. Deze bevat een bevestigingscode die
msgid "An error has occurred"
msgstr "Er is een fout opgetreden"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Er is een fout opgetreden"
@@ -1067,7 +1076,7 @@ msgstr "Er is een fout opgetreden"
msgid "An error occurred while compressing the video."
msgstr "Er is een fout opgetreden tijdens het comprimeren van de video."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr "Er is een fout opgetreden tijdens het ophalen van de feed."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Er is een fout opgetreden bij het genereren van je startpakket. Wil je het opnieuw proberen?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "Er is een fout opgetreden tijdens het laden van de video. Probeer het later opnieuw."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Er is een fout opgetreden tijdens het laden van de video. Probeer het opnieuw."
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Dieren"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "Geanimeerde GIF"
@@ -1306,12 +1315,12 @@ msgstr "Standaard aanbevolen feeds gebruiken"
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Gearchiveerd van {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Gearchiveerd bericht"
@@ -1332,11 +1341,11 @@ msgstr "Weet je zeker dat je dit startpakket wilt verwijderen?"
msgid "Are you sure you want to discard your changes?"
msgstr "Weet je zeker dat je je wijzigingen ongedaan wilt maken?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Weet je zeker dat je dit gesprek wilt verlaten?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Weet je zeker dat je dit gesprek wilt verlaten? Je privéberichten worden voor jou verwijderd, maar niet voor de andere deelnemer."
@@ -1344,11 +1353,7 @@ msgstr "Weet je zeker dat je dit gesprek wilt verlaten? Je privéberichten worde
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Weet je zeker dat je dit uit jouw feeds wilt verwijderen?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Weet je zeker dat je dit concept wilt weggooien?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Weet je zeker dat je dit bericht wilt weggooien?"
@@ -1364,7 +1369,7 @@ msgstr "Schrijf je in het <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Kunst"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Artistieke of niet-erotische naaktbeelden."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Video's en GIF's automatisch afspelen"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Terug"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky kan de echtheid van de geclaimde datum niet bevestigen."
@@ -1623,7 +1630,7 @@ msgstr "Servicevoorwaarden van Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky kiest een aantal aanbevolen accounts van personen in je netwerk."
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Blader door meer feeds op de pagina Verkennen"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Blader door meer suggesties"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Blader door meer suggesties op de pagina Verkennen"
@@ -1770,8 +1777,8 @@ msgstr "Camera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Camera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Zoeken annuleren"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Kan geen interactie hebben met een geblokkeerde gebruiker"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Chat"
@@ -1989,7 +1996,7 @@ msgstr "Kies domeinverificatiemethode"
msgid "Choose Feeds"
msgstr "Feeds kiezen"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Voor mij kiezen"
@@ -2096,6 +2103,7 @@ msgstr "Klik 🐴 klak 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Klik 🐴 klak 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "GIF-dialoogvenster sluiten"
msgid "Close image"
msgstr "Afbeelding sluiten"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Afbeeldingsviewer sluiten"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Sluit waarschuwing voor bijwerken wachtwoord"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2242,12 +2251,12 @@ msgstr "Voltooi de introductie en begin met het gebruiken van je account"
msgid "Complete the challenge"
msgstr "Voltooi de uitdaging"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Nieuw bericht opstellen"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Je kunt berichten opstellen met een lengte van maximaal {0, plural, other {# tekens}}"
@@ -2255,7 +2264,11 @@ msgstr "Je kunt berichten opstellen met een lengte van maximaal {0, plural, othe
msgid "Compose reply"
msgstr "Reactie opstellen"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Video comprimeren..."
@@ -2263,7 +2276,6 @@ msgstr "Video comprimeren..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Configureer inhoudsfilterinstelling voor categorie: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Geconfigureerd in <0>moderatie-instellingen0> ."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Inhoud & media"
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "Inhoudswaarschuwing"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Inhoudswaarschuwingen"
@@ -2401,7 +2413,7 @@ msgstr "Contextmenu-achtergrond, klik om het menu te sluiten."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Doorgaan"
@@ -2420,7 +2432,7 @@ msgstr "Verder lezen..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "Kan chat niet verlaten"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Kan feed niet laden"
@@ -2643,8 +2655,8 @@ msgstr "Maak een QR-code voor een startpakket"
msgid "Create a starter pack"
msgstr "Maak een startpakket"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "Maak een startpakket voor mij"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Nog een aanmaken"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Account aanmaken"
@@ -2772,7 +2784,7 @@ msgstr "Geboortedatum"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Account deactiveren"
@@ -2871,7 +2883,7 @@ msgstr "Mijn account verwijderen"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Bericht verwijderen"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Uitschakelen ondertiteling"
@@ -2996,8 +3008,11 @@ msgstr "Uitgeschakeld"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Weggooien"
@@ -3006,11 +3021,12 @@ msgstr "Weggooien"
msgid "Discard changes?"
msgstr "Wijzigingen weggooien?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Concept weggooien?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Bericht weggooien?"
@@ -3037,7 +3053,7 @@ msgstr "Sluiten"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Fout negeren"
@@ -3049,11 +3065,16 @@ msgstr "Starthandleiding afsluiten"
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Deze sectie sluiten"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr "Dubbeltik om het dialoogvenster te sluiten"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Bluesky downloaden"
@@ -3164,6 +3185,13 @@ msgstr "CAR-bestand downloaden"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Laat vallen om afbeeldingen toe te voegen"
@@ -3285,13 +3313,13 @@ msgstr "Berichtinteractie-instellingen bewerken"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Profiel bewerken"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Profiel bewerken"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Ondertiteling inschakelen"
@@ -3421,13 +3449,13 @@ msgstr "Ondertiteling inschakelen"
msgid "Enable this source only"
msgstr "Alleen deze bron inschakelen"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr ""
@@ -3464,7 +3492,7 @@ msgstr "Vul een woord of tag in"
msgid "Enter code"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Volledig scherm activeren"
@@ -3501,7 +3529,7 @@ msgstr "Vul je wachtwoord in"
msgid "Enter your username and password"
msgstr "Vul je gebruikersnaam en wachtwoord in"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Opent volledig scherm"
@@ -3509,7 +3537,7 @@ msgstr "Opent volledig scherm"
msgid "Entertainment"
msgstr "Entertainment"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Fout"
@@ -3570,7 +3598,7 @@ msgstr "Gebruikers uitsluiten die je volgt"
msgid "Excludes users you follow"
msgstr "Gebruikers uitsluiten die je volgt"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Volledig scherm afsluiten"
@@ -3578,11 +3606,7 @@ msgstr "Volledig scherm afsluiten"
msgid "Exits account deletion process"
msgstr "Verlaat accountverwijderingsproces"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Verlaat afbeeldingweergave"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Alt-tekst uitklappen"
@@ -3598,11 +3622,11 @@ msgstr "Uitklappen of inklappen van het volledige bericht waar je op reageert"
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Klapt berichttekst uit of in"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Verwacht werd dat uri omgezet kon worden naar een record"
@@ -3639,7 +3663,7 @@ msgstr "Expliciete seksuele afbeeldingen."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Verkennen"
@@ -3657,8 +3681,8 @@ msgstr "Mijn gegevens exporteren"
msgid "Export My Data"
msgstr "Mijn gegevens exporteren"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Externe media"
@@ -3730,7 +3754,7 @@ msgstr "Bericht verwijderen mislukt, probeer het opnieuw"
msgid "Failed to delete starter pack"
msgstr "Het verwijderen van het startpakket is mislukt"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr "Verwijderen van verificatie mislukt"
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Feed"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Feed door {0}"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Feedback"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Feeds"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr "Afronding"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Mensen zoeken om te volgen"
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Volgen"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "{0} volgen"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "{handle} volgen"
@@ -4133,7 +4166,7 @@ msgstr "Account volgen"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Account volgen"
msgid "Follow all"
msgstr "Allen volgen"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Terugvolgen"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "Volgers die je kent"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Volgend"
msgid "Following {0}"
msgstr "Volgt {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Je volgt {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Volgfeedvoorkeuren"
@@ -4264,7 +4297,7 @@ msgstr "Om veiligheidsredenen kun je dit niet meer bekijken. Je moet een nieuw a
msgid "For the best experience, we recommend using the theme font."
msgstr "Voor de beste ervaring raden we je aan het themalettertype te gebruiken."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Voor jou"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Van <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Een startpakket genereren"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Hulp krijgen"
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr "Aan de slag"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Geef je profiel een gezicht"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Terug"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Grafische media"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Hulp"
@@ -4632,9 +4670,9 @@ msgstr "Verborgen lijst"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Gebruikerslijst verbergen"
msgid "Hide verification badges"
msgstr "Verificatiebadges verbergen"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Verbergt de inhoud"
@@ -4760,9 +4798,9 @@ msgstr "Wacht even! We geven geleidelijk toegang tot video en je staat nog steed
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Startpagina"
@@ -4819,7 +4857,7 @@ msgstr "Ik begrijp het"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Als de alt-tekst lang is wordt de alt-tekst in- of uitgeklapt"
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr "Als je een ontwikkelaar bent, kun je je eigen server hosten."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Als je jouw handle of e-mailadres probeert te wijzigen, doe dit dan voordat je deactiveert."
@@ -4996,6 +5034,10 @@ msgstr "Interactie-instellingen"
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Jij bent nu nog de enige! Voeg meer personen toe aan je startpakket door hierboven te zoeken."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "Taak-ID: {0}"
@@ -5122,20 +5164,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Gelabeld door {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Gelabeld door de auteur."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Labels"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Labels toegevoegd"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "Leer meer over het zelf hosten van je PDS."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Meer informatie over de moderatie toegepast op deze inhoud"
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Leer meer over deze waarschuwing"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Leer meer."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Verlaten"
@@ -5286,7 +5328,7 @@ msgstr "Je verlaat Bluesky"
msgid "left to go."
msgstr "nog te gaan."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Laat me kiezen"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Leuk"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Leuk ({0, plural, one {# vind-ik-leuk} other {# vind-ik-leuks}})"
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Vind-ik-leuks op dit bericht"
@@ -5474,7 +5516,7 @@ msgstr "Lijst niet-genegeerd"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Lijsten"
@@ -5496,10 +5538,20 @@ msgstr ""
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Meer laden"
msgid "Load more suggested feeds"
msgstr "Meer voorgestelde feeds laden"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Nieuwe meldingen laden"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo door @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo door <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Maak er een voor mij"
msgid "Make sure this is where you intend to go!"
msgstr "Zorg ervoor dat dit is waar je heen wilt!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Opgeslagen feeds beheren"
@@ -5638,7 +5690,16 @@ msgstr ""
msgid "Media"
msgstr "Media"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Media die voor bepaalde doelgroepen aanstootgevend of ongepast kunnen zijn."
@@ -5653,7 +5714,7 @@ msgstr "vermelde gebruikers"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Vermeldingen"
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Films"
msgid "Music"
msgstr "Muziek"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Navigeert naar het volgende scherm"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Navigeert naar je profiel"
@@ -5983,6 +6049,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
@@ -6018,12 +6085,12 @@ msgstr "Nieuwe privéberichten"
msgid "New password"
msgstr "Nieuw wachtwoord"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Nieuw bericht"
@@ -6085,7 +6152,7 @@ msgstr "Nieuws"
msgid "Next"
msgstr "Volgende"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Volgende afbeelding"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "Geen DNS-paneel"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6136,7 +6207,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Nog geen vind-ik-leuks"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "Je volgt {0} niet meer"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "Nog geen citaten"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Geen resultaat"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Geen resultaten"
@@ -6238,7 +6309,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr "Geen zoekresultaten gevonden voor \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "Nee, bedankt"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr ""
msgid "Not Found"
msgstr "Niet gevonden"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Opmerking over delen"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Meldinginstellingen"
@@ -6349,10 +6424,10 @@ msgstr "Meldingsgeluiden"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Meldingen"
@@ -6368,8 +6443,8 @@ msgstr "nu"
msgid "Now"
msgstr "Nu"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Bloot"
@@ -6390,7 +6465,7 @@ msgstr "O nee!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Oké"
@@ -6417,23 +6492,23 @@ msgstr "op<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Introductie opnieuw tonen"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Alt-tekst ontbreekt bij een of meer GIF's."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Bij een of meer afbeeldingen ontbreekt de alt-tekst."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Alt-tekst ontbreekt bij een of meer video's."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Oeps, er is iets misgegaan!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Oeps!"
msgid "Open avatar creator"
msgstr "Avatar-maker openen"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "Gespreksopties openen"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Menu openen"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Emoji-kiezer openen"
@@ -6557,7 +6636,7 @@ msgstr "Systeemlogboek openen"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Opent een dialoogvenster om een inhoudswaarschuwing aan je bericht toe te voegen"
@@ -6589,25 +6668,25 @@ msgstr ""
msgid "Opens composer"
msgstr "Opent composer"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Opent de emoji-kiezer"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Opent proces om een nieuw Bluesky-account aan te maken"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Opent het proces om je aan te melden bij je bestaande Bluesky-account"
@@ -6620,7 +6699,7 @@ msgstr "Opent dialoogvenster voor GIF-selectie"
msgid "Opens helpdesk in browser"
msgstr "Opent de helpdesk in je browser"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "Opent formulier om het wachtwoord opnieuw in te stellen"
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Anders"
@@ -6763,13 +6846,13 @@ msgstr "Wachtwoord bijgewerkt"
msgid "Password updated!"
msgstr "Wachtwoord bijgewerkt!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pauzeren"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Video pauzeren"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "Fotografie"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Afbeeldingen bedoeld voor volwassenen."
@@ -6874,9 +6957,9 @@ msgstr "Vastgezette feeds"
msgid "Pinned to your feeds"
msgstr "Vastgezet aan je feeds"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Afspelen"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "{0} afspelen"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Video afspelen"
@@ -6893,11 +6976,11 @@ msgstr "Video afspelen"
msgid "Play Video"
msgstr "Video afspelen"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Speelt of pauzeert de GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr ""
@@ -6909,7 +6992,7 @@ msgstr "Speelt de GIF af"
msgid "Plays the video"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "Politiek"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Porno"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Bericht"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Plaatsen"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Alles plaatsen"
@@ -7217,7 +7300,7 @@ msgstr "Druk om de volgers van dit account te bekijken die je ook volgt"
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Vorige afbeelding"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Privacybeleid"
@@ -7266,7 +7349,11 @@ msgstr "Privacybeleid"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Video verwerken..."
@@ -7280,10 +7367,10 @@ msgstr "Verwerken..."
msgid "profile"
msgstr "profiel"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profiel"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr ""
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Citaatbericht"
@@ -7385,7 +7473,7 @@ msgstr "Citaatberichten uitgeschakeld"
msgid "Quotes"
msgstr "Citaten"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Citaten van dit bericht"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr ""
@@ -7720,13 +7808,13 @@ msgstr "Antwoorden uitgeschakeld"
msgid "Replies to this post are disabled."
msgstr "Antwoorden op dit bericht zijn uitgeschakeld."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Reageren"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -7892,7 +7980,7 @@ msgstr "Herplaatst door jou"
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Herplaatsingen van dit bericht"
@@ -7996,14 +8084,14 @@ msgstr "Probeert de laatste mislukte actie opnieuw"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Terug naar vorige pagina"
msgid "Returns to home page"
msgstr "Terug naar de startpagina"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Terug naar de vorige pagina"
@@ -8063,7 +8151,7 @@ msgstr ""
msgid "Save"
msgstr "Opslaan"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Opslaan"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Wijzigingen opslaan"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "In mijn feeds opslaan"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "Naar boven scrollen"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Zoeken"
@@ -8164,7 +8269,7 @@ msgstr "Zoeken"
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr ""
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Profielen zoeken"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,12 +8388,12 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr "Vacatures bij Bluesky bekijken"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "Selecteer de taal waarin je de vertalingen in je feed wilt weergeven."
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "E-mail verzenden"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Feedback verzenden"
@@ -8566,7 +8671,7 @@ msgstr "Stelt e-mail in voor het opnieuw instellen van wachtwoorden"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Instellingen"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Instellingen opgeslagen"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Seksuele activiteit of erotisch bloot."
@@ -8634,7 +8739,7 @@ msgstr "Seksueel suggestief"
msgid "Share"
msgstr "Delen"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Delen"
@@ -8712,13 +8817,13 @@ msgstr "Je favoriete feed delen!"
msgid "Shared Preferences Tester"
msgstr "Gedeelde voorkeuren-tester"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Tonen"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Toon alt-tekst"
@@ -8820,7 +8925,7 @@ msgstr "Waarschuwing en filter uit feeds tonen"
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr ""
@@ -8828,8 +8933,8 @@ msgstr ""
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
@@ -8842,14 +8947,14 @@ msgstr ""
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Aanmelden vereist"
msgid "Signed in as @{0}"
msgstr "Aangemeld als @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Vergelijkbare accounts"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "Softwareontwikkelaar"
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Enkele andere feeds die je wellicht leuk vindt"
@@ -8994,7 +9095,7 @@ msgstr "Er is iets misgegaan"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Er is iets fout gegaan, probeer het opnieuw"
@@ -9020,7 +9121,7 @@ msgstr ""
msgid "Something wrong? Let us know."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "Startpakketten"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Met startpakketten kun je eenvoudig je favoriete feeds en personen delen met je vrienden."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "Abonneer je op @{0} om deze labels te gebruiken:"
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Abonneren op labeler"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Abonneren op deze labeler"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Aanbevolen voor jou"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Suggestief"
@@ -9354,8 +9459,8 @@ msgstr "Voorwaarden"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Servicevoorwaarden"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "Dat is alles, mensen!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Het account kan met je communiceren na het deblokkeren."
@@ -9447,7 +9552,7 @@ msgstr "De Ontdekken-feed"
msgid "The Discover feed now knows what you like"
msgstr "De Ontdekken-feed weet nu wat je leuk vindt"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "De ervaring is beter in de app. Download Bluesky nu en we pakken het op waar je gebleven was."
@@ -9527,7 +9632,7 @@ msgstr "Thema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Er is geen tijdslimiet voor het deactiveren van het account; je kunt op elk moment terugkomen."
@@ -9711,6 +9816,10 @@ msgstr "Deze inhoud is niet zichtbaar zonder een Bluesky-account."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Deze feed is leeg! Mogelijk moet je meer gebruikers volgen of je taalinstellingen aanpassen."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Deze feed is leeg."
@@ -9798,7 +9907,7 @@ msgstr ""
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Deze moderatieservice is niet beschikbaar. Zie hieronder voor meer details. Neem contact met ons op als dit probleem zich blijft voordoen."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Dit bericht beweert te zijn gemaakt op <0>{0}0>, maar werd voor het eerst gezien door Bluesky op <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Dit bericht wordt verborgen voor feeds en gesprekken. Dit kan niet ongedaan worden gemaakt."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "De auteur van dit bericht heeft het plaatsen van citaten uitgeschakeld."
@@ -9834,7 +9943,7 @@ msgstr "Deze reactie wordt gesorteerd in een verborgen sectie onderaan het gespr
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Deze service heeft geen servicevoorwaarden of een privacybeleid."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "Hiermee wordt je bericht voor alle gebruikers uit het citaat verwijderd
msgid "Thread options"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Gespreksvoorkeuren"
@@ -9951,7 +10060,7 @@ msgstr "Vandaag"
msgid "Toggle to enable or disable adult content"
msgstr "Wissel om inhoud voor volwassenen in of uit te schakelen"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr ""
@@ -9988,8 +10097,8 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Vertalen"
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Deblokkeren"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Deblokkeren"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Account deblokkeren"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Account deblokkeren?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "Herplaatsen ongedaan maken"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "{0} ontvolgen"
@@ -10151,7 +10264,7 @@ msgstr "{0} ontvolgen"
msgid "Unfollow account"
msgstr "Account ontvolgen"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr ""
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr ""
msgid "Unmute thread"
msgstr "Gesprek niet meer negeren"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Video niet meer negeren"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Uitschrijven"
@@ -10285,7 +10398,7 @@ msgstr "Uitschrijven"
msgid "Unsubscribe from list"
msgstr "Uitschrijven voor lijst"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Afmelden voor deze labeler"
@@ -10293,7 +10406,7 @@ msgstr "Afmelden voor deze labeler"
msgid "Unsubscribed from list"
msgstr "Uitgeschreven voor lijst"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "Uploaden vanuit bestanden"
msgid "Upload from Library"
msgstr "Uploaden vanuit bibliotheek"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Afbeeldingen uploaden..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Linkminiatuur uploaden..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Video uploaden..."
@@ -10389,8 +10506,8 @@ msgstr "Standaardprovider gebruiken"
msgid "Use in-app browser"
msgstr "In-app-browser gebruiken"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "In-app-browser gebruiken om links te openen"
@@ -10445,6 +10562,10 @@ msgstr "Gebruiker blokkeert je"
msgid "User list by {0}"
msgstr "Gebruikerslijst door {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Gebruikerslijst door jou"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr ""
@@ -10614,20 +10735,24 @@ msgstr ""
msgid "Video from {0}: {text}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Videogames"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Video niet gevonden."
@@ -10635,11 +10760,11 @@ msgstr "Video niet gevonden."
msgid "Video settings"
msgstr "Video-instellingen"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Video geüpload"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr ""
@@ -10647,23 +10772,23 @@ msgstr ""
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Avatar van {0} bekijken"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Profiel van {0} bekijken"
@@ -10708,7 +10833,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Er zijn netwerkproblemen, probeer het opnieuw."
@@ -10968,7 +11093,7 @@ msgstr "Het spijt ons, maar we kunnen je genegeerde woorden op dit moment niet l
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Het spijt ons, maar je zoekopdracht kan niet worden voltooid. Probeer het over een paar minuten opnieuw."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Het spijt ons! Het bericht waarop je reageert is verwijderd."
@@ -10977,7 +11102,7 @@ msgstr "Het spijt ons! Het bericht waarop je reageert is verwijderd."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Het spijt ons! We kunnen de pagina die je zocht niet vinden."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Het spijt ons! Je kunt je maar op twintig labelers abonneren en je hebt deze limiet bereikt."
@@ -11018,10 +11143,9 @@ msgstr "Wat zijn je interesses?"
msgid "What do you want to call your starter pack?"
msgstr "Hoe wil je jouw startpakket noemen?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Hoe gaat het?"
@@ -11097,6 +11221,14 @@ msgstr "Waarom moet deze gebruiker worden beoordeeld?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Schrijf een privébericht"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Bericht schrijven"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Schrijf je reactie"
@@ -11133,8 +11265,8 @@ msgstr ""
msgid "Yes"
msgstr "Ja"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Ja, deactiveren"
@@ -11188,7 +11320,7 @@ msgstr "Je staat in de rij."
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11200,7 +11332,7 @@ msgstr "Het is niet toegestaan om video's te uploaden."
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Je kunt je nu aanmelden met je nieuwe wachtwoord."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Je kunt je account opnieuw activeren om door te kunnen gaan met aanmelden. Je profiel en berichten zijn dan zichtbaar voor andere gebruikers."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "Je hebt deze gebruiker geblokkeerd"
msgid "You have blocked this user. You cannot view their content."
msgstr "Je hebt deze gebruiker geblokkeerd. Je kunt de inhoud niet bekijken."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Je hebt tijdelijk de limiet voor video-uploads bereikt. Probeer het later opnieuw."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Je hebt nog geen startpakket gemaakt!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Je moet ten minste 7 andere personen volgen om een startpakket te genereren."
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "Je moet toegang verlenen tot je fotobibliotheek om een QR-code op te slaan"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Je staat in de rij"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -11589,7 +11729,7 @@ msgstr "Je hebt je dagelijkse limiet voor video-uploads bereikt (te veel bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Je hebt je daglimiet voor het uploaden van video's bereikt (te veel video's)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
@@ -11625,7 +11765,7 @@ msgstr ""
msgid "Your birth date"
msgstr "Je geboortedatum"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Je browser ondersteunt de video-indeling niet. Probeer een andere browser."
@@ -11692,8 +11832,8 @@ msgstr "Je volledige handle wordt <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr ""
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Jouw profiel, berichten, feeds en lijsten zijn niet langer zichtbaar voor andere Bluesky-gebruikers. Je kunt je account op elk moment opnieuw activeren door aan te melden."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/pl/messages.po b/src/locale/locales/pl/messages.po
index 4177dc78ad..b2c4aa6486 100644
--- a/src/locale/locales/pl/messages.po
+++ b/src/locale/locales/pl/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: pl\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# repost} few {# reposty} other {# repostów}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# sekundę} few {# sekundy} other {# sekund}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {obserwujący} other {obserwujących}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {obserwowany} other {obserwowanych}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {polubienie} few {polubienia} other {polubień}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {polubienie} few {polubienia} other {polubień}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {wpis} few {wpisy} other {wpisów}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {cytat} few {cytaty} other {cytatów}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {repost} few {reposty} other {repostów}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr ""
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
@@ -432,7 +436,7 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>i {2, plural, one {# inna osoba} few {# inne osoby} other {# innych osób}} są w twoim pakiecie startowym"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {obserwujący} other {obserwujących}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {obserwowany} other {obserwowanych}}"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Dodaj jeszcze {0, plural, one {# osobę} few {# osoby} other {# osób}}"
msgid "Add {displayName} to starter pack"
msgstr "Dodaj {displayName} do pakietu startowego"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Dodaj ostrzeżenie o zawartości"
@@ -754,11 +763,11 @@ msgstr "Dodaj tekst alternatywny (opcjonalne)"
msgid "Add another account"
msgstr "Dodaj inne konto"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Dodaj inny wpis"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "Dodaj hasło aplikacji"
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Dla dorosłych"
@@ -879,10 +888,10 @@ msgstr "Dla dorosłych"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Treści dla dorosłych"
@@ -894,8 +903,8 @@ msgstr "Treści dla dorosłych można włączyć tylko przez Internet pod adrese
msgid "Adult content is disabled."
msgstr "Treści dla dorosłych są wyłączone."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Ostrzeżenia o treści dla dorosłych"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Wszystkie"
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Już zalogowano jako @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Tekst alternatywny"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Tekst alternatywny"
@@ -1059,7 +1068,7 @@ msgstr "Email został wysłany do {0}. Zawiera on kod weryfikacyjny, który moż
msgid "An error has occurred"
msgstr "Wystąpił błąd"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Wystąpił błąd"
@@ -1067,7 +1076,7 @@ msgstr "Wystąpił błąd"
msgid "An error occurred while compressing the video."
msgstr "Wystąpił błąd podczas kompresowania wideo."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Wystąpił błąd podczas generowania pakietu startowego. Czy chcesz spróbować ponownie?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "Wystąpił błąd podczas wczytywania wideo. Spróbuj ponownie później."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Wystąpił błąd podczas wczytywania wideo. Spróbuj ponownie."
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Zwierzęta"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "Animowany GIF"
@@ -1306,12 +1315,12 @@ msgstr "Zastosuj domyślne kanały polecane"
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Archiwum z dnia {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Wpis został zarchiwizowany"
@@ -1332,11 +1341,11 @@ msgstr "Czy na pewno chcesz usunąć ten pakiet startowy?"
msgid "Are you sure you want to discard your changes?"
msgstr "Czy na pewno chcesz odrzucić wprowadzone zmiany?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Czy na pewno chcesz opuścić tę rozmowę? Twoje wiadomości zostaną usunięte u ciebie, ale nie u odbiorcy."
@@ -1344,11 +1353,7 @@ msgstr "Czy na pewno chcesz opuścić tę rozmowę? Twoje wiadomości zostaną u
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Czy na pewno chcesz to usunąć ze swoich kanałów?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Czy na pewno chcesz odrzucić ten szkic?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Czy na pewno chcesz odrzucić ten wpis?"
@@ -1364,7 +1369,7 @@ msgstr "Czy piszesz po <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Sztuka"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Nagość artystyczna lub nieerotyczna."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Autoodtwarzanie filmów i GIF-ów"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Powrót"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky nie może potwierdzić autentyczności podanej daty."
@@ -1623,7 +1630,7 @@ msgstr "Regulamin Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky wybierze zestaw polecanych kont spośród osób w Twojej sieci."
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Wyświetl więcej kanałów na stronie Eksploruj"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Wyświetl więcej polecanych"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Wyświetl więcej rekomendacji na stronie Eksploruj"
@@ -1770,8 +1777,8 @@ msgstr "Aparat"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Aparat"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Anuluj wyszukiwanie"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Nie można wchodzić w interakcje z zablokowaną osobą"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Czat"
@@ -1989,7 +1996,7 @@ msgstr "Wybierz metodę weryfikacji domeny"
msgid "Choose Feeds"
msgstr "Wybierz kanały"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Wybierz dla mnie"
@@ -2096,6 +2103,7 @@ msgstr "Klip 🐴 klop 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Klip 🐴 klop 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Zamknij okno GIF"
msgid "Close image"
msgstr "Zamknij zdjęcie"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Zamknij galerię zdjęć"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Zamyka ostrzeżenie o aktualizacji hasła"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2242,12 +2251,12 @@ msgstr "Ukończ wprowadzenie i zacznij korzystać ze swojego konta"
msgid "Complete the challenge"
msgstr "Ukończ wyzwanie"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Utwórz nowy wpis"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2264,11 @@ msgstr ""
msgid "Compose reply"
msgstr "Skomentuj"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Kompresowanie wideo..."
@@ -2263,7 +2276,6 @@ msgstr "Kompresowanie wideo..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Skonfiguruj ustawienia filtrowania treści dla kategorii: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Skonfigurowane w <0>ustawieniach moderacji0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Treści i multimedia"
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "Ostrzeżenie o zawartości"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Ostrzeżenia o zawartości"
@@ -2401,7 +2413,7 @@ msgstr "Kliknij, aby zamknąć menu kontekstowe."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Kontynuuj"
@@ -2420,7 +2432,7 @@ msgstr "Kontynuuj wątek..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "Nie udało się opuścić czatu"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Nie udało się wczytać kanału"
@@ -2643,8 +2655,8 @@ msgstr "Utwórz kod QR dla pakietu startowego"
msgid "Create a starter pack"
msgstr "Utwórz pakiet startowy"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "Utwórz dla mnie pakiet startowy"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Utwórz inne"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Utwórz nowe konto"
@@ -2772,7 +2784,7 @@ msgstr "Data urodzenia"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Dezaktywuj konto"
@@ -2871,7 +2883,7 @@ msgstr "Usuń moje konto"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Usuń wpis"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Wyłącz napisy"
@@ -2996,8 +3008,11 @@ msgstr "Wyłączono"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Odrzuć"
@@ -3006,11 +3021,12 @@ msgstr "Odrzuć"
msgid "Discard changes?"
msgstr "Odrzucić zmiany?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Odrzucić szkic?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Odrzucić wpis?"
@@ -3037,7 +3053,7 @@ msgstr "Pomiń"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Pomiń błąd"
@@ -3049,11 +3065,16 @@ msgstr "Pomiń wprowadzenie"
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Pomiń tę sekcję"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr "Kliknij dwukrotnie, aby zamknąć to okno"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Kliknij dwukrotnie, aby polubić"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Pobierz Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Pobierz plik CAR"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Upuść, aby dodać zdjęcia"
@@ -3285,13 +3313,13 @@ msgstr "Edytuj ustawienia interakcji z wpisem"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Edytuj profil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Edytuj profil"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Włącz napisy"
@@ -3421,13 +3449,13 @@ msgstr "Włącz napisy"
msgid "Enable this source only"
msgstr "Włącz tylko to źródło"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Włącz popularne"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Włącz popularne klipy wideo na kanale Discover"
@@ -3464,7 +3492,7 @@ msgstr "Wprowadź słowo lub tag"
msgid "Enter code"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Włącz tryb pełnoekranowy"
@@ -3501,7 +3529,7 @@ msgstr "Wprowadź swoje hasło"
msgid "Enter your username and password"
msgstr "Wprowadź swoją nazwę i hasło"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Przechodzi do trybu pełnoekranowego"
@@ -3509,7 +3537,7 @@ msgstr "Przechodzi do trybu pełnoekranowego"
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Błąd"
@@ -3570,7 +3598,7 @@ msgstr "Wyklucz obserwowane osoby"
msgid "Excludes users you follow"
msgstr "Wyklucza obserwowane osoby"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Wyłącz pełny ekran"
@@ -3578,11 +3606,7 @@ msgstr "Wyłącz pełny ekran"
msgid "Exits account deletion process"
msgstr "Opuszcza proces usuwania konta"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Opuszcza podgląd zdjęcia"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Rozwiń tekst alternatywny"
@@ -3598,11 +3622,11 @@ msgstr "Rozwiń lub zwiń cały wpis, który komentujesz"
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Rozwija lub zwija tekst wpisu"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Adres uri powinien prowadzić do rekordu"
@@ -3639,7 +3663,7 @@ msgstr "Obrazy o charakterze jednoznacznie seksualnym."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
@@ -3657,8 +3681,8 @@ msgstr "Eksportuj moje dane"
msgid "Export My Data"
msgstr "Eksportuj moje dane"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Multimedia spoza aplikacji"
@@ -3730,7 +3754,7 @@ msgstr "Nie udało się usunąć wpisu, spróbuj ponownie"
msgid "Failed to delete starter pack"
msgstr "Nie udało się usunąć pakietu startowego"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Kanał"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Kanał od {0}"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Opinie"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Kanały"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr "Kończenie"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Znajdź osoby do obserwowania"
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Obserwuj"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Obserwuj {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Obserwuj {handle}"
@@ -4133,7 +4166,7 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr ""
msgid "Follow all"
msgstr "Obserwuj wszystkich"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Również obserwuj"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "Obserwujący, których znasz"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Obserwujesz"
msgid "Following {0}"
msgstr "Obserwowani {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Obserwujesz {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Preferencje kanału obserwowanych"
@@ -4264,7 +4297,7 @@ msgstr "Ze względów bezpieczeństwa nie będzie można wyświetlić go ponowni
msgid "For the best experience, we recommend using the theme font."
msgstr "Aby uzyskać najlepsze wrażenia, zalecamy korzystanie z czcionki motywu."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Od <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Wygeneruj pakiet startowy"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Uzyskaj pomoc"
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Zmień wygląd swojego profilu"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Wróć"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Niepokojąca treść"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Pomoc"
@@ -4632,9 +4670,9 @@ msgstr "Ukryta lista"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Ukryj listę osób"
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Ukrywa zawartość"
@@ -4760,9 +4798,9 @@ msgstr "Poczekaj! Dostęp do materiałów wideo udostępniamy stopniowo, a ty wc
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Główna"
@@ -4819,7 +4857,7 @@ msgstr "Rozumiem"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Rozwija lub zwija długi tekst alternatywny"
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr "Jeśli jesteś deweloperem, możesz hostować własny serwer."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Jeśli próbujesz zmienić swoją nazwę lub adres email, zrób to przed dezaktywacją."
@@ -4996,6 +5034,10 @@ msgstr "Ustawienia interakcji"
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "W tej chwili jesteś tylko ty! Dodaj więcej osób do swojego pakietu startowego, wyszukując powyżej."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID: {0}"
@@ -5122,20 +5164,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Oznaczone przez {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Oznaczone przez autora."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Ostrzeżenia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Ostrzeżenia zostały dodane"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "Dowiedz się więcej o samodzielnym hostingu PDS."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Dowiedz się więcej na temat ostrzeżenia nałożonego na tę zawartość"
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Dowiedz się więcej o tym ostrzeżeniu"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Dowiedz się więcej."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Opuść"
@@ -5286,7 +5328,7 @@ msgstr "Opuszczasz Bluesky"
msgid "left to go."
msgstr "pozostałe."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Pozwól mi wybrać"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Polub"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Polub ({0, plural, one {# polubienie} few {# polubienia} other {# polubień}})"
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Polubienia tego wpisu"
@@ -5474,7 +5516,7 @@ msgstr "Cofnięto wyciszenie listy"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Listy"
@@ -5496,10 +5538,20 @@ msgstr ""
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Wczytaj więcej"
msgid "Load more suggested feeds"
msgstr "Wczytaj więcej polecanych kanałów"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Wczytaj nowe powiadomienia"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo autorstwa @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo autorstwa <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Utwórz go dla mnie"
msgid "Make sure this is where you intend to go!"
msgstr "Upewnij się, że właśnie tam chcesz przejść!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Zarządzaj zapisanymi kanałami"
@@ -5638,7 +5690,16 @@ msgstr ""
msgid "Media"
msgstr "Multimedia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Materiały, które mogą być niepokojące lub nieodpowiednie dla niektórych odbiorców."
@@ -5653,7 +5714,7 @@ msgstr "wzmianki"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Wzmianki"
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Filmy"
msgid "Music"
msgstr "Muzyka"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Przejdź do następnego ekranu"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Przejdź do swojego profilu"
@@ -5983,6 +6049,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
@@ -6018,12 +6085,12 @@ msgstr "Nowe wiadomości"
msgid "New password"
msgstr "Nowe hasło"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Nowy wpis"
@@ -6085,7 +6152,7 @@ msgstr "Aktualności"
msgid "Next"
msgstr "Kontynuuj"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Następne zdjęcie"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "Brak panelu DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6136,7 +6207,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Brak polubień"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "Już nie obserwujesz {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "Brak cytatów"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Brak wyników"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Brak wyników"
@@ -6238,7 +6309,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr "Nie znaleziono żadnych wyników dla \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "Nie, dziękuję"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr ""
msgid "Not Found"
msgstr "Nie znaleziono"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Uwaga o udostępnianiu"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Ustawienia powiadomień"
@@ -6349,10 +6424,10 @@ msgstr "Dźwięki powiadomień"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Powiadomienia"
@@ -6368,8 +6443,8 @@ msgstr "teraz"
msgid "Now"
msgstr "Teraz"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Nagość"
@@ -6390,7 +6465,7 @@ msgstr "O nie!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Okej"
@@ -6417,23 +6492,23 @@ msgstr "na<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Rozpocznij od nowa"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "W co najmniej jednym pliku GIF brakuje tekstu alternatywnego."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "W co najmniej jednym zdjęciu brakuje tekstu alternatywnego."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "W co najmniej jednym wideo brakuje tekstu alternatywnego."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ups, coś poszło nie tak!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ups!"
msgid "Open avatar creator"
msgstr "Otwórz kreator zdjęcia profilowego"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "Zmień ustawienia rozmowy"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Otwórz menu"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Wybierz emoji"
@@ -6557,7 +6636,7 @@ msgstr "Otwórz dziennik systemowy"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Pozwala dodać ostrzeżenie o zawartości do twojego wpisu"
@@ -6589,25 +6668,25 @@ msgstr "Otwiera okno zmiany nazwy"
msgid "Opens composer"
msgstr "Otwiera kompozytor wpisu"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Otwiera selektor emoji"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Otwiera proces tworzenia nowego konta Bluesky"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Otwiera proces logowania do istniejącego konta Bluesky"
@@ -6620,7 +6699,7 @@ msgstr "Wybierz GIF"
msgid "Opens helpdesk in browser"
msgstr "Otwiera centrum pomocy w przeglądarce"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "Zmień hasło"
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Inne"
@@ -6763,13 +6846,13 @@ msgstr "Hasło zostało zaktualizowane"
msgid "Password updated!"
msgstr "Hasło zostało zaktualizowane!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Zatrzymaj"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Zatrzymaj wideo"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "Fotografia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Zdjęcia przeznaczone dla dorosłych."
@@ -6874,9 +6957,9 @@ msgstr "Przypięte kanały"
msgid "Pinned to your feeds"
msgstr "Przypięto kanał"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Odtwórz"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Odtwórz {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Odtwórz filmik"
@@ -6893,11 +6976,11 @@ msgstr "Odtwórz filmik"
msgid "Play Video"
msgstr "Odtwórz filmik"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Odtwarza lub wstrzymuje GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Odtwarza lub wstrzymuje wideo"
@@ -6909,7 +6992,7 @@ msgstr "Odtwarza GIF"
msgid "Plays the video"
msgstr "Odtwarza wideo"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "Polityka"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornografia"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Opublikuj"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Opublikuj"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Opublikuj wszystko"
@@ -7217,7 +7300,7 @@ msgstr "Kliknij, aby wyświetlić obserwujących to konto, których również ob
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Poprzednie zdjęcie"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Polityka prywatności"
@@ -7266,7 +7349,11 @@ msgstr "Polityka prywatności"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Przetwarzanie wideo..."
@@ -7280,10 +7367,10 @@ msgstr "Przetwarzanie..."
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Publiczne listy osób do zbiorowego wyciszania lub blokowania."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Cytuj"
@@ -7385,7 +7473,7 @@ msgstr "Cytowanie wpisów zostało wyłączone"
msgid "Quotes"
msgstr "Cytaty"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Cytowania tego wpisu"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Czytaj mniej"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Czytaj więcej"
@@ -7720,13 +7808,13 @@ msgstr "Komentarze zostały wyłączone"
msgid "Replies to this post are disabled."
msgstr "Komentarze do tego wpisu są wyłączone."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Skomentuj"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Skomentuj ({0, plural, one {# komentarz} few {# komentarze} other {# komentarzy}})"
@@ -7892,7 +7980,7 @@ msgstr "Repostowane przez ciebie"
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Reposty tego wpisu"
@@ -7996,14 +8084,14 @@ msgstr "Ponawia ostatnią akcję, która zakończyła się błędem"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Wróć do poprzedniej strony"
msgid "Returns to home page"
msgstr "Wraca do strony głównej"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Wraca do poprzedniej strony"
@@ -8063,7 +8151,7 @@ msgstr "Powraca do poprzedniego kroku"
msgid "Save"
msgstr "Zapisz"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Zapisz"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Zapisz zmiany"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Dodaj do moich kanałów"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "Przewiń na górę"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Szukaj"
@@ -8164,7 +8269,7 @@ msgstr "Szukaj"
msgid "Search @{0}'s posts"
msgstr "Szukaj wpisów od @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Szukaj według nazwy lub zainteresowania"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Szukaj kanałów"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Szukaj profili"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Szukaj..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Wyszukuje profile"
@@ -8283,12 +8388,12 @@ msgstr "Zobacz wpisy tej osoby o #{tag}"
msgid "See jobs at Bluesky"
msgstr "Zobacz oferty pracy w Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "Wybierz preferowany język tłumaczeń."
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Wyślij email"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Wyślij opinię"
@@ -8566,7 +8671,7 @@ msgstr "Ustawia email do resetowania hasła"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Ustawienia"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Ustawienia zostały zapisane"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Aktywność seksualna lub nagość erotyczna."
@@ -8634,7 +8739,7 @@ msgstr "Sugestywne seksualnie"
msgid "Share"
msgstr "Udostępnij"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Udostępnij"
@@ -8712,13 +8817,13 @@ msgstr "Udostępnij swój ulubiony kanał!"
msgid "Shared Preferences Tester"
msgstr "Tester współdzielonych preferencji"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Pokaż"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Pokaż tekst alternatywny"
@@ -8820,7 +8925,7 @@ msgstr "Pokaż ostrzeżenie i odfiltruj z kanałów"
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Pokazuje informacje o momencie utworzenia tego wpisu"
@@ -8828,8 +8933,8 @@ msgstr "Pokazuje informacje o momencie utworzenia tego wpisu"
msgid "Shows other accounts you can switch to"
msgstr "Pokazuje inne konta, na które możesz się przełączyć"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Pokazuje zawartość"
@@ -8842,14 +8947,14 @@ msgstr "Pokazuje zawartość"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Rejestracja wymagana"
msgid "Signed in as @{0}"
msgstr "Zalogowano jako @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Podobne konta"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "Programowanie"
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Inne kanały, które mogą ci się spodobać"
@@ -8994,7 +9095,7 @@ msgstr "Coś poszło nie tak"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Coś poszło nie tak, spróbuj ponownie"
@@ -9020,7 +9121,7 @@ msgstr ""
msgid "Something wrong? Let us know."
msgstr "Coś poszło nie tak? Daj nam znać."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "Pakiety"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Pakiety startowe umożliwiają łatwe udostępnianie ulubionych kanałów i osób znajomym."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "Subskrybuj @{0}, aby użyć tych ostrzeżeń:"
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Subskrybuj usługę"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Subskrybuj tę usługę moderacji"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Proponowane dla ciebie"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Sugestywne"
@@ -9354,8 +9459,8 @@ msgstr "Regulamin"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Regulamin"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "To już wszystko!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "To wszystko!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "To konto będzie mogło wchodzić z tobą w interakcje po odblokowaniu."
@@ -9447,7 +9552,7 @@ msgstr "Kanał główny"
msgid "The Discover feed now knows what you like"
msgstr "Kanał główny już wie, co lubisz"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Aplikacja zapewnia lepsze doświadczenia. Pobierz Bluesky teraz, dokończymy w tym samym miejscu."
@@ -9527,7 +9632,7 @@ msgstr "Motyw"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Dezaktywacja konta nie jest ograniczona czasowo i można ją cofnąć w dowolnym momencie."
@@ -9711,6 +9816,10 @@ msgstr "Ta zawartość nie jest dostępna bez konta Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Ta rozmowa dotyczy usuniętego lub dezaktywowanego konta. Kliknij, aby wyświetlić opcje"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Ten kanał jest pusty! Możesz zaobserwować więcej osób lub dostosować ustawienia językowe."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Ten kanał jest pusty."
@@ -9798,7 +9907,7 @@ msgstr "Ta lista jest pusta."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Ta usługa moderacji jest niedostępna. Więcej informacji znajduje się poniżej. Jeśli problem będzie się powtarzał, skontaktuj się z nami."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Ten wpis został utworzony <0>{0}0>, ale po raz pierwszy pojawił się na Bluesky <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Ten wpis zostanie ukryty w kanałach i wątkach. Nie można tego cofnąć."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Autor tego wpisu wyłączył możliwość cytowania."
@@ -9834,7 +9943,7 @@ msgstr "Ten komentarz trafi do ukrytej sekcji na dole wątku. Spowoduje to wycis
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Usługa ta nie zawiera regulaminu ani polityki prywatności."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "Spowoduje to usunięcie twojego wpisu z tego cytatu dla wszystkich i zas
msgid "Thread options"
msgstr "Ustawienia wątków"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Ustawienia wątków"
@@ -9951,7 +10060,7 @@ msgstr "Dziś"
msgid "Toggle to enable or disable adult content"
msgstr "Włącz lub wyłącz treści dla dorosłych"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Włącza lub wyłącza dźwięk"
@@ -9988,8 +10097,8 @@ msgstr "Temat"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Przetłumacz"
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Odblokuj"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Odblokuj"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Odblokuj konto"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Odblokować konto?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "Cofnij repost"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Cofnij repost ({0, plural, one {# repost} few {# reposty} other {# repostów}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Nie obserwuj {0}"
@@ -10151,7 +10264,7 @@ msgstr "Nie obserwuj {0}"
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Nie obserwuj"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Nie lubię"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Nie lubię ({0, plural, one {# polubienie} few {# polubienia} other {# polubień}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr ""
msgid "Unmute thread"
msgstr "Anuluj wyciszenie"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Anuluj wyciszenie"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Nie subskrybuj"
@@ -10285,7 +10398,7 @@ msgstr "Nie subskrybuj"
msgid "Unsubscribe from list"
msgstr "Nie subskrybuj listy"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Nie subskrybuj tej moderacji"
@@ -10293,7 +10406,7 @@ msgstr "Nie subskrybuj tej moderacji"
msgid "Unsubscribed from list"
msgstr "Nie subskrybujesz już listy"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "Prześlij z plików"
msgid "Upload from Library"
msgstr "Prześlij z biblioteki"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Przesyłanie zdjęć..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Przesyłanie miniatury..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Przesyłanie wideo..."
@@ -10389,8 +10506,8 @@ msgstr "Korzystaj z domyślnego serwera"
msgid "Use in-app browser"
msgstr "Korzystaj z przeglądarki w aplikacji"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Korzystaj z przeglądarki w aplikacji do otwierania linków"
@@ -10445,6 +10562,10 @@ msgstr "Osoba blokująca ciebie"
msgid "User list by {0}"
msgstr "Lista od {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Twoja lista"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Wideo"
@@ -10614,20 +10735,24 @@ msgstr "Kanał wideo"
msgid "Video from {0}: {text}"
msgstr "Wideo od {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Gry"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Wideo jest wstrzymane"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Wideo jest odtwarzane"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Wideo nie zostało odnalezione."
@@ -10635,11 +10760,11 @@ msgstr "Wideo nie zostało odnalezione."
msgid "Video settings"
msgstr "Ustawienia wideo"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Wideo zostało przesłane"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Wideo: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Wideo: {0}"
msgid "Videos"
msgstr "Filmiki"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Wyświetl zdjęcie profilowe {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Wyświetl profil {0}"
@@ -10708,7 +10833,7 @@ msgstr "Pokaż więcej"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Mamy problemy z siecią, spróbuj ponownie"
@@ -10968,7 +11093,7 @@ msgstr "Przepraszamy, ale w tej chwili nie mogliśmy wczytać wyciszonych przez
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Przepraszamy, ale twoje wyszukiwanie się nie powiodło. Spróbuj ponownie za kilka minut."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Przepraszamy! Wpis, który komentujesz, został usunięty."
@@ -10977,7 +11102,7 @@ msgstr "Przepraszamy! Wpis, który komentujesz, został usunięty."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Przepraszamy! Nie możemy znaleźć strony, której szukasz."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Przepraszamy! Możesz subskrybować tylko dwadzieścia usług moderacji i właśnie osiągnięto ten limit."
@@ -11018,10 +11143,9 @@ msgstr "Jakie są twoje zainteresowania?"
msgid "What do you want to call your starter pack?"
msgstr "Jak chcesz nazwać swój pakiet startowy?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Jak się masz?"
@@ -11097,6 +11221,14 @@ msgstr "Dlaczego ta osoba powinna zostać sprawdzona?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Napisz wiadomość"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Utwórz wpis"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Skomentuj"
@@ -11133,8 +11265,8 @@ msgstr ""
msgid "Yes"
msgstr "Tak"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Tak, dezaktywuj"
@@ -11188,7 +11320,7 @@ msgstr "Jesteś w kolejce."
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11200,7 +11332,7 @@ msgstr "Nie możesz przesyłać filmików."
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Możesz teraz logować się przy użyciu nowego hasła."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Możesz ponownie aktywować swoje konto, aby się zalogować. Twój profil i wpisy znów będą widoczne dla innych."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "Ta osoba została zablokowana"
msgid "You have blocked this user. You cannot view their content."
msgstr "Ta osoba została zablokowana. Nie możesz wyświetlać jej treści."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Limit przesłanych filmików został tymczasowo wyczerpany. Spróbuj ponownie później."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Nie utworzono jeszcze pakietu startowego!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Aby wygenerować pakiet startowy, musisz obserwować co najmniej siedem innych osób."
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "Aby zapisać kod QR, przyznaj dostęp do galerii zdjęć"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Jesteś w kolejce"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Jesteś zalogowany przy użyciu hasła aplikacji. Zaloguj się przy użyciu głównego hasła, aby kontynuować dezaktywację konta."
@@ -11589,7 +11729,7 @@ msgstr "Dzienny limit przesyłania wideo został osiągnięty (zbyt dużo danych
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Dzienny limit przesyłania wideo został osiągnięty (zbyt dużo plików)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Nie mamy już więcej filmików do oglądania. Może to dobry czas na przerwę?"
@@ -11625,7 +11765,7 @@ msgstr "Twoje odwołanie zostało złożone. Jeśli zakończy się pomyślnie, o
msgid "Your birth date"
msgstr "Twoja data urodzenia"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Twoja przeglądarka nie obsługuje tego formatu wideo. Spróbuj użyć innej."
@@ -11692,8 +11832,8 @@ msgstr "Twoja nowa nazwa to <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr ""
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Twój profil, wpisy, kanały i listy nie będą już widoczne dla innych na Bluesky. Możesz ponownie aktywować swoje konto w dowolnym momencie po zalogowaniu."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po
index 3174fa57af..1a2e07e248 100644
--- a/src/locale/locales/pt-BR/messages.po
+++ b/src/locale/locales/pt-BR/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: pt\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# repostagem} other {# repostagens}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# segundo} other {# segundos}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# item não lido} other {# itens não lidos}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# item não lido} other {# itens não lidos}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {#me} other {#me}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, one {mais 1 resposta} other {mais # respostas}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {seguidor} other {seguidores}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {seguindo} other {seguindo}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {curtida} other {curtidas}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {curtida} other {curtidas}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {postagem} other {postagens}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citação} other {citações}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {repostagem} other {repostagens}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {salvo} other {salvos}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (Conta)"
@@ -189,11 +193,11 @@ msgstr "{0} reagiu com {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} reagiu com {1} a {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, um feed por {1}, curtido por {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, uma lista por {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {# usuários se juntaram}}!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# minuto} other {# minutos}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# item não lido} other {# itens não lidos}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>e {2, plural, one {# outro} other {outros #}} estão inclusos no seu pacote inicial"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {seguidor} other {seguidores}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {seguindo} other {seguindo}}"
@@ -580,6 +584,11 @@ msgstr "Uma captura de tela de uma postagem com um botão novo ao lado do botão
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Uma captura de tela de uma página de perfil com um ícone de sino ao lado do botão de seguir, indicando o novo recurso de notificações de atividade."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Adicione mais {0} para continuar"
msgid "Add {displayName} to starter pack"
msgstr "Adicionar {displayName} ao pacote inicial"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Adicionar aviso de conteúdo"
@@ -754,11 +763,11 @@ msgstr "Adicionar texto alternativo (opcional)"
msgid "Add another account"
msgstr "Adicionar outra conta"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Adicionar outra postagem"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Adicionar outra postagem ao tópico"
@@ -776,12 +785,12 @@ msgstr "Adicionar senha do app"
msgid "Add emoji reaction"
msgstr "Adicionar reação de emoji"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Adicionar imagem"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Adicionar mídia à postagem"
@@ -871,7 +880,7 @@ msgstr "Detalhes adicionais (limite de 1000 caracteres)"
msgid "Additional details (limit 300 characters)"
msgstr "Detalhes adicionais (limite de 300 caracteres)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Adulto"
@@ -879,10 +888,10 @@ msgstr "Adulto"
msgid "Adult content"
msgstr "Conteúdo adulto"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Conteúdo adulto"
@@ -894,8 +903,8 @@ msgstr "O conteúdo adulto só pode ser ativo pelo site em <0>bsky.app0>"
msgid "Adult content is disabled."
msgstr "O conteúdo adulto está desativado."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Rótulos de conteúdo adulto"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@exemplo.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Tudo"
@@ -1017,7 +1026,7 @@ msgstr "Já tem uma conta?"
msgid "Already signed in as @{0}"
msgstr "Já registrado como @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Texto alternativo"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Texto Alternativo"
@@ -1059,7 +1068,7 @@ msgstr "Um e-mail foi enviado para {0}. Nele possui um código de confirmação
msgid "An error has occurred"
msgstr "Ocorreu um erro"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Ocorreu um erro"
@@ -1067,7 +1076,7 @@ msgstr "Ocorreu um erro"
msgid "An error occurred while compressing the video."
msgstr "Ocorreu um erro ao compactar o vídeo."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "Ocorreu um erro ao obter as contas sugeridas."
@@ -1076,7 +1085,7 @@ msgstr "Ocorreu um erro ao obter as contas sugeridas."
msgid "An error occurred while fetching the feed."
msgstr "Ocorreu um erro ao recuperar o feed."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Ocorreu um erro ao gerar seu pacote inicial. Tentar novamente?"
@@ -1088,7 +1097,7 @@ msgstr "Ocorreu um erro ao ocultar a sugestão. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "Ocorreu um erro ao carregar o vídeo. Tente novamente mais tarde."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Ocorreu um erro ao carregar o vídeo. Tente novamente."
@@ -1181,7 +1190,7 @@ msgstr "Bem-estar animal"
msgid "Animals"
msgstr "Animais"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF animado"
@@ -1306,12 +1315,12 @@ msgstr "Utilizar feeds recomendados"
msgid "Apply Pull Request"
msgstr "Aplicar Pull Request"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Arquivado desde {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Postagem arquivada"
@@ -1332,11 +1341,11 @@ msgstr "Deseja mesmo excluir este pacote inicial?"
msgid "Are you sure you want to discard your changes?"
msgstr "Deseja mesmo descartar suas alterações?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Tem certeza de que deseja sair desta conversa?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Deseja mesmo sair desta conversa? As mensagens serão excluídas apenas para você."
@@ -1344,11 +1353,7 @@ msgstr "Deseja mesmo sair desta conversa? As mensagens serão excluídas apenas
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Deseja mesmo remover isso de seus feeds?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Deseja mesmo descartar este rascunho?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Tem certeza de que deseja descartar esta postagem?"
@@ -1364,7 +1369,7 @@ msgstr "Você está escrevendo em <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Arte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Nudez artística ou não erótica."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Reproduzir vídeos e GIFs automaticamente"
@@ -1404,11 +1409,13 @@ msgstr "Disponível"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Voltar"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "O Bluesky não pode confirmar que a data mostrada é legítima."
@@ -1623,7 +1630,7 @@ msgstr "Termos de Serviço do Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "O Bluesky armazena seus contatos como dados codificados. Remover seus contatos irá excluir esses dados imediatamente."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "O Bluesky selecionará um grupo de contas recomendadas da sua rede."
@@ -1664,20 +1671,20 @@ msgstr "Violação das regras do site"
msgid "Browse custom feeds"
msgstr "Navegar por feeds personalizados"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "Pesquisar mais contas"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Navegue por mais feeds na página Explorar"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Navegar por mais sugestões"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Navegue por mais sugestões na página Explorar"
@@ -1770,8 +1777,8 @@ msgstr "Câmera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Câmera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Cancelar pesquisa"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Não é possível interagir com um usuário bloqueado"
@@ -1901,9 +1908,9 @@ msgstr "Alterações salvas"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Conversas"
@@ -1989,7 +1996,7 @@ msgstr "Selecionar método de verificação de domínio"
msgid "Choose Feeds"
msgstr "Escolher feeds"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Escolha para mim"
@@ -2096,6 +2103,7 @@ msgstr "Clip 🐴 clop 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Clip 🐴 clop 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,7 +2176,8 @@ msgstr "Fechar janela de GIFs"
msgid "Close image"
msgstr "Fechar imagem"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr "Fechar visualizador de imagens"
@@ -2190,7 +2199,7 @@ msgstr "Fechar janela de boas-vindas"
msgid "Closes password update alert"
msgstr "Fecha o alerta de mudança de senha"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Fecha a janela de nova postagem e descarta o rascunho"
@@ -2242,12 +2251,12 @@ msgstr "Complete e comece a utilizar sua conta"
msgid "Complete the challenge"
msgstr "Complete o captcha"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Escrever nova postagem"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Escreva postagens de até {0, plural, other {# caracteres}}"
@@ -2255,7 +2264,11 @@ msgstr "Escreva postagens de até {0, plural, other {# caracteres}}"
msgid "Compose reply"
msgstr "Escrever resposta"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Comprimindo vídeo..."
@@ -2263,7 +2276,6 @@ msgstr "Comprimindo vídeo..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Configure o filtro de conteúdo por categoria: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "Configurar banner de eventos ao vivo"
@@ -2272,8 +2284,8 @@ msgstr "Configurar banner de eventos ao vivo"
msgid "Configured in <0>moderation settings0>."
msgstr "Configurável no <0>painel de moderação0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "Contatos importados"
msgid "Contacts removed"
msgstr "Contatos removidos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Conteúdo e mídia"
@@ -2389,7 +2401,7 @@ msgstr "Conteúdo promovendo ou representando auto-mutilação"
msgid "Content Warning"
msgstr "Aviso de conteúdo"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Avisos de conteúdo"
@@ -2401,7 +2413,7 @@ msgstr "Fundo do menu, clique para fechá-lo."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Continuar"
@@ -2420,7 +2432,7 @@ msgstr "Continuar tópico..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "Não foi possível seguir todas as correspondências. {0}"
msgid "Could not leave chat"
msgstr "Não foi possível sair desta conversa"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Não foi possível carregar o feed"
@@ -2643,8 +2655,8 @@ msgstr "Criar um QR code para o pacote inicial"
msgid "Create a starter pack"
msgstr "Criar um pacote inicial"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Criar um pacote inicial"
@@ -2654,12 +2666,12 @@ msgstr "Crie um pacote inicial para mim"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Criar outro"
msgid "Create moderation list"
msgstr "Criar lista de moderação"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Criar nova conta"
@@ -2772,7 +2784,7 @@ msgstr "Data de nascimento"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Desativar conta"
@@ -2871,7 +2883,7 @@ msgstr "Excluir minha conta"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Excluir postagem"
@@ -2981,7 +2993,7 @@ msgstr "Desativar citações desta postagem"
msgid "Disable replies entirely"
msgstr "Desativar respostas completamente"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Desativar legendas"
@@ -2996,8 +3008,11 @@ msgstr "Desativado"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Descartar"
@@ -3006,11 +3021,12 @@ msgstr "Descartar"
msgid "Discard changes?"
msgstr "Descartar alterações?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Descartar rascunho?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Descartar postagem?"
@@ -3037,7 +3053,7 @@ msgstr "Dispensar"
msgid "Dismiss banner"
msgstr "Dispensar banner"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Dispensar erro"
@@ -3049,11 +3065,16 @@ msgstr "Ignorar guia de primeiros passos"
msgid "Dismiss interests"
msgstr "Dispensar interesses"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "Dispensar banner de evento ao vivo"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Dispensar esta seção"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Dispensar esta sugestão"
@@ -3121,8 +3142,8 @@ msgstr "Não se preocupe! Todas as mensagens e configurações existentes estão
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Toque duas vezes ou pressione longamente a mensagem para adicionar uma r
msgid "Double tap to close the dialog"
msgstr "Toque duas vezes para fechar diálogo"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Toque duas vezes para curtir"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Baixar o Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Baixar arquivo CAR"
msgid "Doxxing"
msgstr "Doxxing"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "Rascunhos"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Solte para adicionar imagens"
@@ -3285,13 +3313,13 @@ msgstr "Editar opções de interação de postagens"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Editar perfil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Editar perfil"
@@ -3413,7 +3441,7 @@ msgstr "Ativar notificações no dispositivo"
msgid "Enable quote posts of this post"
msgstr "Ativar citações desta postagem"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Ativar legendas"
@@ -3421,13 +3449,13 @@ msgstr "Ativar legendas"
msgid "Enable this source only"
msgstr "Ativar apenar para esta fonte"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Ativar assuntos em alta"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Ativar vídeos em alta no feed Descobrir"
@@ -3464,7 +3492,7 @@ msgstr "Digite uma palavra ou tag"
msgid "Enter code"
msgstr "Inserir código"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Entrar em tela cheia"
@@ -3501,7 +3529,7 @@ msgstr "Insira sua senha"
msgid "Enter your username and password"
msgstr "Insira seu nome de usuário e senha"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Entra em tela cheia"
@@ -3509,7 +3537,7 @@ msgstr "Entra em tela cheia"
msgid "Entertainment"
msgstr "Entretenimento"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Erro"
@@ -3570,7 +3598,7 @@ msgstr "Excluir usuário que você segue"
msgid "Excludes users you follow"
msgstr "Exclui usuários que você segue"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Sair da tela cheia"
@@ -3578,11 +3606,7 @@ msgstr "Sair da tela cheia"
msgid "Exits account deletion process"
msgstr "Sair do processo de exclusão da conta"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Sair do visualizador de imagem"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Expandir texto alternativo"
@@ -3598,11 +3622,11 @@ msgstr "Expandir ou esconder a postagem que você está respondendo"
msgid "Expand post text"
msgstr "Expandir texto da postagem"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Expande ou esconde o texto da postagem"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Era esperado que o URI fosse resolvido para um registro"
@@ -3639,7 +3663,7 @@ msgstr "Imagens sexualmente explícitas."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Explorar"
@@ -3657,8 +3681,8 @@ msgstr "Exportar meus dados"
msgid "Export My Data"
msgstr "Exportar meus dados"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Mídia externa"
@@ -3730,7 +3754,7 @@ msgstr "Não foi possível excluir a postagem, por favor tente novamente."
msgid "Failed to delete starter pack"
msgstr "Falha ao excluir o pacote inicial"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "Não foi possível seguir todas as contas sugeridas, por favor tente novamente"
@@ -3829,6 +3853,10 @@ msgstr "Falha ao remover a verificação"
msgid "Failed to resolve location. Please try again."
msgstr "Falha ao determinar localização. Por favor, tente novamente."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "Não foi possível salvar o rascunho"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Feed"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Feed por {0}"
@@ -3941,7 +3970,7 @@ msgstr "Feed indisponível"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Comentários"
@@ -3958,13 +3987,13 @@ msgstr "Comentários enviados para o operador do feed"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Feeds"
#: src/screens/SavedFeeds.tsx:215
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0>See this guide0> for more information."
-msgstr "Os feeds são algoritmos personalizados que os usuários criam com um pouco de programação. <0>Veja este guia0> para mais informações."
+msgstr "Os feeds são algoritmos personalizados que os usuários podem criar utilizando programação. <0>Veja este guia0> para mais informações."
#: src/components/FeedCard.tsx:314
#: src/screens/SavedFeeds.tsx:90
@@ -4008,6 +4037,10 @@ msgstr "Filtre de quem você receberá notificações"
msgid "Finalizing"
msgstr "Finalizando"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Finalmente! Guarde as postagens que importam para você. Salve-as para as rever a qualquer momento."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Encontrar meus amigos"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Encontre pessoas para seguir"
@@ -4098,19 +4131,19 @@ msgstr "Focar entrada de código"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Seguir"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Seguir {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Seguir {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Seguir conta"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Seguir conta"
msgid "Follow all"
msgstr "Seguir todos"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Seguir todas as contas"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Seguir de volta"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Seguiu todas as contas!"
@@ -4195,8 +4228,8 @@ msgstr "Seguidores que você conhece"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Seguindo"
msgid "Following {0}"
msgstr "Seguindo {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Seguindo {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Preferências do feed principal"
@@ -4264,7 +4297,7 @@ msgstr "Por motivos de segurança, você não poderá ver esta tela novamente. S
msgid "For the best experience, we recommend using the theme font."
msgstr "Para a melhor experiência, nós recomendamos usar a fonte padrão."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Para Você"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Por <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Gere um pacote inicial"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Obter ajuda"
@@ -4376,10 +4409,15 @@ msgstr "Seja notificado quando alguém postar"
msgid "Get started"
msgstr "Vamos começar"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Dê uma cara nova pro seu perfil"
@@ -4394,12 +4432,12 @@ msgstr "Glorificação da violência"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Voltar"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "O modo Ao Vivo está desabilitado para a sua conta no momento"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Mídia explícita"
@@ -4592,7 +4630,7 @@ msgstr "Mantido pelo Bluesky por 7 dias para evitar abusos, e depois excluído"
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Ajuda"
@@ -4632,9 +4670,9 @@ msgstr "Lista oculta"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Ocultar lista de usuários"
msgid "Hide verification badges"
msgstr "Ocultar insígnias de verificação"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Oculta o conteúdo"
@@ -4760,9 +4798,9 @@ msgstr "Espere! Estamos gradualmente dando acesso ao vídeo, e você ainda está
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Página Inicial"
@@ -4819,7 +4857,7 @@ msgstr "Entendi"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "Estou no Bluesky como {0} — venha me encontrar! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Se o texto alternativo é longo, expande a área do texto alternativo"
@@ -4872,7 +4910,7 @@ msgstr "Se você deseja restringir quem pode receber notificações da atividade
msgid "If you're a developer, you can host your own server."
msgstr "Se você for um desenvolvedor, você pode hospedar seu próprio servidor."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Se você estiver tentando alterar seu nome de usuário ou e-mail, faça isso antes de desativar."
@@ -4996,6 +5034,10 @@ msgstr "Ajustes de interação"
msgid "Introducing activity notifications"
msgstr "Apresentando as notificações de atividade"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "Apresentamos a busca de amigos através de contatos"
@@ -5089,7 +5131,7 @@ msgstr "No momento apenas <0>{0} 0> está aqui! Adicione mais pessoas ao seu p
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "É só você por enquanto! Adicione mais pessoas ao seu pacote inicial pesquisando acima."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID da requisição: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Mantenha-me informado"
msgid "KWS website"
msgstr "Página web do KWS"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Rotulado por {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Rotulado pelo autor."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Rótulos"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Rótulos adicionados"
@@ -5218,8 +5260,8 @@ msgstr "Saiba mais sobre a importação de contatos"
msgid "Learn more about self hosting your PDS."
msgstr "Saiba mais sobre a auto-hospedagem do seu Servidor de Dados Pessoais."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Saber mais sobre o aviso colocado no conteúdo"
@@ -5231,7 +5273,7 @@ msgstr "Saiba mais sobre essas mudanças e como compartilhar seus pensamentos co
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Saiba mais sobre essas mudanças e como compartilhar suas ideias conosco lendo nossa postagem no blog."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Saiba mais sobre este aviso"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "Saiba mais nas suas <0>configurações da conta.0>"
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Saiba mais."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Sair"
@@ -5286,7 +5328,7 @@ msgstr "Saindo do Bluesky"
msgid "left to go."
msgstr "na sua frente."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Deixe-me escolher"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Curtir"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Curtidas ({0, plural, one {# curtida} other {# curtidas}})"
@@ -5380,7 +5422,7 @@ msgstr "Curtidas das suas repostagens"
msgid "Likes of your reposts notifications"
msgstr "Notificações de curtidas das suas repostagens"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Curtidas nesta postagem"
@@ -5474,7 +5516,7 @@ msgstr "Lista dessilenciada"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Listas"
@@ -5496,10 +5538,20 @@ msgstr "AO VIVO"
msgid "Live event happening now: {0}"
msgstr "Evento ao vivo acontecendo agora: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "Evento ao vivo ocultado"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "Opções do evento ao vivo"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "Ocultação de evento ao vivo removida"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "Eventos ao vivo aparecem ocasionalmente quando algo interessante está acontecendo. Se quiser, você pode ocultar este evento em particular, ou todos os eventos para esta seção na interface do seu aplicativo."
@@ -5524,11 +5576,11 @@ msgstr "Carregar mais"
msgid "Load more suggested feeds"
msgstr "Carregar mais sugestões de feeds"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Carregar novas notificações"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo por @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo por <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Faça um para mim"
msgid "Make sure this is where you intend to go!"
msgstr "Certifique-se de onde está indo!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Gerenciar feeds salvos"
@@ -5638,7 +5690,16 @@ msgstr "Talvez mais tarde"
msgid "Media"
msgstr "Mídia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "Mídia armazenada em {0}"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "Mídia armazenada em outro dispositivo"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Mídia que pode ser perturbadora ou inapropriada para algumas pessoas."
@@ -5653,7 +5714,7 @@ msgstr "usuários mencionados"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Menções"
@@ -5716,6 +5777,10 @@ msgstr "Notificações diversas"
msgid "Misleading"
msgstr "Enganoso"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "Mídia ausente"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "Mais idiomas..."
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Filmes"
msgid "Music"
msgstr "Música"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Navegar até o pacote inicial"
msgid "Navigates to the next screen"
msgstr "Navega para próxima tela"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Navega para seu perfil"
@@ -5983,6 +6049,7 @@ msgstr "Novo endereço de e-mail"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Novo Recurso"
@@ -6018,12 +6085,12 @@ msgstr "Novas mensagens"
msgid "New password"
msgstr "Nova senha"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Postar"
@@ -6085,7 +6152,7 @@ msgstr "Notícias"
msgid "Next"
msgstr "Próximo"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Próxima imagem"
@@ -6114,6 +6181,10 @@ msgstr "Ainda não há feeds personalizados"
msgid "No DNS Panel"
msgstr "Não tenho painel de DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "Ainda não há rascunhos"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Sem expiração definida"
@@ -6136,7 +6207,7 @@ msgstr "Sem imagem"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Sem curtidas ainda"
@@ -6150,7 +6221,7 @@ msgstr "Sem listas"
msgid "No longer following {0}"
msgstr "Você não está mais seguindo {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "Ainda não há mídia"
@@ -6195,7 +6266,7 @@ msgstr "Ainda não há postagens"
msgid "No quotes yet"
msgstr "Sem citações ainda"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "Ainda não há respostas"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Nenhum resultado"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Nenhum resultados"
@@ -6238,7 +6309,7 @@ msgstr "Sem resultados."
msgid "No search results found for \"{search}\"."
msgstr "Nenhum resultado encontrado para \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "Ainda não há Pacotes Iniciais"
@@ -6247,7 +6318,7 @@ msgstr "Ainda não há Pacotes Iniciais"
msgid "No thanks"
msgstr "Não, obrigado"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "Ainda não há postagens de vídeo"
@@ -6298,6 +6369,10 @@ msgstr "Não é seguido por ninguém que você segue"
msgid "Not Found"
msgstr "Não encontrado"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Nota sobre compartilhamento"
@@ -6321,7 +6396,7 @@ msgstr "Nada foi salvo ainda"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Configurações de notificação"
@@ -6349,10 +6424,10 @@ msgstr "Sons de Notificação"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Notificações"
@@ -6368,8 +6443,8 @@ msgstr "agora"
msgid "Now"
msgstr "Agora"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Nudez"
@@ -6390,7 +6465,7 @@ msgstr "Ah, não!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Ok"
@@ -6417,23 +6492,23 @@ msgstr "no<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Resetar tutoriais"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Um ou mais GIFs estão sem texto alternativo."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Uma ou mais imagens estão sem texto alternativo."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "Um ou mais arquivos selecionados não são suportados."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "Um ou mais arquivos selecionados são muito grandes. O tamanho máximo é de 100 MB."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Um ou mais vídeos estão sem texto alternativo."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ops, algo deu errado!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ops!"
msgid "Open avatar creator"
msgstr "Abrir criador de avatar"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "Abrir câmera"
@@ -6485,12 +6560,16 @@ msgstr "Abrir câmera"
msgid "Open conversation options"
msgstr "Abrir opções de conversa"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "Abrir rascunho"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Abrir menu"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Abrir seletor de emoji"
@@ -6557,7 +6636,7 @@ msgstr "Abrir registros do sistema"
msgid "Opens {0} feed"
msgstr "Abrir feed {0}"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Abre uma janela para adicionar um aviso de conteúdo para a sua postagem"
@@ -6589,25 +6668,25 @@ msgstr "Abre a janela de alteração de usuário"
msgid "Opens composer"
msgstr "Abre o editor de postagem"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "Abre a câmera do dispositivo"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "Abre a galeria do dispositivo para selecionar até {MAX_IMAGES, plural, other {# imagens}} ou um único vídeo ou GIF."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Abre o seletor de emoji"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Abre o fluxo de criação de conta do Bluesky"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Abre a tela para entrar com uma conta Bluesky existente"
@@ -6620,7 +6699,7 @@ msgstr "Abre a janela de seleção de GIFs"
msgid "Opens helpdesk in browser"
msgstr "Abre a central de ajuda no navegador"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "Abre seletor de imagens"
@@ -6640,10 +6719,14 @@ msgstr "Abre o formulário de redefinição de senha"
msgid "Opens post language settings"
msgstr "Abre configurações de idioma da postagem"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "Abrir o compositor de post"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "Abre este rascunho no editor"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "Estado OTA: Nenhum disponível"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Outro"
@@ -6763,13 +6846,13 @@ msgstr "Senha atualizada"
msgid "Password updated!"
msgstr "Senha atualizada!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pausar"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Pausar vídeo"
@@ -6829,7 +6912,7 @@ msgstr "Número de telefone verificado"
msgid "Photography"
msgstr "Fotografia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Imagens destinadas a adultos."
@@ -6874,9 +6957,9 @@ msgstr "Feeds Fixados"
msgid "Pinned to your feeds"
msgstr "Fixado em seus feeds"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Tocar"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Reproduzir {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Reproduzir vídeo"
@@ -6893,11 +6976,11 @@ msgstr "Reproduzir vídeo"
msgid "Play Video"
msgstr "Reproduzir Vídeo"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Reproduz ou para o GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Reproduz ou para o vídeo"
@@ -6909,7 +6992,7 @@ msgstr "Reproduz o GIF"
msgid "Plays the video"
msgstr "Reproduz o vídeo"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Por favor, adicione os rótulos de aviso de conteúdo que sejam aplicáveis para a mídia que você está postando."
@@ -7066,31 +7149,31 @@ msgstr "Escreva sua mensagem abaixo:"
msgid "Politics"
msgstr "Política"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornografia"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Postagem"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Postar"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Postar uma foto"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Postar um vídeo"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Postar Tudo"
@@ -7217,7 +7300,7 @@ msgstr "Toque para ver os seguidores desta conta que você também segue"
msgid "Preview"
msgstr "Prévia"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Imagem anterior"
@@ -7257,8 +7340,8 @@ msgstr "Configurações de Privacidade e Segurança"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Política de Privacidade"
@@ -7266,7 +7349,11 @@ msgstr "Política de Privacidade"
msgid "Privacy violation of a minor"
msgstr "Violação da privacidade de um menor"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Processando vídeo..."
@@ -7280,10 +7367,10 @@ msgstr "Processando..."
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Perfil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Listas públicas e compartilháveis de usuários para silenciar ou bloquear em massa."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Publicar postagem"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Publicar postagens"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Publicar respostas"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Publicar resposta"
@@ -7360,6 +7447,7 @@ msgstr "Notificações de citação"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Citar postagem"
@@ -7385,7 +7473,7 @@ msgstr "Citações desabilitadas"
msgid "Quotes"
msgstr "Citações"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Citações desta postagem"
@@ -7424,11 +7512,11 @@ msgstr "ler sobre como usar os filtros de busca"
msgid "Read blog post"
msgstr "Ler postagem do blog (em inglês)"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Ver menos"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Ver mais"
@@ -7720,13 +7808,13 @@ msgstr "Respostas desabilitadas"
msgid "Replies to this post are disabled."
msgstr "Respostas para esta postagem estão desativadas."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Responder"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Responder ({0, plural, one {# resposta} other {# respostas}})"
@@ -7892,7 +7980,7 @@ msgstr "Repostado por você"
msgid "Reposts"
msgstr "Repostagens"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Repostagens"
@@ -7996,14 +8084,14 @@ msgstr "Tenta a última ação, que deu erro"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Voltar para página anterior"
msgid "Returns to home page"
msgstr "Voltar para a tela inicial"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Voltar para página anterior"
@@ -8063,7 +8151,7 @@ msgstr "Retorna à etapa anterior"
msgid "Save"
msgstr "Salvar"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Salvar"
@@ -8076,9 +8164,26 @@ msgstr "Salvar data de nascimento"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Salvar alterações"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "Salvar alterações?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "Salvar rascunho"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "Salvar rascunho?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Salvar nos meus feeds"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Salvos"
@@ -8155,7 +8260,7 @@ msgstr "Ir para o topo"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Pesquisar"
@@ -8164,7 +8269,7 @@ msgstr "Pesquisar"
msgid "Search @{0}'s posts"
msgstr "Pesquisar postagens de @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Pesquisar por nome ou interesse"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Pesquisar feeds"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "Pesquisar por \"{interestsDisplayName}\""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "Pesquisar por \"{interestsDisplayName}\" (ativo)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Pesquisar postagens"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Pesquisar por usuários"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Pesquisar..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Pesquisa por perfis"
@@ -8283,12 +8388,12 @@ msgstr "Ver postagens com #{tag} deste usuário"
msgid "See jobs at Bluesky"
msgstr "Veja empregos na Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Ver mais"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "Ver mais perfis sugeridos"
@@ -8456,7 +8561,7 @@ msgstr "Selecione seu idioma preferido para as traduções no seu feed."
msgid "Select your preferred notification channels"
msgstr "Selecione seus canais preferidos de notificação"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "Não é possível selecionar múltiplos tipos de mídia."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Enviar E-mail"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Enviar comentários"
@@ -8566,7 +8671,7 @@ msgstr "Configura o e-mail para recuperação de senha"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Configurações"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Ajustes salvos"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Atividade sexual ou nudez erótica."
@@ -8634,7 +8739,7 @@ msgstr "Sexualmente Sugestivo"
msgid "Share"
msgstr "Compartilhar"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Compartilhar"
@@ -8712,13 +8817,13 @@ msgstr "Compartilhe seu feed favorito!"
msgid "Shared Preferences Tester"
msgstr "Testador de Preferências Compartilhadas"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Mostrar"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Mostrar texto alternativo"
@@ -8820,7 +8925,7 @@ msgstr "Mostrar aviso e filtrar dos feeds"
msgid "Show when you’re live"
msgstr "Mostrar quando você estiver ao vivo"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Mostra informações sobre quando esta postagem foi criada"
@@ -8828,8 +8933,8 @@ msgstr "Mostra informações sobre quando esta postagem foi criada"
msgid "Shows other accounts you can switch to"
msgstr "Exibe suas outras contas que você pode acessar"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Exibe o conteúdo"
@@ -8842,14 +8947,14 @@ msgstr "Exibe o conteúdo"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "É Necessário Fazer Login"
msgid "Signed in as @{0}"
msgstr "Autenticado como @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Contas semelhantes"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "Pular compartilhamento de contatos e continuar para o app"
msgid "Skip introduction and start using your account"
msgstr "Pular introdução e começar a usar a sua conta"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Pular para a próxima etapa"
@@ -8967,7 +9068,7 @@ msgstr "Desenvolvimento de software"
msgid "Some of your verifications are invalid."
msgstr "Algumas de suas verificações são inválidas."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Alguns outros feeds que você pode gostar"
@@ -8994,7 +9095,7 @@ msgstr "Algo deu errado"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Algo deu errado, tente novamente"
@@ -9020,7 +9121,7 @@ msgstr "Algo deu errado. Por favor, tente novamente."
msgid "Something wrong? Let us know."
msgstr "Algo de errado? Nos avise."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Desculpe, não foi possível carregar as contas sugeridas no momento."
@@ -9113,7 +9214,11 @@ msgstr "Pacotes Iniciais"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Pacotes iniciais permitem que você compartilhe facilmente seus feeds e pessoas favoritas com seus amigos."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "Pacotes iniciais permitem que você compartilhe facilmente seus feeds e pessoas favoritas com seus amigos."
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "Pacotes Iniciais permitem que você compartilhe facilmente seus feeds e pessoas favoritas com seus amigos."
@@ -9181,11 +9286,11 @@ msgstr "Inscreva-se em @{0} para utilizar estes rótulos:"
msgid "Subscribe to account activity"
msgstr "Inscrever-se na atividade da conta"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Inscrever-se no rotulador"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Inscrever-se neste rotulador"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Contas Sugeridas"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Sugeridos para você"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Sugestivo"
@@ -9354,8 +9459,8 @@ msgstr "Termos"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Termos de Serviço"
@@ -9403,12 +9508,12 @@ msgstr "Este nome de usuário já está em uso"
msgid "That's all, folks!"
msgstr "Isso é tudo, pessoal!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Isso é tudo!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "A conta poderá interagir com você após o desbloqueio."
@@ -9447,7 +9552,7 @@ msgstr "O feed de descoberta (Discover)"
msgid "The Discover feed now knows what you like"
msgstr "O feed Discover agora sabe o que você curte"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "A experiência é melhor no aplicativo. Baixe o Bluesky agora e continuaremos de onde você parou."
@@ -9527,7 +9632,7 @@ msgstr "Tema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "Há um limite de quantas vezes você pode alterar sua data de nascimento. Aguarde um ou dois dias antes de atualizá-la novamente."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Não há limite de tempo para desativação da conta, volte quando quiser."
@@ -9711,6 +9816,10 @@ msgstr "Este conteúdo não é visível sem uma conta do Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Esta conversa é com uma conta desativada ou excluída. Pressione para ver as ações"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "Este rascunho será excluído permanentemente."
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Este email já está associado à sua conta."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Este feed está vazio! Talvez você precise seguir mais usuários ou configurar os idiomas filtrados."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Este feed está vazio."
@@ -9798,7 +9907,7 @@ msgstr "Esta lista está vazia."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Este serviço de moderação está indisponível. Veja mais detalhes abaixo. Se este problema persistir, entre em contato."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Esta postagem alega ter sido criada em <0>{0}0>, mas ela apareceu no Bluesky em <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr "Esta postagem foi excluída pelo autor"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Esta postagem será ocultada dos feeds e tópicos. Isso não pode ser desfeito."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "O autor desta postagem desabilitou as postagens de citação."
@@ -9834,7 +9943,7 @@ msgstr "Esta resposta será classificada em uma seção oculta na parte inferior
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Este serviço não proveu termos de serviço ou política de privacidade."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "Este serviço não é suportado enquanto o recurso Ao Vivo estiver em testes. Serviços permitidos: {formatted}."
@@ -9900,8 +10009,8 @@ msgstr "Isso removerá sua postagem desta postagem de citação para todos os us
msgid "Thread options"
msgstr "Opções de tópicos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Preferências dos tópicos"
@@ -9951,7 +10060,7 @@ msgstr "Hoje"
msgid "Toggle to enable or disable adult content"
msgstr "Ligar ou desligar conteúdo adulto"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Alterna o som"
@@ -9988,8 +10097,8 @@ msgstr "Assunto"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Traduzir"
@@ -10091,15 +10200,15 @@ msgstr "Informação do feed indisponível"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Desbloquear"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Desbloquear"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Desbloquear Conta"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Desbloquear Conta?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Desfazer"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Desfazer"
@@ -10142,7 +10255,7 @@ msgstr "Desfazer repostagem"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Desfazer repostagem ({0, plural, one {# repostagem} other {# repostagens}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Deixar de seguir {0}"
@@ -10151,7 +10264,7 @@ msgstr "Deixar de seguir {0}"
msgid "Unfollow account"
msgstr "Parar de seguir conta"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Para de seguir o usuário"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Descurtir"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Descurtir ({0, plural, one {# curtida} other {# curtidas}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Dessilenciar lista"
msgid "Unmute thread"
msgstr "Dessilenciar tópico"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Ativar o áudio do vídeo"
@@ -10276,7 +10389,7 @@ msgstr "Lista desafixada"
msgid "Unsnooze email reminder"
msgstr "Reativar lembretes de email"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Cancelar inscrição"
@@ -10285,7 +10398,7 @@ msgstr "Cancelar inscrição"
msgid "Unsubscribe from list"
msgstr "Cancelar inscrição da lista"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Cancelar inscrição deste rotulador"
@@ -10293,7 +10406,7 @@ msgstr "Cancelar inscrição deste rotulador"
msgid "Unsubscribed from list"
msgstr "Cancelada inscrição na lista"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Formato de vídeo não suportado: {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "Carregar um arquivo"
msgid "Upload from Library"
msgstr "Carregar da galeria"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Enviando imagens..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Enviando prévia de link..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Enviando vídeo..."
@@ -10389,8 +10506,8 @@ msgstr "Usar provedor padrão"
msgid "Use in-app browser"
msgstr "Usar o navegador interno"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Usar o navegador interno para abrir links"
@@ -10445,6 +10562,10 @@ msgstr "Este Usuário Te Bloqueou"
msgid "User list by {0}"
msgstr "Lista de usuários por {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Sua lista de usuários"
@@ -10597,8 +10718,8 @@ msgstr "Verificando..."
msgid "Version {0}"
msgstr "Versão {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Vídeo"
@@ -10614,20 +10735,24 @@ msgstr "Feed de vídeos"
msgid "Video from {0}: {text}"
msgstr "Vídeo de {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "Vídeo de {0}. Toque para reproduzir ou pausar o vídeo"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Videogames"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "O vídeo está pausado"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "O vídeo está reproduzindo"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Vídeo não encontrado."
@@ -10635,11 +10760,11 @@ msgstr "Vídeo não encontrado."
msgid "Video settings"
msgstr "Configurações de vídeo"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Vídeo enviado"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Vídeo: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Vídeo: {0}"
msgid "Videos"
msgstr "Vídeos"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "Vídeos devem ter menos de 3 minutos de duração."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Visualizar"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Ver o avatar de {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Ver perfil de {0}"
@@ -10708,7 +10833,7 @@ msgstr "Ver mais"
msgid "View more trending videos"
msgstr "Ver mais vídeos em alta"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "Visualizar postagem"
@@ -10788,7 +10913,7 @@ msgstr "Conteúdo violento ou ameaçador"
msgid "Visit site"
msgstr "Visitar site"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Acessar suas configurações de notificação"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Estamos com problemas para iniciar o processo de verificação de idade da sua conta. Por favor <0>entre em contato com o suporte0> para obter assistência."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Estamos com problemas de rede, tente novamente"
@@ -10968,7 +11093,7 @@ msgstr "Não foi possível carregar sua lista de palavras silenciadas. Por favor
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Lamentamos, mas sua pesquisa não pôde ser concluída. Por favor, tente novamente em alguns minutos."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Sentimos muito! A postagem que você está respondendo foi excluída."
@@ -10977,7 +11102,7 @@ msgstr "Sentimos muito! A postagem que você está respondendo foi excluída."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Sentimos muito! Não conseguimos encontrar a página que você estava procurando."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Sentimos muito! Você só pode se inscrever em até vinte rotuladores, e você atingiu seu limite de vinte."
@@ -11018,12 +11143,11 @@ msgstr "Do que você gosta?"
msgid "What do you want to call your starter pack?"
msgstr "Como você quer chamar seu pacote inicial?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
-msgstr "E aí?"
+msgstr "E aí, qual é a boa?"
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:147
msgid "When you tap on a check, you’ll see which organizations have granted verification."
@@ -11097,6 +11221,14 @@ msgstr "Por que este usuário deve ser analisado?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Você gostaria de bloquear esse usuário e/ou excluir esta conversa?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "Gostaria de salvar isto como um rascunho antes de visualizar os seus rascunhos?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "Gostaria de salvar isto como um rascunho para editar mais tarde?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Escreva uma mensagem"
msgid "Write a post"
msgstr "Escrever uma postagem"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Escrever postagem"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Escreva sua resposta"
@@ -11133,8 +11265,8 @@ msgstr "p. ex. www.minhalive.tv"
msgid "Yes"
msgstr "Sim"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Sim, desativar"
@@ -11188,7 +11320,7 @@ msgstr "Você está na fila."
msgid "You are Live"
msgstr "Você está ao vivo"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Você não está mais ao vivo"
@@ -11200,7 +11332,7 @@ msgstr "Você não tem permissão para enviar vídeos."
msgid "You are not following anyone yet"
msgstr "Você ainda não está seguindo ninguém"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Agora você está ao vivo!"
@@ -11255,11 +11387,11 @@ msgstr "Agora você pode escolher ser notificado quando pessoas específicas pos
msgid "You can now sign in with your new password."
msgstr "Agora você pode entrar com a sua nova senha."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "Você só pode selecionar um GIF por vez."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "Você só pode selecionar um vídeo por vez."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Você pode reativar sua conta para continuar fazendo login. Seu perfil e suas postagens ficarão visíveis para outros usuários."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "Você pode selecionar até {MAX_IMAGES, plural, other {# imagens}} no total."
@@ -11317,7 +11449,7 @@ msgstr "Você bloqueou este usuário"
msgid "You have blocked this user. You cannot view their content."
msgstr "Você bloqueou este usuário. Você não pode ver este conteúdo."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Você desativou completamente as notificações de resposta, citação e menção, por isso esta aba não será atualizada. Para mudar isso, vá até suas <0>configurações de notificação0>."
@@ -11376,6 +11508,14 @@ msgstr "Você verificou com sucesso o seu endereço de e-mail. Você pode fechar
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Você atingiu temporariamente o limite de envios de vídeo. Tente novamente mais tarde."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "Você tem alterações não salvas neste rascunho, gostaria de salvá-las?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "Você tem alterações não salvas. Gostaria de salvá-las antes de visualizar os seus rascunhos?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Você ainda não criou um pacote inicial!"
@@ -11437,7 +11577,7 @@ msgstr "Você deve ter {MIN_ACCESS_AGE} anos ou mais para criar uma conta."
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Você deve ter pelo menos 13 anos para usar o Bluesky. Leia os nossos <0>Termos de Serviço0> para obter mais informações."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Você deve estar seguindo pelo menos sete outras pessoas para gerar um pacote inicial."
@@ -11449,7 +11589,7 @@ msgstr "Para acessar esta tela, você deve completar a verificação de idade."
msgid "You must grant access to your photo library to save a QR code"
msgstr "Você deve conceder acesso à sua galeria de fotos para salvar o QR code"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "Você precisa permitir acesso à sua biblioteca de mídia."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Você está na fila"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Você está conectado com uma Senha de app. Entre usando a sua senha padrão para prosseguir com a exclusão da conta."
@@ -11589,7 +11729,7 @@ msgstr "Você atingiu seu limite diário de uploads de vídeo (muitos bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Você atingiu seu limite diário de uploads de vídeos (muitos vídeos)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Você esgotou os vídeos disponíveis para assistir. Que tal descansar um pouco?"
@@ -11625,7 +11765,7 @@ msgstr "Seu recurso foi enviado. Se o seu recurso for aceito, você receberá um
msgid "Your birth date"
msgstr "Sua data de nascimento"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Seu navegador não suporta o formato de vídeo. Por favor, tente um navegador diferente."
@@ -11692,8 +11832,8 @@ msgstr "Seu nome de usuário completo será <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Seus interesses"
@@ -11731,11 +11871,11 @@ msgstr "Sua senha foi alterada com sucesso! Use a sua nova senha quando entrar n
msgid "Your password must be at least 8 characters long."
msgstr "Sua senha deve ter no mínimo 8 caracteres."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "Sua postagem foi enviada"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "Suas postagens foram enviadas"
@@ -11752,11 +11892,11 @@ msgstr "Sua foto de perfil"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "Sua foto de perfil cercada por círculos concêntricos das fotos de perfil de outros usuários"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Seu perfil, postagens, feeds e listas não serão mais visíveis para outros usuários do Bluesky. Você pode reativar sua conta a qualquer momento fazendo login."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "Sua resposta foi enviada"
diff --git a/src/locale/locales/pt-PT/messages.po b/src/locale/locales/pt-PT/messages.po
index bcacf275f9..98aab38051 100644
--- a/src/locale/locales/pt-PT/messages.po
+++ b/src/locale/locales/pt-PT/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: pt\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# republicação} other {# republicações}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# segundo} other {# segundos}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# item não lido} other {# itens não lidos}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# item não lido} other {# itens não lidos}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {#me} other {#me}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, one {Mais 1 post} other {Mais # posts}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {seguidor} other {seguidores}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {a seguir} other {a seguir}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {gosto} other {gostos}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {gosto} other {gostos}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {publicação} other {publicações}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citação} other {citações}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {republicação} other {republicações}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {guardado} other {guardados}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (Conta)"
@@ -189,11 +193,11 @@ msgstr "{0} reagiu com {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} reagiu com {1} a {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, um feed de {1}, gostado por {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, uma lista de {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {# utilizadores aderiram}}!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# minuto} other {# minutos}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# item não lido} other {# itens não lidos}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1> {2, plural, one {# outro} other {# outros}} estão incluídos no seu pacote de iniciante"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {seguidor} other {seguidores}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {a seguir} other {a seguir}}"
@@ -580,6 +584,11 @@ msgstr "Uma captura de ecrã de uma publicação com um novo botão ao lado do b
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Uma captura de ecrã de uma página de perfil com um ícone de sino ao lado do botão seguir, indicando a nova funcionalidade de notificações de atividade."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Adicione mais {0} para prosseguir"
msgid "Add {displayName} to starter pack"
msgstr "Adicionar {displayName} ao pacote de iniciante"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Adicionar um alerta de conteúdo"
@@ -754,11 +763,11 @@ msgstr "Adicionar texto alternativo (opcional)"
msgid "Add another account"
msgstr "Adicionar outra conta"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Adicionar outra publicação"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Adicionar outra publicação ao fio"
@@ -776,12 +785,12 @@ msgstr "Adicionar Palavra-passe da Aplicação"
msgid "Add emoji reaction"
msgstr "Adicionar reação de emoji"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Adicionar imagem"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Adicionar conteúdo multimédia à publicação"
@@ -871,7 +880,7 @@ msgstr "Detalhes adicionais (máximo de 1000 caracteres)"
msgid "Additional details (limit 300 characters)"
msgstr "Detalhes adicionais (limite de 300 caracteres)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Adulto"
@@ -879,10 +888,10 @@ msgstr "Adulto"
msgid "Adult content"
msgstr "Conteúdo adulto"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Conteúdo adulto"
@@ -894,8 +903,8 @@ msgstr "O conteúdo adulto só pode ser permitido através da Web em <0>bsky.app
msgid "Adult content is disabled."
msgstr "O conteúdo adulto está desabilitado."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Rótulos de Conteúdo Adulto"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@exemplo.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Tudo"
@@ -1017,7 +1026,7 @@ msgstr "Já possui uma conta?"
msgid "Already signed in as @{0}"
msgstr "Já iniciou sessão como @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Texto alternativo"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Texto Alternativo"
@@ -1059,7 +1068,7 @@ msgstr "Um e-mail foi enviado para {0}. Ele inclui um código de confirmação q
msgid "An error has occurred"
msgstr "Ocorreu um erro"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Ocorreu um erro"
@@ -1067,7 +1076,7 @@ msgstr "Ocorreu um erro"
msgid "An error occurred while compressing the video."
msgstr "Ocorreu um erro ao comprimir o vídeo."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "Ocorreu um erro ao obter as contas sugeridas."
@@ -1076,7 +1085,7 @@ msgstr "Ocorreu um erro ao obter as contas sugeridas."
msgid "An error occurred while fetching the feed."
msgstr "Ocorreu um erro ao obter o feed."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Ocorreu um erro enquanto gerava o seu pacote de iniciante. Deseja tentar novamente?"
@@ -1088,7 +1097,7 @@ msgstr "Ocorreu um erro ao ocultar a sugestão. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "Ocorreu um erro enquanto carregava o vídeo. Tente novamente mais tarde."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Ocorreu um erro enquanto carregava o vídeo. Tente novamente."
@@ -1181,7 +1190,7 @@ msgstr "Bem-estar animal"
msgid "Animals"
msgstr "Animais"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF animado"
@@ -1306,12 +1315,12 @@ msgstr "Utilizar feeds recomendados"
msgid "Apply Pull Request"
msgstr "Aplicar Pull Request"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Arquivado desde {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Publicação arquivada"
@@ -1332,11 +1341,11 @@ msgstr "Tem a certeza que deseja eliminar este pacote de iniciante?"
msgid "Are you sure you want to discard your changes?"
msgstr "Tem a certeza que deseja descartar as suas alterações?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Tem a certeza que deseja sair desta conversa?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Tem a certeza que deseja sair desta conversa? As suas mensagens serão eliminadas para si, mas não para o outro participante."
@@ -1344,11 +1353,7 @@ msgstr "Tem a certeza que deseja sair desta conversa? As suas mensagens serão e
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Tem a certeza que deseja eliminar isto dos seus feeds?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Tem a certeza que deseja descartar este rascunho?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Tem a certeza que deseja descartar esta publicação?"
@@ -1364,7 +1369,7 @@ msgstr "Está a escrever em <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Arte"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Nudez artística ou não erótica."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Reproduzir vídeos e GIFs automaticamente"
@@ -1404,11 +1409,13 @@ msgstr "Disponível"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Voltar"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "O Bluesky não pode confirmar a veracidade da data aplicada."
@@ -1623,7 +1630,7 @@ msgstr "Termos de Serviço de Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "O Bluesky guarda os seus contactos como dados codificados. Ao remover os seus contactos, esses dados são eliminados imediatamente."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "O Bluesky escolherá um conjunto de contas recomendadas de pessoas na sua rede."
@@ -1664,20 +1671,20 @@ msgstr "Violação das regras do site"
msgid "Browse custom feeds"
msgstr "Procurar feeds personalizados"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "Procurar mais contas"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Procure mais feeds na página Explorar"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Procurar mais sugestões"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Procure mais sugestões na página Explorar"
@@ -1770,8 +1777,8 @@ msgstr "Câmara"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Câmara"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Cancelar pesquisa"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Não pode interagir com um utilizador bloqueado"
@@ -1901,11 +1908,11 @@ msgstr "Alterações guardadas"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
-msgstr "Conversa"
+msgstr "Conversas"
#: src/screens/Messages/components/RequestButtons.tsx:78
#: src/screens/Messages/components/RequestButtons.tsx:313
@@ -1989,7 +1996,7 @@ msgstr "Escolher método de verificação de domínio"
msgid "Choose Feeds"
msgstr "Escolher feeds"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Escolha por mim"
@@ -2096,6 +2103,7 @@ msgstr "Clip 🐴 clop 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Clip 🐴 clop 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,7 +2176,8 @@ msgstr "Fechar janela de diálogo de GIFs"
msgid "Close image"
msgstr "Fechar imagem"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr "Fechar visualizador de imagens"
@@ -2190,7 +2199,7 @@ msgstr "Fechar modal de boas-vindas"
msgid "Closes password update alert"
msgstr "Fecha o aviso de atualização de palavra-passe"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Fecha o compositor de publicação e descarta o rascunho de publicação"
@@ -2242,12 +2251,12 @@ msgstr "Complete e comece a utilizar a sua conta"
msgid "Complete the challenge"
msgstr "Conclua o desafio"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Escrever nova publicação"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Compor publicações com até {0, plural, other {# caracteres}} de comprimento"
@@ -2255,7 +2264,11 @@ msgstr "Compor publicações com até {0, plural, other {# caracteres}} de compr
msgid "Compose reply"
msgstr "Escrever resposta"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "A comprimir vídeo..."
@@ -2263,7 +2276,6 @@ msgstr "A comprimir vídeo..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Configurar definição de filtragem de conteúdo para a categoria: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "Configurar banner de eventos ao vivo"
@@ -2272,8 +2284,8 @@ msgstr "Configurar banner de eventos ao vivo"
msgid "Configured in <0>moderation settings0>."
msgstr "Configurado nas <0>definições de moderação0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "Contactos importados"
msgid "Contacts removed"
msgstr "Contactos removidos"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Conteúdo e Multimédia"
@@ -2389,7 +2401,7 @@ msgstr "Conteúdo promovendo ou representando automutilação"
msgid "Content Warning"
msgstr "Alerta de Conteúdo"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Alertas de conteúdo"
@@ -2401,7 +2413,7 @@ msgstr "Backdrop do menu de contexto, toque para fechar o ecrã."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Continuar"
@@ -2420,7 +2432,7 @@ msgstr "Continuar fio..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "Não foi possível seguir todas as correspondências. {0}"
msgid "Could not leave chat"
msgstr "Não foi possível sair da conversa"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Não foi possível carregar o feed"
@@ -2643,8 +2655,8 @@ msgstr "Criar um código QR para um pacote de iniciante"
msgid "Create a starter pack"
msgstr "Criar um pacote de iniciante"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Criar um Pacote de Iniciante"
@@ -2654,12 +2666,12 @@ msgstr "Criar um pacote de iniciante para mim"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Criar outra"
msgid "Create moderation list"
msgstr "Criar lista de moderação"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Criar conta nova"
@@ -2772,7 +2784,7 @@ msgstr "Data de nascimento"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Desativar conta"
@@ -2871,7 +2883,7 @@ msgstr "Eliminar a minha conta"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Eliminar publicação"
@@ -2981,7 +2993,7 @@ msgstr "Desativar citações desta publicação"
msgid "Disable replies entirely"
msgstr "Desativar respostas completamente"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Desativar legendas"
@@ -2996,8 +3008,11 @@ msgstr "Desativado"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Descartar"
@@ -3006,11 +3021,12 @@ msgstr "Descartar"
msgid "Discard changes?"
msgstr "Descartar alterações?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Descartar rascunho?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Descartar publicação?"
@@ -3037,7 +3053,7 @@ msgstr "Ignorar"
msgid "Dismiss banner"
msgstr "Ignorar banner"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Ignorar falha"
@@ -3049,11 +3065,16 @@ msgstr "Ignorar guia de introdução"
msgid "Dismiss interests"
msgstr "Descartar interesses"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "Ignorar banner de evento ao vivo"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Ignorar esta secção"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Ignorar esta sugestão"
@@ -3121,8 +3142,8 @@ msgstr "Não se preocupe! Todas as mensagens e configurações existentes serão
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Toque duplo ou toque prolongadamente a mensagem para adicionar uma reaç
msgid "Double tap to close the dialog"
msgstr "Toque duplo para fechar janela de diálogo"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Toque duplo para dar um gosto"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Transferir Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Transferir ficheiro CAR"
msgid "Doxxing"
msgstr "Doxxing"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "Rascunhos"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Solte para adicionar imagens"
@@ -3285,13 +3313,13 @@ msgstr "Editar definições de interação da publicação"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Editar perfil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Editar Perfil"
@@ -3413,7 +3441,7 @@ msgstr "Ativar notificações push"
msgid "Enable quote posts of this post"
msgstr "Ativar citações desta publicação"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Ativar legendas"
@@ -3421,13 +3449,13 @@ msgstr "Ativar legendas"
msgid "Enable this source only"
msgstr "Habilitar apenas para esta fonte"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Ativar assuntos do momento"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Permitir vídeos do momento no seu feed Descobrir"
@@ -3464,7 +3492,7 @@ msgstr "Insira uma palavra ou tag"
msgid "Enter code"
msgstr "Insira o código"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Entrar em ecrã cheio"
@@ -3501,7 +3529,7 @@ msgstr "Insira a sua palavra-passe"
msgid "Enter your username and password"
msgstr "Insira o seu nome de utilizador e palavra-passe"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Entra em ecrã cheio"
@@ -3509,7 +3537,7 @@ msgstr "Entra em ecrã cheio"
msgid "Entertainment"
msgstr "Entretenimento"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Erro"
@@ -3570,7 +3598,7 @@ msgstr "Excluir utilizadores que eu sigo"
msgid "Excludes users you follow"
msgstr "Exclui utilizadores que sigo"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Sair do ecrã cheio"
@@ -3578,11 +3606,7 @@ msgstr "Sair do ecrã cheio"
msgid "Exits account deletion process"
msgstr "Sai do processo de eliminação da conta"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Sai da visualização da imagem"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Expandir texto alternativo"
@@ -3598,11 +3622,11 @@ msgstr "Expandir ou colapsar a publicação completa a que está a responder"
msgid "Expand post text"
msgstr "Expandir texto da publicação"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Expande ou colapsa o texto da publicação"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Era esperado que o URI fosse resolvido para um registo"
@@ -3639,7 +3663,7 @@ msgstr "Imagens sexuais explícitas."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Explorar"
@@ -3657,8 +3681,8 @@ msgstr "Exportar os meus dados"
msgid "Export My Data"
msgstr "Exportar os Meus Dados"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Conteúdo multimédia externo"
@@ -3730,7 +3754,7 @@ msgstr "Falha ao eliminar a publicação, tente novamente"
msgid "Failed to delete starter pack"
msgstr "Falha ao eliminar o pacote de iniciante"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "Falha ao seguir todas as contas sugeridas, por favor, tente novamente"
@@ -3829,6 +3853,10 @@ msgstr "Falha ao remover verificação"
msgid "Failed to resolve location. Please try again."
msgstr "Falha ao determinar localização. Por favor, tente novamente."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "Falha ao guardar rascunho"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Feed"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Feed por {0}"
@@ -3941,7 +3970,7 @@ msgstr "Feed indisponível"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Feedback"
@@ -3958,7 +3987,7 @@ msgstr "Feedback enviado ao operador do feed"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Feeds"
@@ -4008,6 +4037,10 @@ msgstr "Filtrar de quem você recebe notificações"
msgid "Finalizing"
msgstr "A finalizar"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Finalmente! Acompanhe as publicações que são importantes para si. Guarde-as para as revisitar a qualquer momento."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Encontrar os meus amigos"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Encontrar pessoas para seguir"
@@ -4098,19 +4131,19 @@ msgstr "Entrada de código"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Seguir"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Seguir {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Seguir {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Seguir conta"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Seguir conta"
msgid "Follow all"
msgstr "Seguir todos"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Seguir todas as contas"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Seguir de volta"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Seguiu todas as contas!"
@@ -4195,8 +4228,8 @@ msgstr "Seguidores que conhece"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "A seguir"
msgid "Following {0}"
msgstr "A seguir {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "A seguir {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Preferências do feed A seguir"
@@ -4264,7 +4297,7 @@ msgstr "Por motivos de segurança, não poderá ver isto novamente. Se você per
msgid "For the best experience, we recommend using the theme font."
msgstr "Para a melhor experiência, recomendamos o uso do tipo de letra do tema."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Para si"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "De <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Gerar um pacote de iniciante"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Obter ajuda"
@@ -4376,10 +4409,15 @@ msgstr "Receber notificações quando alguém fizer uma publicação"
msgid "Get started"
msgstr "Vamos começar"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Dê um rosto ao seu perfil"
@@ -4394,12 +4432,12 @@ msgstr "Glorificação de violência"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Voltar"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "A funcionalidade \"Entrar em direto\" está desativada para a sua conta"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Conteúdo Multimédia Gráfico"
@@ -4592,7 +4630,7 @@ msgstr "Retido pelo Bluesky por 7 dias para evitar abusos, e depois eliminado"
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Ajuda"
@@ -4632,9 +4670,9 @@ msgstr "Lista oculta"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Ocultar lista de utilizadores"
msgid "Hide verification badges"
msgstr "Ocultar selos de verificação"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Oculta o conteúdo"
@@ -4760,9 +4798,9 @@ msgstr "Aguarde! Estamos a dar acesso a vídeo gradualmente e ainda está em fil
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Início"
@@ -4819,7 +4857,7 @@ msgstr "Entendo"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "Estou no Bluesky como {0} - vem ter comigo! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Se o texto alternativo for longo, alterna para o estado de texto alternativo expandido"
@@ -4872,7 +4910,7 @@ msgstr "Se quer restringir quem pode receber notificações da atividade da sua
msgid "If you're a developer, you can host your own server."
msgstr "Se é programador, pode hospedar o seu próprio servidor."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Se está a tentar alterar o seu nome de utilizador ou e-mail, faça-o antes de desativar."
@@ -4996,6 +5034,10 @@ msgstr "Definições de interação"
msgid "Introducing activity notifications"
msgstr "Introduzindo notificações de atividade"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "Apresentamos a procura de amigos através dos contactos"
@@ -5089,7 +5131,7 @@ msgstr "De momento é só <0>{0} 0>! Adicione mais pessoas ao seu pacote de in
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "De momento é só você! Adicione mais pessoas ao seu pacote de iniciante pesquisando acima."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID do trabalho: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Mantenha-me informado"
msgid "KWS website"
msgstr "Website da KWS"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Rotulado por {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Rotulado pelo autor."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Rótulos"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Rótulos adicionados"
@@ -5218,8 +5260,8 @@ msgstr "Saiba mais sobre importar contactos"
msgid "Learn more about self hosting your PDS."
msgstr "Saiba mais sobre como hospedar o seu PDS."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Saiba mais sobre a moderação aplicada a este conteúdo"
@@ -5231,7 +5273,7 @@ msgstr "Saiba mais sobre estas alterações e como partilhar as suas ideias conn
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Saiba mais sobre estas alterações e como partilhar as suas ideias connosco, lendo a nossa publicação no blog."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Saiba mais sobre este aviso"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "Saiba mais nas suas <0>definições de conta.0>"
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Saber mais."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Sair"
@@ -5286,7 +5328,7 @@ msgstr "Sair do Bluesky"
msgid "left to go."
msgstr "à sua frente na fila."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Deixe-me escolher"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Gostar"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Gosto ({0, plural, one {# gosto} other {# gostos}})"
@@ -5380,7 +5422,7 @@ msgstr "Gostos das suas republicações"
msgid "Likes of your reposts notifications"
msgstr "Notificações de gostos nas suas republicações"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Gostos nesta publicação"
@@ -5474,7 +5516,7 @@ msgstr "Silenciamento da lista removido "
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Listas"
@@ -5496,10 +5538,20 @@ msgstr "EM DIRETO"
msgid "Live event happening now: {0}"
msgstr "Evento ao vivo a acontecer agora: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "Evento ao vivo ocultado"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "Opções do evento ao vivo"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "Evento ao vivo a ser exibido"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "Eventos ao vivo surgem ocasionalmente quando algo emocionante está a acontecer. Se quiser, pode ocultar este evento em particular, ou todos os eventos para esta secção na interface do seu aplicativo."
@@ -5524,11 +5576,11 @@ msgstr "Carregar mais"
msgid "Load more suggested feeds"
msgstr "Carregar mais feeds sugeridos"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Carregar novas notificações"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logótipo por @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logótipo por <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Faça um para mim"
msgid "Make sure this is where you intend to go!"
msgstr "Certifique-se de que é para aqui que pretende ir!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Gerir feeds guardados"
@@ -5638,7 +5690,16 @@ msgstr "Talvez mais tarde"
msgid "Media"
msgstr "Multimédia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "Conteúdo multimédia armazenado em {0}"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "Conteúdo multimédia armazenado noutro dispositivo"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Conteúdo multimédia que pode ser perturbador ou inapropriado para algumas audiências."
@@ -5653,7 +5714,7 @@ msgstr "utilizadores mencionados"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Menções"
@@ -5716,6 +5777,10 @@ msgstr "Notificações diversas"
msgid "Misleading"
msgstr "Enganador"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "Conteúdo multimédia em falta"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "Mais idiomas..."
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Filmes"
msgid "Music"
msgstr "Música"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Navegar até ao pacote de iniciante"
msgid "Navigates to the next screen"
msgstr "Navega para o próximo ecrã"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Navega para o seu perfil"
@@ -5983,6 +6049,7 @@ msgstr "Novo endereço de e-mail"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Nova Funcionalidade"
@@ -6018,12 +6085,12 @@ msgstr "Novas mensagens"
msgid "New password"
msgstr "Nova palavra-passe"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Nova publicação"
@@ -6085,7 +6152,7 @@ msgstr "Notícias"
msgid "Next"
msgstr "Próximo"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Imagem seguinte"
@@ -6114,6 +6181,10 @@ msgstr "Nenhum feed personalizado ainda"
msgid "No DNS Panel"
msgstr "Sem Painel DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "Sem rascunhos ainda"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Sem expiração definida"
@@ -6136,7 +6207,7 @@ msgstr "Sem imagem"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Sem gostos ainda"
@@ -6150,7 +6221,7 @@ msgstr "Nenhuma lista"
msgid "No longer following {0}"
msgstr "Já não segue {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "Sem conteúdo multimédia ainda"
@@ -6195,7 +6266,7 @@ msgstr "Sem publicações ainda"
msgid "No quotes yet"
msgstr "Ainda sem citações"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "Sem respostas ainda"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Nenhum resultado"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Sem resultados"
@@ -6238,7 +6309,7 @@ msgstr "Sem resultados."
msgid "No search results found for \"{search}\"."
msgstr "Não foram encontrados resultados para \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "Nenhum Pacote de Iniciante ainda"
@@ -6247,7 +6318,7 @@ msgstr "Nenhum Pacote de Iniciante ainda"
msgid "No thanks"
msgstr "Não, obrigado"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "Sem vídeos ainda"
@@ -6298,6 +6369,10 @@ msgstr "Não é seguido por ninguém que está a seguir"
msgid "Not Found"
msgstr "Não Encontrado"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Nota sobre partilhar"
@@ -6321,7 +6396,7 @@ msgstr "Nada foi guardado ainda"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Definições de notificações"
@@ -6349,10 +6424,10 @@ msgstr "Sons de Notificações"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Notificações"
@@ -6368,8 +6443,8 @@ msgstr "agora"
msgid "Now"
msgstr "Agora"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Nudez"
@@ -6390,7 +6465,7 @@ msgstr "Oh não!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "OK"
@@ -6417,23 +6492,23 @@ msgstr "em<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Reiniciar a introdução"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Um ou mais GIFs sem texto alternativo."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Uma ou mais imagens sem texto alternativo."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "Um ou mais dos seus ficheiros selecionados não são suportados."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "Um ou mais dos seus ficheiros selecionados é demasiado grande. O tamanho máximo é 100 MB."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Um ou mais vídeos sem texto alternativo."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ups! Algo de errado aconteceu!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ups!"
msgid "Open avatar creator"
msgstr "Abrir criador de foto de perfil"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "Abrir câmara"
@@ -6485,12 +6560,16 @@ msgstr "Abrir câmara"
msgid "Open conversation options"
msgstr "Abrir opções de conversa"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "Abrir rascunho"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Abrir menu lateral"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Abrir selecionador de emojis"
@@ -6557,7 +6636,7 @@ msgstr "Abrir registo do sistema"
msgid "Opens {0} feed"
msgstr "Abre o feed {0}"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Abre uma janela de diálogo para adicionar aviso de conteúdo à sua publicação"
@@ -6589,25 +6668,25 @@ msgstr "Abre janela de diálogo para alteração de nome de utilizador"
msgid "Opens composer"
msgstr "Abre o compositor"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "Abre a câmara do dispositivo"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "Abre a galeria do dispositivo para selecionar até {MAX_IMAGES, plural, one{# imagem}other {# imagens}} ou um único vídeo ou GIF."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Abre selecionador de emojis"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Abre processo para criar uma nova conta no Bluesky"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Abre o processo para iniciar sessão com a sua conta Bluesky existente"
@@ -6620,7 +6699,7 @@ msgstr "Abre janela de diálogo para seleção de GIF"
msgid "Opens helpdesk in browser"
msgstr "Abre central de suporte no navegador"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "Abre o selecionador de imagens"
@@ -6640,10 +6719,14 @@ msgstr "Abre formulário de redefinição de palavra-passe"
msgid "Opens post language settings"
msgstr "Abre as definições de idioma da publicação"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "Abre o compositor de publicação"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "Abre este rascunho no compositor"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "Estado OTA: Nenhuma disponível"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Outro"
@@ -6763,13 +6846,13 @@ msgstr "Palavra-passe atualizada"
msgid "Password updated!"
msgstr "Palavra-passe atualizada!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pausa"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Pausar vídeo"
@@ -6829,7 +6912,7 @@ msgstr "Número de telefone verificado"
msgid "Photography"
msgstr "Fotografia"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Imagens destinadas a adultos."
@@ -6874,9 +6957,9 @@ msgstr "Feeds Afixados"
msgid "Pinned to your feeds"
msgstr "Afixado aos seus feeds"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Reproduzir"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Reproduzir {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Reproduzir vídeo"
@@ -6893,11 +6976,11 @@ msgstr "Reproduzir vídeo"
msgid "Play Video"
msgstr "Reproduzir Vídeo"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Reproduz ou pausa o GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Reproduz ou pausa o vídeo"
@@ -6909,7 +6992,7 @@ msgstr "Reproduz o GIF"
msgid "Plays the video"
msgstr "Reproduz o vídeo"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Por favor, adicione qualquer rótulo de aviso de conteúdo que seja aplicável ao conteúdo multimédia que está a publicar."
@@ -7066,31 +7149,31 @@ msgstr "Por favor, escreva a sua mensagem abaixo:"
msgid "Politics"
msgstr "Política"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornografia"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Publicação"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Publicação"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Publicar uma foto"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Publicar um vídeo"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Publicar tudo"
@@ -7217,7 +7300,7 @@ msgstr "Pressione para ver os seguidores desta conta que também segue"
msgid "Preview"
msgstr "Pré-visualizar"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Imagem anterior"
@@ -7257,8 +7340,8 @@ msgstr "Definições de privacidade e segurança"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Política de Privacidade"
@@ -7266,7 +7349,11 @@ msgstr "Política de Privacidade"
msgid "Privacy violation of a minor"
msgstr "Violação da privacidade de um menor"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "A processar o vídeo..."
@@ -7280,10 +7367,10 @@ msgstr "A processar..."
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Perfil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Listas públicas e partilháveis de utilizadores para silenciar ou bloquear em massa."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Publicar publicação"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Publicar publicações"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Publicar respostas"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Publicar resposta"
@@ -7360,6 +7447,7 @@ msgstr "Notificações de citação"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Citar publicação"
@@ -7385,7 +7473,7 @@ msgstr "Citações desativadas"
msgid "Quotes"
msgstr "Citações"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Citações desta publicação"
@@ -7424,11 +7512,11 @@ msgstr "leia sobre como usar os filtros de busca"
msgid "Read blog post"
msgstr "Ler a publicação do blog (em inglês)"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Ler menos"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Ler mais"
@@ -7720,13 +7808,13 @@ msgstr "Respostas desativadas"
msgid "Replies to this post are disabled."
msgstr "As respostas a esta publicação estão desativadas."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Responder"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Responder ({0, plural, one {# resposta} other {# respostas}})"
@@ -7892,7 +7980,7 @@ msgstr "Republicado por si"
msgid "Reposts"
msgstr "Republicações"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Republicações desta publicação"
@@ -7996,14 +8084,14 @@ msgstr "Repete a última ação, que resultou em erro"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Voltar à página anterior"
msgid "Returns to home page"
msgstr "Voltar à página de início"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Volta à página anterior"
@@ -8063,7 +8151,7 @@ msgstr "Regressa ao passo anterior"
msgid "Save"
msgstr "Guardar"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Guardar"
@@ -8076,9 +8164,26 @@ msgstr "Guardar data de nascimento"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Guardar alterações"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "Guardar alterações?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "Guardar rascunho"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "Guardar rascunho?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Guardar nos meus feeds"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Guardados"
@@ -8155,7 +8260,7 @@ msgstr "Voltar ao topo"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Procurar"
@@ -8164,7 +8269,7 @@ msgstr "Procurar"
msgid "Search @{0}'s posts"
msgstr "Pesquisar nas publicações de @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Procurar por nome ou interesse"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Pesquisar feeds"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "Procurar por \"{interestsDisplayName}\""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "Procurar por \"{interestsDisplayName}\" (ativo)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Procurar publicações"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Procurar perfis"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Procurar..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Procura por perfis"
@@ -8283,12 +8388,12 @@ msgstr "Ver publicações em #{tag} por utilizador"
msgid "See jobs at Bluesky"
msgstr "Ver empregos no Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Ver mais"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "Ver mais perfis sugeridos"
@@ -8456,7 +8561,7 @@ msgstr "Selecione o seu idioma preferido para traduções no seu feed."
msgid "Select your preferred notification channels"
msgstr "Selecione os seus canais de notificação preferidos"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "A seleção de vários tipos de conteúdo multimédia não é suportada."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Enviar E-mail"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Enviar feedback"
@@ -8566,7 +8671,7 @@ msgstr "Define o e-mail para recuperação de senha"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Definições"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Definições guardadas"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Atividade sexual ou nudez erótica."
@@ -8634,7 +8739,7 @@ msgstr "Sexualmente Sugestivo"
msgid "Share"
msgstr "Partilhar"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Partilhar"
@@ -8712,13 +8817,13 @@ msgstr "Partilhe o seu feed favorito!"
msgid "Shared Preferences Tester"
msgstr "Testador de Preferências Partilhadas"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Mostrar"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Mostrar texto alternativo"
@@ -8820,7 +8925,7 @@ msgstr "Mostrar aviso e filtrar de feeds"
msgid "Show when you’re live"
msgstr "Mostre quando você estiver ao vivo"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Mostra informação sobre quando esta publicação foi criada"
@@ -8828,8 +8933,8 @@ msgstr "Mostra informação sobre quando esta publicação foi criada"
msgid "Shows other accounts you can switch to"
msgstr "Mostra outras contas para as quais pode mudar"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Mostra o conteúdo"
@@ -8842,14 +8947,14 @@ msgstr "Mostra o conteúdo"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Requer início de sessão"
msgid "Signed in as @{0}"
msgstr "Sessão iniciada como {0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Contas semelhantes"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "Ignorar partilha de contactos e continuar para a aplicação"
msgid "Skip introduction and start using your account"
msgstr "Saltar introdução e começar a usar a sua conta"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Saltar para o próximo passo"
@@ -8967,7 +9068,7 @@ msgstr "Programador"
msgid "Some of your verifications are invalid."
msgstr "Algumas das suas verificações são inválidas."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Outros feeds que talvez possa gostar"
@@ -8994,7 +9095,7 @@ msgstr "Aconteceu algo de errado"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Aconteceu algo de errado, por favor tente novamente"
@@ -9020,7 +9121,7 @@ msgstr "Aconteceu algo de errado. Por favor, tente novamente."
msgid "Something wrong? Let us know."
msgstr "Aconteceu algo de errado? Informe-nos."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Lamentamos, mas de momento não conseguimos carregar as sugestões de contas. "
@@ -9113,7 +9214,11 @@ msgstr "Pacotes de Iniciante"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Pacotes de iniciante permitem-lhe compartilhar facilmente os seus feeds e pessoas favoritos com os seus amigos."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "Pacotes de iniciante permitem-lhe partilhar os seus feeds e pessoas favoritos com os seus amigos."
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "Pacotes de Iniciante permitem-lhe partilhar os seus feeds e utilizadores preferidos com os seus amigos."
@@ -9181,11 +9286,11 @@ msgstr "Subscrever @{0} para usar estes rótulos:"
msgid "Subscribe to account activity"
msgstr "Subscrever a atividade de conta"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Subscrever Rotulador"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Subscrever este rotulador"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Contas Sugeridas"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Sugerido para si"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Sugestivo"
@@ -9354,8 +9459,8 @@ msgstr "Termos"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Termos de Serviço"
@@ -9403,12 +9508,12 @@ msgstr "Este nome de utilizador já está em uso"
msgid "That's all, folks!"
msgstr "É tudo!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "É tudo!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "A conta poderá interagir consigo após a desbloquear."
@@ -9447,7 +9552,7 @@ msgstr "O feed \"Descobrir\""
msgid "The Discover feed now knows what you like"
msgstr "O feed \"Descobrir\" sabe o que gosta"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "A experiência é melhor na aplicação. Faça download do Bluesky agora e retomaremos onde parou."
@@ -9527,7 +9632,7 @@ msgstr "Tema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "Há um limite para o quão frequentemente pode alterar a sua data de nascimento. Talvez tenha de aguardar um ou dois dias antes de a atualizar novamente."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Não há limite de tempo para a desativação da conta, volte a qualquer momento."
@@ -9711,6 +9816,10 @@ msgstr "Este conteúdo não pode ser visualizado sem uma conta Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Esta conversa é com uma conta eliminada ou desativada. Pressione para opções"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "Este rascunho será permanentemente eliminado."
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Este e-mail já está associado à sua conta."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Este feed está vazio! Talvez precise de seguir mais utilizadores ou ajustar as definições de idioma."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Este feed está vazio."
@@ -9798,7 +9907,7 @@ msgstr "Esta lista está vazia."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Este serviço de moderação não está disponível. Veja mais detalhes abaixo. Se este problema persistir, entre em contacto connosco."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Este post afirma ter sido criado em <0>{0}0>, mas foi primeiro visto por Bluesky em <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr "Esta publicação foi eliminada pelo seu autor"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Esta publicação será ocultada de feeds e fios. Isto não pode ser revertido."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "O autor desta publicação desativou as citações."
@@ -9834,7 +9943,7 @@ msgstr "Esta resposta será colocada numa secção oculta no final do seu fio de
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Este serviço não forneceu termos de serviço ou uma política de privacidade."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "Este serviço não é suportado enquanto a funcionalidade \"Entrar em direto\" estiver em beta. Serviços permitidos: {formatted}."
@@ -9900,8 +10009,8 @@ msgstr "Isto irá remover a sua publicação desta citação para todos os utili
msgid "Thread options"
msgstr "Opções de fio"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Preferências de resposta"
@@ -9951,7 +10060,7 @@ msgstr "Hoje"
msgid "Toggle to enable or disable adult content"
msgstr "Alternar para ativar ou desativar conteúdo adulto"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Ativa/desativa o som"
@@ -9988,8 +10097,8 @@ msgstr "Tópico"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Traduzir"
@@ -10091,15 +10200,15 @@ msgstr "Informação do feed indisponível"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Desbloquear"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Desbloquear"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Desbloquear conta"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Desbloquear conta?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Desfazer"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Desfazer"
@@ -10142,7 +10255,7 @@ msgstr "Reverter republicação"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Reverter ({0, plural, one {# republicação} other {# republicações}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Deixar de seguir {0}"
@@ -10151,7 +10264,7 @@ msgstr "Deixar de seguir {0}"
msgid "Unfollow account"
msgstr "Deixar de seguir conta"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Deixa de seguir o utilizador"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Remover gosto"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Remover gosto ({0, plural, one {# gosto} other {# gostos}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Remover silenciamento da lista"
msgid "Unmute thread"
msgstr "Deixar de silenciar fio"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Remover silenciamento do vídeo"
@@ -10276,7 +10389,7 @@ msgstr "Lista desafixada"
msgid "Unsnooze email reminder"
msgstr "Deixar de adiar lembrete de e-mail"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Remover subscrição"
@@ -10285,7 +10398,7 @@ msgstr "Remover subscrição"
msgid "Unsubscribe from list"
msgstr "Remover subscrição da lista"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Deixar de subscrever este rotulador"
@@ -10293,7 +10406,7 @@ msgstr "Deixar de subscrever este rotulador"
msgid "Unsubscribed from list"
msgstr "Removeu subscrição da lista"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Tipo de vídeo não suportado: {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "Carregar de Ficheiros"
msgid "Upload from Library"
msgstr "Carregar da Biblioteca"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "A carregar imagens..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "A carregar miniatura do link..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "A carregar vídeo..."
@@ -10389,8 +10506,8 @@ msgstr "Utilizar fornecedor padrão"
msgid "Use in-app browser"
msgstr "Usar o navegador da aplicação"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Usar o navegador da aplicação para abrir links"
@@ -10445,6 +10562,10 @@ msgstr "Utilizador bloqueia-te"
msgid "User list by {0}"
msgstr "Lista de utilizadores por {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr "Lista de utilizadores por {0}"
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Lista de utilizadores por si"
@@ -10597,8 +10718,8 @@ msgstr "A verificar..."
msgid "Version {0}"
msgstr "Versão {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Vídeo"
@@ -10614,20 +10735,24 @@ msgstr "Feed de Vídeo"
msgid "Video from {0}: {text}"
msgstr "Vídeo de {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "Vídeo de {0}. Toque para reproduzir ou meter em pausa o vídeo"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Videojogos"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Vídeo em pausa"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Vídeo em reprodução"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Vídeo não encontrado."
@@ -10635,11 +10760,11 @@ msgstr "Vídeo não encontrado."
msgid "Video settings"
msgstr "Definições de vídeo"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Vídeo carregado"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Vídeo: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Vídeo: {0}"
msgid "Videos"
msgstr "Vídeos"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "Os vídeos devem ter menos de 3 minutos."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Visualizar"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Ver foto de perfil de {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Ver perfil de {0}"
@@ -10708,7 +10833,7 @@ msgstr "Ver mais"
msgid "View more trending videos"
msgstr "Ver mais vídeos do momento"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "Visualizar publicação"
@@ -10788,7 +10913,7 @@ msgstr "Conteúdo violento ou ameaçador"
msgid "Visit site"
msgstr "Visitar site"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Visitar as suas definições de notificações"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Estamos a ter problemas ao iniciar o processo de verificação de idade para a sua conta. Por favor, <0>contacte o suporte0> para receber assistência."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Estamos com problemas de rede, tente novamente"
@@ -10968,7 +11093,7 @@ msgstr "Pedimos desculpa, mas não conseguimos carregar as suas palavras silenci
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Lamentamos, mas não foi possível concluir a sua pesquisa. Por favor, tente novamente em alguns minutos."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Pedimos desculpa! A publicação à qual está a responder foi eliminada."
@@ -10977,7 +11102,7 @@ msgstr "Pedimos desculpa! A publicação à qual está a responder foi eliminada
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Pedimos desculpa! Não conseguimos encontrar a página que procurava."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Pedimos desculpa! Apenas pode subscrever a vinte rotuladores, e atingiu o seu limite de vinte."
@@ -11018,10 +11143,9 @@ msgstr "Quais são os seus interesses?"
msgid "What do you want to call your starter pack?"
msgstr "Que nome quer dar ao seu pacote de iniciante?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Como está?"
@@ -11097,6 +11221,14 @@ msgstr "Por que motivo deve este utilizador ser revisto?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Deseja bloquear este utilizador e/ou eliminar esta conversa?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "Gostaria de guardar isto como rascunho antes de ver os seus rascunhos?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "Gostaria de guardar isto como rascunho para editar mais tarde?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Escreva uma mensagem"
msgid "Write a post"
msgstr "Escrever uma publicação"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Escrever publicação"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Escreva a sua resposta"
@@ -11133,8 +11265,8 @@ msgstr "www.mylivestream.tv"
msgid "Yes"
msgstr "Sim"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Sim, desativar"
@@ -11188,7 +11320,7 @@ msgstr "Está na fila."
msgid "You are Live"
msgstr "Está em direto"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Já não está em direto"
@@ -11200,7 +11332,7 @@ msgstr "Não tem permissão para carregar vídeos."
msgid "You are not following anyone yet"
msgstr "Ainda não segue ninguém"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Está agora em direto!"
@@ -11255,11 +11387,11 @@ msgstr "Agora pode optar por ser notificado quando pessoas específicas fizerem
msgid "You can now sign in with your new password."
msgstr "Agora pode iniciar sessão com a sua nova palavra-passe."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "Só pode selecionar um GIF de cada vez."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "Só pode selecionar um vídeo de cada vez."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Pode reativar a sua conta para continuar o início de sessão. As suas publicações ficarão visíveis para outros utilizadores."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "Pode selecionar {MAX_IMAGES, plural, one {# imagem}other {# imagens}} no total."
@@ -11317,7 +11449,7 @@ msgstr "Bloqueou este utilizador"
msgid "You have blocked this user. You cannot view their content."
msgstr "Bloqueou este utilizador. Não pode ver o seu conteúdo."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Desativou por completo notificações de respostas, citações e menções, portanto este separador não será mais atualizado. Para ajustar isto, visite as suas <0>definições de notificações0>."
@@ -11376,6 +11508,14 @@ msgstr "Verificou o seu endereço de e-mail com sucesso. Pode fechar esta janela
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Atingiu temporariamente o limite para carregamento de vídeos. Por favor, tente novamente mais tarde."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "Tem alterações não guardadas a este rascunho. Gostaria de guardá-las?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "Tem alterações não guardadas. Gostaria de guardá-las antes de ver os seus rascunhos?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Ainda não criou um pacote de iniciante!"
@@ -11437,7 +11577,7 @@ msgstr "Deve ter pelo menos {MIN_ACCESS_AGE} anos de idade para criar uma conta.
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Tem de ter pelo menos 13 anos para usar o Bluesky. Leia os nossos <0>Termos de Serviço0> para mais informação."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Deve seguir pelo menos sete outras pessoas para gerar um pacote de iniciante."
@@ -11449,7 +11589,7 @@ msgstr "Deve concluir a verificação de idade para aceder a este ecrã."
msgid "You must grant access to your photo library to save a QR code"
msgstr "Precisa de conceder acesso à sua biblioteca de fotos para guardar um código QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "Precisa de conceder acesso à sua biblioteca de conteúdo multimédia."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Encontra-se na fila"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Iniciou sessão com uma palavra-passe de aplicação. Por favor, inicie sessão com a sua palavra-passe principal para continuar com a desativação da sua conta."
@@ -11589,7 +11729,7 @@ msgstr "Atingiu o seu limite diário de carregamento de vídeos (demasiados byte
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Atingiu o seu limite diário de carregamento de vídeos (demasiados vídeos)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Esgotou os vídeos disponíveis para assistir. Que tal uma pausa?"
@@ -11625,7 +11765,7 @@ msgstr "O seu recurso foi enviado. Se o seu recurso for bem-sucedido, receberá
msgid "Your birth date"
msgstr "A sua data de nascimento"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "O seu navegador não suporta o formato de vídeo. Por favor, tente um navegador diferente."
@@ -11692,8 +11832,8 @@ msgstr "O seu nome de utilizador completo será <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Os seus interesses"
@@ -11731,11 +11871,11 @@ msgstr "A sua palavra-passe foi alterada com sucesso! Por favor, use a sua nova
msgid "Your password must be at least 8 characters long."
msgstr "A sua palavra-passe deve ter pelo menos 8 caracteres."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "A sua publicação foi enviada"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "As suas publicações foram enviadas"
@@ -11752,11 +11892,11 @@ msgstr "A sua foto de perfil"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "A sua foto de perfil cercada por círculos concêntricos com as fotos de perfil de outros utilizadores"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "O seu perfil, publicações, feeds e listas não serão mais visíveis para outros utilizadores do Bluesky. Pode reativar a sua conta a qualquer momento ao fazer login novamente."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "A sua resposta foi enviada"
diff --git a/src/locale/locales/ro/messages.po b/src/locale/locales/ro/messages.po
index cb1ff968d3..ab73f5d6a4 100644
--- a/src/locale/locales/ro/messages.po
+++ b/src/locale/locales/ro/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ro\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Romanian\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {o repostare} few {# repostări} other {# de repostări}
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {o secundă} few {# secunde} other {# de secunde}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {Un element necitit} few {# elemente necitite} other {# de elemente necitite}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {Un element necitit} few {# elemente necitite} other {#
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {o lună} few {# luni} other {# de luni}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, one {Încă o postare} few {Încă # postări} other {Încă # de postări}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {urmăritor} few {urmăritori} other {de urmăritori}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {urmărit} few {urmăriți} other {de urmăriți}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {apreciere} few {aprecieri} other {de aprecieri}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {apreciere} few {aprecieri} other {de aprecieri}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {postare} few {postări} other {de postări}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citat} few {citate} other {de citate}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {repostare} few {repostări} other {de repostări}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {salvare} few {salvări} other {de salvări}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (Cont)"
@@ -189,11 +193,11 @@ msgstr "{0} a reacționat {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} a reacționat {1} la {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, un flux de {1}, apreciat de {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, o listă de {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, one {Un utilizator s-a} few {# utilizatori
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# minut} few {# minute} other {# de minute}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {Un element necitit} few {# elemente necitite} other {# de elemente necitite}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>și {2, plural, one {un alt utilizator} few {alți # utilizatori} other {alți # de utilizatori}} sunt incluși în pachetul dvs. de pornire"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {urmăritor} few {urmăritori} other {de urmăritori}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {urmărit} few {urmăriți} other {de urmăriți}}"
@@ -580,6 +584,11 @@ msgstr "O captură de ecran a unei postări cu un buton nou lângă butonul de d
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "O captură de ecran a unei pagini de profil cu o pictogramă clopoțel, lângă butonul „Urmărire”, indicând noua caracteristică pentru notificările de activitate."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Adăugați încă {0} pentru a continua"
msgid "Add {displayName} to starter pack"
msgstr "Adăugați {displayName} la pachetul de pornire"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Adăugați un avertisment de conținut"
@@ -754,11 +763,11 @@ msgstr "Adăugați text alternativ (opțional)"
msgid "Add another account"
msgstr "Adăugați un alt cont"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Adăugați o altă postare"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Adăugați o altă postare firului"
@@ -776,12 +785,12 @@ msgstr "Adăugare parolă de aplicație"
msgid "Add emoji reaction"
msgstr "Adăugați reacție emoji"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Adăugare imagine"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Adăugare conținut media la postare"
@@ -871,7 +880,7 @@ msgstr "Detalii suplimentare (limită de 1000 de caractere)"
msgid "Additional details (limit 300 characters)"
msgstr "Detalii suplimentare (limită de 300 de caractere)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Adulți"
@@ -879,10 +888,10 @@ msgstr "Adulți"
msgid "Adult content"
msgstr "Conținut pentru adulți"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Conținut pentru adulți"
@@ -894,8 +903,8 @@ msgstr "Conținutul pentru adulți poate fi activat doar pe Web la <0>bsky.app
msgid "Adult content is disabled."
msgstr "Conținutul pentru adulți este dezactivat."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Etichete conținut pentru adulți"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "andreea@exemplu.ro"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Toate"
@@ -1017,7 +1026,7 @@ msgstr "Aveți deja un cont?"
msgid "Already signed in as @{0}"
msgstr "Deja conectat ca @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Text alternativ"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Text alternativ"
@@ -1059,7 +1068,7 @@ msgstr "Un e-mail a fost trimis la {0}. Acesta include un cod de confirmare pe c
msgid "An error has occurred"
msgstr "A apărut o eroare"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "A apărut o eroare"
@@ -1067,7 +1076,7 @@ msgstr "A apărut o eroare"
msgid "An error occurred while compressing the video."
msgstr "A apărut o eroare la comprimarea videoclipului."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "A apărut o eroare la preluarea conturilor sugerate."
@@ -1076,7 +1085,7 @@ msgstr "A apărut o eroare la preluarea conturilor sugerate."
msgid "An error occurred while fetching the feed."
msgstr "A apărut o eroare în timpul preluării fluxului."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "A apărut o eroare la generarea pachetului de pornire. Doriți să încercați din nou?"
@@ -1088,7 +1097,7 @@ msgstr "A apărut o eroare la ascunderea sugestiei. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "A apărut o eroare la încărcarea videoclipului. Vă rugăm să încercați din nou mai târziu."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "A apărut o eroare la încărcarea videoclipului. Vă rugăm să încercați din nou."
@@ -1181,7 +1190,7 @@ msgstr "Bunăstarea animalelor"
msgid "Animals"
msgstr "Animale"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF animat"
@@ -1306,12 +1315,12 @@ msgstr "Aplicați fluxurile recomandate implicit"
msgid "Apply Pull Request"
msgstr "Aplicați solicitarea de tragere"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Arhivat de la {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Postare arhivată"
@@ -1332,11 +1341,11 @@ msgstr "Sunteți sigur că doriți să ștergeți acest pachet de pornire?"
msgid "Are you sure you want to discard your changes?"
msgstr "Sunteți sigur că doriți să renunțați la modificările dvs.?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Sunteți sigur că doriți să părăsiți această conversație?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Sunteți sigur că doriți să părăsiți această conversație? Mesajele dvs. vor fii șterse pentru dvs. dar nu și pentru celălalt participant."
@@ -1344,11 +1353,7 @@ msgstr "Sunteți sigur că doriți să părăsiți această conversație? Mesaje
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Sunteți sigur că doriți să eliminați asta din fluxurile dvs.?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Sunteți sigur că doriți să renunțați la această schiță?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Sunteți sigur că doriți să renunțați la această postare?"
@@ -1364,7 +1369,7 @@ msgstr "Scrieți în <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Artă"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Nuditate artistică sau non-erotică."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Redare automată videoclipuri și GIF-uri"
@@ -1404,11 +1409,13 @@ msgstr "Disponibil"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Înapoi"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky nu poate confirma autenticitatea datei revendicate."
@@ -1623,7 +1630,7 @@ msgstr "Termenii de Serviciu a Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Bluesky stochează contactele dvs. sub formă de date codificate. Eliminarea contactelor va duce la ștergerea imediată a acestor date."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky va alege un set de conturi recomandate de la persoanele din rețeaua dvs."
@@ -1664,20 +1671,20 @@ msgstr "Încălcarea regulilor site-ului"
msgid "Browse custom feeds"
msgstr "Răsfoiți fluxuri personalizate"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "Răsfoiți mai multe conturi"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Răsfoiți mai multe fluxuri pe pagina Explorare"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Răsfoiți mai multe sugestii"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Răsfoiți mai multe sugestii pe pagina Explorare"
@@ -1770,8 +1777,8 @@ msgstr "Cameră"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Cameră"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Anulare căutare"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Nu se poate interacționa cu un utilizator blocat"
@@ -1901,9 +1908,9 @@ msgstr "Modificări salvate"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Conversații"
@@ -1989,7 +1996,7 @@ msgstr "Alegeți metoda de verificare a domeniului"
msgid "Choose Feeds"
msgstr "Alegeți fluxuri"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Alegeți pentru mine"
@@ -2096,6 +2103,7 @@ msgstr "Clip 🐴 clop 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Clip 🐴 clop 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,7 +2176,8 @@ msgstr "Închideți dialogul GIF"
msgid "Close image"
msgstr "Închideți imaginea"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr "Închideți vizualizatorul de imagini"
@@ -2190,7 +2199,7 @@ msgstr "Închideți fereastra de bun venit"
msgid "Closes password update alert"
msgstr "Închideți alerta pentru actualizarea parolei"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Închide compozitorul de postări și elimină ciorna"
@@ -2242,12 +2251,12 @@ msgstr "Finalizați înregistrarea și începeți să vă folosiți contul"
msgid "Complete the challenge"
msgstr "Finalizați provocarea"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Compuneți o nouă postare"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Compuneți postări de până la {0, plural, one {} few {# caractere}other {# de caractere}} lungime"
@@ -2255,7 +2264,11 @@ msgstr "Compuneți postări de până la {0, plural, one {} few {# caractere}oth
msgid "Compose reply"
msgstr "Compunere răspuns"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Se comprimă videoclipul..."
@@ -2263,7 +2276,6 @@ msgstr "Se comprimă videoclipul..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Configurare setare filtrare conținut pentru categorie: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "Configurați banner-ul pentru evenimente în direct"
@@ -2272,8 +2284,8 @@ msgstr "Configurați banner-ul pentru evenimente în direct"
msgid "Configured in <0>moderation settings0>."
msgstr "Configurat în <0>setările de moderare0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "Contacte importate"
msgid "Contacts removed"
msgstr "Contacte eliminate"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Conținut & media"
@@ -2389,7 +2401,7 @@ msgstr "Conținut care promovează sau prezintă autovătămarea"
msgid "Content Warning"
msgstr "Avertisment privind conținutul"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Avertismente privind conținutul"
@@ -2401,7 +2413,7 @@ msgstr "Fundal meniu contextual, faceți clic pentru a închide meniul."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Continuare"
@@ -2420,7 +2432,7 @@ msgstr "Continuați firul..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "Nu s-au putut urmări toate potrivirile. {0}"
msgid "Could not leave chat"
msgstr "Nu s-a putut părăsi conversația"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Nu s-a putut încărca fluxul"
@@ -2643,8 +2655,8 @@ msgstr "Creați un cod QR pentru un pachet de pornire"
msgid "Create a starter pack"
msgstr "Creați un pachet de pornire"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Creați un pachet de pornire"
@@ -2654,12 +2666,12 @@ msgstr "Creați un pachet de pornire pentru mine"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Creați altul"
msgid "Create moderation list"
msgstr "Creare listă de moderare"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Creare cont nou"
@@ -2772,7 +2784,7 @@ msgstr "Data nașterii"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Dezactivare cont"
@@ -2871,7 +2883,7 @@ msgstr "Șterge-mi contul"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Ștergere postare"
@@ -2981,7 +2993,7 @@ msgstr "Dezactivați postările citat ale acestei postări"
msgid "Disable replies entirely"
msgstr "Dezactivați răspunsurile în întregime"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Dezactivare subtitrări"
@@ -2996,8 +3008,11 @@ msgstr "Dezactivat"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Renunțare"
@@ -3006,11 +3021,12 @@ msgstr "Renunțare"
msgid "Discard changes?"
msgstr "Renunțați la modificări?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Renunțați la schiță?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Renunțați la postare?"
@@ -3037,7 +3053,7 @@ msgstr "Închidere"
msgid "Dismiss banner"
msgstr "Închideți bannerul"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Închidere eroare"
@@ -3049,11 +3065,16 @@ msgstr "Închideți ghidul introductiv"
msgid "Dismiss interests"
msgstr "Îndepărtați interesele"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "Respingere banner eveniment în direct"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Închideți această secțiune"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Respingeți această sugestie"
@@ -3121,8 +3142,8 @@ msgstr "Nu vă faceți griji! Toate mesajele existente și setările sunt salvat
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Atingeți de două ori sau apăsați lung mesajul pentru a adăuga o rea
msgid "Double tap to close the dialog"
msgstr "Atingeți de două ori pentru a închide dialogul"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Atingeți de două ori pentru a aprecia"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Descărcați Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Descărcare fișier CAR"
msgid "Doxxing"
msgstr "Doxxing"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "Schițe"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Plasați pentru a adăuga imagini"
@@ -3285,13 +3313,13 @@ msgstr "Editați setările de interacțiune ale postărilor"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Editare profil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Editare profil"
@@ -3413,7 +3441,7 @@ msgstr "Activare notificări push"
msgid "Enable quote posts of this post"
msgstr "Activați postările citat ale acestei postări"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Activare subtitrări"
@@ -3421,13 +3449,13 @@ msgstr "Activare subtitrări"
msgid "Enable this source only"
msgstr "Activați doar această sursă"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Activare subiecte în tendințe"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Activare videoclipuri în tendințe în fluxul dvs. Descoperă"
@@ -3464,7 +3492,7 @@ msgstr "Introduceți un cuvânt sau o etichetă"
msgid "Enter code"
msgstr "Introduceți codul"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Intrați în modul Ecran complet"
@@ -3501,7 +3529,7 @@ msgstr "Introduceți-vă parola"
msgid "Enter your username and password"
msgstr "Introduceți-vă numele de utilizator și parola"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Intrați în modul Ecran complet"
@@ -3509,7 +3537,7 @@ msgstr "Intrați în modul Ecran complet"
msgid "Entertainment"
msgstr "Divertisment"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Eroare"
@@ -3570,7 +3598,7 @@ msgstr "Excludeți utilizatorii pe care îi urmăriți"
msgid "Excludes users you follow"
msgstr "Exclude utilizatorii pe care îi urmăriți"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Ieșire ecran complet"
@@ -3578,11 +3606,7 @@ msgstr "Ieșire ecran complet"
msgid "Exits account deletion process"
msgstr "Părăsește procesul de ștergere al contului"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Iese din vizualizarea imaginii"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Extindere text alternativ"
@@ -3598,11 +3622,11 @@ msgstr "Extindeți sau restrângeți postarea completă la care răspundeți"
msgid "Expand post text"
msgstr "Extindeți textul postării"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Extinde sau restrânge text postare"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Se așteaptă de la uri pentru a rezolva la o înregistrare"
@@ -3639,7 +3663,7 @@ msgstr "Imagini sexuale explicite."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Explorare"
@@ -3657,8 +3681,8 @@ msgstr "Exportați datele mele"
msgid "Export My Data"
msgstr "Exportați datele mele"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Conținut media extern"
@@ -3730,7 +3754,7 @@ msgstr "Ștergerea postării a eșuat, vă rugăm să încercați din nou"
msgid "Failed to delete starter pack"
msgstr "Ștergerea pachetului de pornire a eșuat"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "Nu s-a reușit urmărirea tuturor conturilor sugerate. Vă rugăm să încercați din nou"
@@ -3829,6 +3853,10 @@ msgstr "Eliminarea verificării a eșuat"
msgid "Failed to resolve location. Please try again."
msgstr "Nu s-a putut determina locația. Vă rugăm să încercați din nou."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "Nu s-a putut salva schița"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Flux"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Flux creat de {0}"
@@ -3941,7 +3970,7 @@ msgstr "Flux indisponibil"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Feedback"
@@ -3958,7 +3987,7 @@ msgstr "Feedback trimis operatorului fluxului"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Fluxuri"
@@ -4008,6 +4037,10 @@ msgstr "Filtrați de la cine primiți notificări"
msgid "Finalizing"
msgstr "Se finalizează"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "În sfârșit! Țineți evidența postărilor care contează pentru dvs. Salvați-le pentru a le revizui oricând."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Găsiți-mi prietenii"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Găsiți persoane pe care să le urmăriți"
@@ -4098,19 +4131,19 @@ msgstr "Focalizați introducerea codului"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Urmărire"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Urmăriți pe {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Urmăriți pe {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Urmăriți contul"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Urmăriți contul"
msgid "Follow all"
msgstr "Urmăriții pe toți"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Urmăriți toate conturile"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Urmăriți înapoi"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Toate conturile au fost urmărite!"
@@ -4195,8 +4228,8 @@ msgstr "Urmăritori pe care îi știți"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Urmăriți"
msgid "Following {0}"
msgstr "Urmăriți pe {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Urmăriți pe {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Preferințe flux Urmăriți"
@@ -4264,7 +4297,7 @@ msgstr "Din motive de securitate, nu veți mai putea vizualiza acest lucru din n
msgid "For the best experience, we recommend using the theme font."
msgstr "Pentru cea mai bună experiență, vă recomandăm să utilizați fontul temă."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Pentru Dvs."
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "De la <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Generați un pachet de pornire"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Obțineți ajutor"
@@ -4376,10 +4409,15 @@ msgstr "Primiți notificări când cineva postează"
msgid "Get started"
msgstr "Începeți"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Oferiți profilului dvs. o față"
@@ -4394,12 +4432,12 @@ msgstr "Glorificarea violenței"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Mergeți înapoi"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "Intrarea în direct este momentan dezactivată pentru contul dvs."
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Conținut media grafic"
@@ -4592,7 +4630,7 @@ msgstr "Păstrat de Bluesky timp de 7 zile pentru a preveni abuzurile, apoi ște
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Ajutor"
@@ -4632,9 +4670,9 @@ msgstr "Listă ascunsă"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Ascundere listă de utilizatori"
msgid "Hide verification badges"
msgstr "Ascundere insigne de verificare"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Ascundere conținut"
@@ -4760,9 +4798,9 @@ msgstr "Stați așa! Oferim acces la videoclipuri treptat și încă sunteți pe
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Acasă"
@@ -4819,7 +4857,7 @@ msgstr "Am înțeles"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "Sunt pe Bluesky ca {0} - vino și găsește-mă! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Dacă textul alternativ este lung, comutați starea extinsă a textului alternativ"
@@ -4872,7 +4910,7 @@ msgstr "Dacă doriți să restricționați cine poate primi notificări pentru a
msgid "If you're a developer, you can host your own server."
msgstr "Dacă sunteți dezvoltator, vă puteți găzdui propriul server."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Dacă încercați să vă modificați identificatorul sau adresa de e-mail, faceți acest lucru înainte de a dezactiva."
@@ -4996,6 +5034,10 @@ msgstr "Setări de interacțiune"
msgid "Introducing activity notifications"
msgstr "Vă prezentăm notificări de activitate"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "Vă prezentăm găsirea prietenilor prin intermediul contactelor"
@@ -5089,7 +5131,7 @@ msgstr "Acum doar <0>{0} 0> e aici! Adăugați mai multe persoane la pachetul
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Sunteți doar dvs. acum! Adăugați mai multe persoane la pachetul dvs. de pornire căutând mai sus."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID loc de muncă: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Ține-mă la curent"
msgid "KWS website"
msgstr "Website-ul KWS"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Etichetat de {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Etichetat de autor."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Etichete"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Etichete adăugate"
@@ -5218,8 +5260,8 @@ msgstr "Aflați mai multe despre importarea contactelor"
msgid "Learn more about self hosting your PDS."
msgstr "Aflați mai multe despre găzduirea automată a SDP-ului dvs."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Aflați mai multe despre moderarea aplicată acestui conținut"
@@ -5231,7 +5273,7 @@ msgstr "Aflați mai multe despre aceste modificări și cum să vă împărtăș
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Aflați mai multe despre aceste modificări și cum să vă împărtășiți gândurile cu noi citind postarea noastră pe blog."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Aflați mai multe despre acest avertisment"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "Aflați mai multe în <0>setările contului.0>"
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Aflați mai multe."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Părăsire"
@@ -5286,7 +5328,7 @@ msgstr "Părăsiți Bluesky"
msgid "left to go."
msgstr "rămas de făcut."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Doresc să aleg"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Apreciere"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Apreciere ({0, plural, one {o apreciere} few {# aprecieri} other {# de aprecieri}})"
@@ -5380,7 +5422,7 @@ msgstr "Aprecieri pentru repostările dvs."
msgid "Likes of your reposts notifications"
msgstr "Notificări privind aprecierile postărilor dvs."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Aprecieri la această postare"
@@ -5474,7 +5516,7 @@ msgstr "Listă dezamuțită"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Liste"
@@ -5496,10 +5538,20 @@ msgstr "ÎN DIRECT"
msgid "Live event happening now: {0}"
msgstr "Eveniment în direct care se întâmplă acum: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "Eveniment în direct ascuns"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "Opțiuni pentru evenimente în direct"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "Eveniment în direct afișat"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "Evenimentele în direct apar ocazional, când se întâmplă ceva interesant. Dacă doriți, puteți ascunde acest eveniment sau toate evenimentele pentru această plasare în interfața aplicației."
@@ -5524,11 +5576,11 @@ msgstr "Încărcați mai multe"
msgid "Load more suggested feeds"
msgstr "Încărcați mai multe fluxuri sugerate"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Încărcați notificări noi"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo de @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo de <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Faceți unul pentru mine"
msgid "Make sure this is where you intend to go!"
msgstr "Asigurați-vă că aici intenționați să mergeți!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Gestionați fluxurile salvate"
@@ -5638,7 +5690,16 @@ msgstr "Poate mai târziu"
msgid "Media"
msgstr "Conținut media"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "Conținut media stocat pe {0}"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "Conținut media stocat pe un alt dispozitiv"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Conținut media care poate fi deranjant sau neadecvat pentru anumite audiențe."
@@ -5653,7 +5714,7 @@ msgstr "utilizatori menționați"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Mențiuni"
@@ -5716,6 +5777,10 @@ msgstr "Notificări diverse"
msgid "Misleading"
msgstr "Conținut înșelător"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "Conținut media lipsă"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "Mai multe limbi..."
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Filme"
msgid "Music"
msgstr "Muzică"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Navigați la pachetul de pornire"
msgid "Navigates to the next screen"
msgstr "Navighează la următorul ecran"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Navighează la profilul dvs."
@@ -5983,6 +6049,7 @@ msgstr "Adresă e-mail nouă"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Caracteristică nouă"
@@ -6018,12 +6085,12 @@ msgstr "Mesaje noi"
msgid "New password"
msgstr "Parolă nouă"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Postare nouă"
@@ -6085,7 +6152,7 @@ msgstr "Știri"
msgid "Next"
msgstr "Următorul"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Imaginea următoare"
@@ -6114,6 +6181,10 @@ msgstr "Niciun flux personalizat încă"
msgid "No DNS Panel"
msgstr "Niciun panou DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "Încă nu există schițe"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Fără expirare setată"
@@ -6136,7 +6207,7 @@ msgstr "Nici o imagine"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Încă nu există aprecieri"
@@ -6150,7 +6221,7 @@ msgstr "Nicio listă"
msgid "No longer following {0}"
msgstr "Nu mai urmăriți pe {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "Niciun conținut media încă"
@@ -6195,7 +6266,7 @@ msgstr "Nicio postare încă"
msgid "No quotes yet"
msgstr "Încă nu există citate"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "Niciun răspuns încă"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Niciun rezultat"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Niciun rezultat"
@@ -6238,7 +6309,7 @@ msgstr "Niciun rezultat."
msgid "No search results found for \"{search}\"."
msgstr "Niciun rezultat găsit pentru „{search}”."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "Niciun pachet de pornire încă"
@@ -6247,7 +6318,7 @@ msgstr "Niciun pachet de pornire încă"
msgid "No thanks"
msgstr "Nu, mulțumesc"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "Niciun videoclip încă"
@@ -6298,6 +6369,10 @@ msgstr "Nu este urmărit de nimeni pe care îi urmăriți"
msgid "Not Found"
msgstr "Nu a fost găsit"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Notă despre partajare"
@@ -6321,7 +6396,7 @@ msgstr "Nimic salvat încă"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Setări pentru notificări"
@@ -6349,10 +6424,10 @@ msgstr "Sunete notificare"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Notificări"
@@ -6368,8 +6443,8 @@ msgstr "acum"
msgid "Now"
msgstr "Acum"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Nuditate"
@@ -6390,7 +6465,7 @@ msgstr "Oh, nu!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Okay"
@@ -6417,23 +6492,23 @@ msgstr "pe<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Resetare înregistrare"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Unei sau mai multor GIF-uri le lipsește textul alternativ."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Unei sau mai multor imagini le lipsește textul alternativ."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "Unul sau mai multe dintre fișierele selectate nu sunt acceptate."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "Unul sau mai multe dintre fișierele selectate sunt prea mari. Dimensiunea maximă este de 100 MB."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Unei sau mai multor videoclipuri le lipsește textul alternativ."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Hopa, ceva nu a mers bine!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Hopa!"
msgid "Open avatar creator"
msgstr "Deschideți creatorul de avatar"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "Deschidere cameră"
@@ -6485,12 +6560,16 @@ msgstr "Deschidere cameră"
msgid "Open conversation options"
msgstr "Deschideți opțiunile conversației"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "Deschideți schița"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Deschideți meniul sertar"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Deschideți selectorul de emoji"
@@ -6557,7 +6636,7 @@ msgstr "Deschideți jurnalul sistemului"
msgid "Opens {0} feed"
msgstr "Deschide fluxul {0}"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Deschide un dialog pentru a adăuga un avertisment de conținut postării dvs."
@@ -6589,25 +6668,25 @@ msgstr "Deschideți dialogul de modificare a identificatorului"
msgid "Opens composer"
msgstr "Deschide compozitorul"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "Deschide camera foto a dispozitivului"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "Deschide galeria dispozitivului pentru a selecta până la {MAX_IMAGES, plural, one {} few {# imagini}other {# de imagini}}, sau un singur videoclip sau GIF."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Deschide selectorul de emoji"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Deschide interfața pentru a crea un nou cont Bluesky"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Deschide procesul pentru a vă conecta la contul dvs. Bluesky existent"
@@ -6620,7 +6699,7 @@ msgstr "Deschide dialogul de selectare GIF"
msgid "Opens helpdesk in browser"
msgstr "Deschide serviciul de asistență în browser"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "Deschide selectorul de imagini"
@@ -6640,10 +6719,14 @@ msgstr "Deschide formularul de resetare a parolei"
msgid "Opens post language settings"
msgstr "Deschide setările de limbă pentru postări"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "Deschide compozitorul de postări"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "Deschideți această schiță în compozitor"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "Status OTA: Nimic disponibil"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Alt ceva"
@@ -6763,13 +6846,13 @@ msgstr "Parolă actualizată"
msgid "Password updated!"
msgstr "Parolă actualizată!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pauză"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Pauză videoclip"
@@ -6829,7 +6912,7 @@ msgstr "Număr de telefon verificat"
msgid "Photography"
msgstr "Fotografie"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Imagini destinate adulților."
@@ -6874,9 +6957,9 @@ msgstr "Fluxuri fixate"
msgid "Pinned to your feeds"
msgstr "Fixat la fluxurile dvs."
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Redare"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Redați {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Redați videoclipul"
@@ -6893,11 +6976,11 @@ msgstr "Redați videoclipul"
msgid "Play Video"
msgstr "Redați videoclipul"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Redă sau întrerupe GIF-ul"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Redă sau întrerupe videoclipul"
@@ -6909,7 +6992,7 @@ msgstr "Redă GIF-ul"
msgid "Plays the video"
msgstr "Redă videoclipul"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Vă rugăm să adăugați orice etichete de avertizare de conținut care sunt aplicabile pentru conținutul media pe care îl postați."
@@ -7066,31 +7149,31 @@ msgstr "Vă rugăm să vă scrieți mesajul mai jos:"
msgid "Politics"
msgstr "Politică"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornografie"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Postare"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Postare"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Postați o fotografie"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Postați un videoclip"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Postați-le pe toate"
@@ -7217,7 +7300,7 @@ msgstr "Apăsați pentru a vedea urmăritorii acestui cont pe care îi urmăriț
msgid "Preview"
msgstr "Previzualizare"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Imaginea anterioară"
@@ -7257,8 +7340,8 @@ msgstr "Setări de confidențialitate și securitate"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Politica de Confidențialitate"
@@ -7266,7 +7349,11 @@ msgstr "Politica de Confidențialitate"
msgid "Privacy violation of a minor"
msgstr "Încălcarea confidențialității unui minor"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Se procesează videoclipul..."
@@ -7280,10 +7367,10 @@ msgstr "Se procesează..."
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Liste publice, care pot fi partajate, cu utilizatori de amuțit sau blocat în bloc."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Publicați postarea"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Publicați postările"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Publicați răspunsurile"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Publicați răspunsul"
@@ -7360,6 +7447,7 @@ msgstr "Notificări pentru citate"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Citați postarea"
@@ -7385,7 +7473,7 @@ msgstr "Postări citat dezactivate"
msgid "Quotes"
msgstr "Citate"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Citatele acestei postări"
@@ -7424,11 +7512,11 @@ msgstr "citiți despre cum să utilizați filtrele de căutare"
msgid "Read blog post"
msgstr "Citiți postarea de pe blog"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Citiți mai puțin"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Citiți mai multe"
@@ -7720,13 +7808,13 @@ msgstr "Răspunsuri dezactivate"
msgid "Replies to this post are disabled."
msgstr "Răspunsurile la această postare sunt dezactivate."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Răspundeți"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Răspundeți ({0, plural, one {# răspuns} few {# răspunsuri} other {# de răspunsuri}})"
@@ -7892,7 +7980,7 @@ msgstr "Repostat de dvs."
msgid "Reposts"
msgstr "Repostări"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Repostări ale acestei postări"
@@ -7996,14 +8084,14 @@ msgstr "Reîncearcă ultima acțiune, care a eșuat"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Reveniți la pagina anterioară"
msgid "Returns to home page"
msgstr "Revine la acasă"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Revine la pagina anterioară"
@@ -8063,7 +8151,7 @@ msgstr "Revine la pasul anterior"
msgid "Save"
msgstr "Salvare"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Salvare"
@@ -8076,9 +8164,26 @@ msgstr "Salvați ziua de naștere"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Salvare modificări"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "Salvați modificările?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "Salvare schiță"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "Salvați schița?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Salvare în fluxurile mele"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Salvate"
@@ -8155,7 +8260,7 @@ msgstr "Derulați până sus"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Căutare"
@@ -8164,7 +8269,7 @@ msgstr "Căutare"
msgid "Search @{0}'s posts"
msgstr "Căutați în postările lui @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Căutare după nume sau interes"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Căutare fluxuri"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "Căutați „{interestsDisplayName}”"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "Căutați „{interestsDisplayName}”(activ)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Căutare postări"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Căutați profile"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Căutare..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Cautați profiluri"
@@ -8283,12 +8388,12 @@ msgstr "Vedeți postările #{tag} de la utilizator"
msgid "See jobs at Bluesky"
msgstr "Vedeți locuri de muncă la Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Vedeți mai multe"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "Vedeți mai multe profiluri sugerate"
@@ -8456,7 +8561,7 @@ msgstr "Selectați limba preferată pentru traduceri în flux."
msgid "Select your preferred notification channels"
msgstr "Selectați canalele de notificare preferate"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "Selectarea mai multor tipuri de conținut media nu este acceptată."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Trimitere e-mail"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Trimiteți feedback"
@@ -8566,7 +8671,7 @@ msgstr "Setează e-mailul pentru resetarea parolei"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Setări"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Setări salvate"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Activitate sexuală sau nuditate erotică."
@@ -8634,7 +8739,7 @@ msgstr "Sugestiv Sexual"
msgid "Share"
msgstr "Distribuiți"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Distribuiți"
@@ -8712,13 +8817,13 @@ msgstr "Partajați-vă fluxurile favorite!"
msgid "Shared Preferences Tester"
msgstr "Tester Preferințe Partajate"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Afișare"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Afișare text alternativ"
@@ -8820,7 +8925,7 @@ msgstr "Afișează avertismente și filtrează din fluxuri"
msgid "Show when you’re live"
msgstr "Afișați când sunteți în direct"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Afișează informații despre când a fost creată această postare"
@@ -8828,8 +8933,8 @@ msgstr "Afișează informații despre când a fost creată această postare"
msgid "Shows other accounts you can switch to"
msgstr "Afișează alte conturi la care vă puteți comuta"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Afișează conținutul"
@@ -8842,14 +8947,14 @@ msgstr "Afișează conținutul"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Conectare necesară"
msgid "Signed in as @{0}"
msgstr "Conectat ca @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Conturi similare"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "Omiteți partajarea contactelor și continuați spre aplicație"
msgid "Skip introduction and start using your account"
msgstr "Omiteți introducerea și începeți să vă folosiți contul"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Omiteți la pasul următor"
@@ -8967,7 +9068,7 @@ msgstr "Dezvoltare software"
msgid "Some of your verifications are invalid."
msgstr "Unele dintre verificările dvs. sunt invalide."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Alte fluxuri care v-ar putea plăcea"
@@ -8994,7 +9095,7 @@ msgstr "Ceva nu a mers bine"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Ceva n-a mers bine, vă rugăm să încercați din nou"
@@ -9020,7 +9121,7 @@ msgstr "Ceva n-a mers bine. Vă rugăm să încercați din nou."
msgid "Something wrong? Let us know."
msgstr "E ceva în neregulă? Anunțați-ne."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Ne pare rău, nu putem încărca sugestiile de conturi în acest moment."
@@ -9113,7 +9214,11 @@ msgstr "Pachete de pornire"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Pachetele de pornire vă permit să partajați cu ușurință fluxurile și persoanele preferate cu prietenii dvs."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "Pachetele de pornire vă permit să partajați cu ușurință fluxurile și persoanele preferate cu prietenii dvs."
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "Pachetele de pornire vă permit să partajați cu ușurință fluxurile și persoanele preferate cu prietenii dvs."
@@ -9181,11 +9286,11 @@ msgstr "Abonați-vă la @{0} pentru a utiliza aceste etichete:"
msgid "Subscribe to account activity"
msgstr "Abonați-vă la activitatea contului"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Abonați-vă la Etichetator"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Abonează-vă la acest etichetator"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Conturi Sugerate"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Sugerat pentru dvs."
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Sugestiv"
@@ -9354,8 +9459,8 @@ msgstr "Termeni"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Termenii de Serviciu"
@@ -9403,12 +9508,12 @@ msgstr "Acel nume de utilizator este deja luat"
msgid "That's all, folks!"
msgstr "Asta-i tot, oameni buni!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Asta e tot!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Contul va putea interacționa cu dvs. după deblocare."
@@ -9447,7 +9552,7 @@ msgstr "Fluxul Descoperă"
msgid "The Discover feed now knows what you like"
msgstr "Fluxul Descoperă știe acum ce vă place"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Experiența este mai bună în aplicație. Descărcați Bluesky acum și vom continua de unde ați rămas."
@@ -9527,7 +9632,7 @@ msgstr "Temă"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "Există o limită pentru cât de des vă puteți schimba data nașterii. Poate fi necesar să așteptați o zi sau două înainte de a o actualiza din nou."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Nu există limită de timp pentru dezactivarea contului, puteți revenii oricând."
@@ -9711,6 +9816,10 @@ msgstr "Acest conținut nu poate fi vizualizat fără un cont Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Această conversație este cu un cont șters sau dezactivat. Apăsați pentru opțiuni"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "Această schiță va fi ștearsă permanent."
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Acest e-mail este deja asociat contului dvs."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Acest flux este gol! S-ar putea să fie nevoie să urmăriți mai mulți utilizatori sau să ajustați setările de limbă."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Acest flux este gol."
@@ -9798,7 +9907,7 @@ msgstr "Această listă este goală."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Acest serviciu de moderare nu este disponibil. Consultați mai jos pentru mai multe detalii. Dacă problema persistă, contactați-ne."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Această postare pretinde că a fost creată pe <0>{0}0>, dar a fost văzută prima dată de Bluesky pe <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr "Această postare a fost ștearsă de autorul său"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Această postare va fi ascunsă de fluxuri și fire. Acest lucru nu poate fi anulat."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Autorul acestei postări a dezactivat postările citate."
@@ -9834,7 +9943,7 @@ msgstr "Acest răspuns va fi sortat într-o secțiune ascunsă în partea de jos
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Acest serviciu nu a furnizat termeni de serviciu sau o politică de confidențialitate."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "Acest serviciu nu este acceptat cât timp caracteristica în direct este în beta. Serviciile permise: {formatted}."
@@ -9900,8 +10009,8 @@ msgstr "Aceasta va elimina postarea dvs. din această postare citat pentru toți
msgid "Thread options"
msgstr "Opțiuni fire"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Preferințe fir"
@@ -9951,7 +10060,7 @@ msgstr "Astăzi"
msgid "Toggle to enable or disable adult content"
msgstr "Comutați pentru a activa sau dezactiva conținutul pentru adulți"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Comută sunetul"
@@ -9988,8 +10097,8 @@ msgstr "Subiect"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Traducere"
@@ -10091,15 +10200,15 @@ msgstr "Informații flux indisponibile"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Deblocare"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Deblocare"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Deblocare cont"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Deblocare cont?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Anulare"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Anulare"
@@ -10142,7 +10255,7 @@ msgstr "Anulare repostare"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Refacere repostare ({0, plural, one {o repostare} few {# repostări} other {# de repostări}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Nu mai urmăriți pe {0}"
@@ -10151,7 +10264,7 @@ msgstr "Nu mai urmăriți pe {0}"
msgid "Unfollow account"
msgstr "Nu mai urmăriți contul"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Anulează urmărirea utilizatorului"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Nu mai apreciați"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Nu mai apreciați ({0, plural, one {o apreciere} few {# aprecieri} other {# de aprecieri}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Dezamuțire listă"
msgid "Unmute thread"
msgstr "Dezamuțire fir"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Activați sunetul videoclipului"
@@ -10276,7 +10389,7 @@ msgstr "Fixarea listei anulată"
msgid "Unsnooze email reminder"
msgstr "Anulați amânarea mementoului prin e-mail"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Dezabonare"
@@ -10285,7 +10398,7 @@ msgstr "Dezabonare"
msgid "Unsubscribe from list"
msgstr "Dezabonare de la listă"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Dezabonare de la acest etichetator"
@@ -10293,7 +10406,7 @@ msgstr "Dezabonare de la acest etichetator"
msgid "Unsubscribed from list"
msgstr "Dezabonat de la listă"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Tip videoclip neacceptat: {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "Încărcați din fișiere"
msgid "Upload from Library"
msgstr "Încărcați din bibliotecă"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Se încarcă imaginile..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Se încarcă miniatura link-ului..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Se încarcă videoclipul..."
@@ -10389,8 +10506,8 @@ msgstr "Utilizați furnizorul implicit"
msgid "Use in-app browser"
msgstr "Utilizați browser-ul din aplicație"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Utilizați browser-ul din aplicație pentru a deschide link-uri"
@@ -10445,6 +10562,10 @@ msgstr "Utilizatorul vă blochează"
msgid "User list by {0}"
msgstr "Listă de utilizatori creată de {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr "Listă de utilizatori creată de {0}"
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Listă de utilizatori creată de dvs."
@@ -10597,8 +10718,8 @@ msgstr "Se verifică..."
msgid "Version {0}"
msgstr "Versiune {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Videoclip"
@@ -10614,20 +10735,24 @@ msgstr "Flux video"
msgid "Video from {0}: {text}"
msgstr "Videoclip de la {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "Videoclip de la {0}. Atingeți pentru a reda sau pentru a întrerupe videoclipul"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Jocuri video"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Redarea videoclipului este întreruptă"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Videoclipul se redă"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Videoclipul nu a fost găsit."
@@ -10635,11 +10760,11 @@ msgstr "Videoclipul nu a fost găsit."
msgid "Video settings"
msgstr "Setări videoclip"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Videoclip încărcat"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Videoclip: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Videoclip: {0}"
msgid "Videos"
msgstr "Videoclipuri"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "Videoclipurile trebuie să aibă o lungime de mai puțin de 3 minute."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Vizualizare"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Vizualizați avatarul lui {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Vizualizați profilul lui {0}"
@@ -10708,7 +10833,7 @@ msgstr "Vedeți mai multe"
msgid "View more trending videos"
msgstr "Vizualizați mai multe videoclipuri în tendințe"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "Vizualizare postare"
@@ -10788,7 +10913,7 @@ msgstr "Conținut violent sau amenințător"
msgid "Visit site"
msgstr "Vizitați site-ul"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Vizitați setările de notificare"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Întâmpinăm probleme la inițializarea procesului de verificare a vârstei pentru contul dumneavoastră. Vă rugăm să <0>contactați suportul0> pentru asistență."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Avem probleme cu rețeaua, încercați din nou"
@@ -10968,7 +11093,7 @@ msgstr "Ne pare rău, dar nu am putut încărca cuvintele dvs. amuțite în aces
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Ne pare rău, dar căutarea dvs. nu a putut fi finalizată. Vă rugăm să încercați din nou în câteva minute."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Ne pare rău! Postare la care răspundeți a fost șters."
@@ -10977,7 +11102,7 @@ msgstr "Ne pare rău! Postare la care răspundeți a fost șters."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Ne pare rău! Nu găsim pagina pe care o căutați."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Ne pare rău! Vă puteți abona doar la douăzeci de etichete și ați atins limita de douăzeci."
@@ -11018,10 +11143,9 @@ msgstr "Care sunt interesele dvs.?"
msgid "What do you want to call your starter pack?"
msgstr "Cum doriți să vă numiți pachetul de pornire?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Care-i treaba?"
@@ -11097,6 +11221,14 @@ msgstr "De ce ar trebui revizuit acest utilizator?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Doriți să blocați acest utilizator sau/și să ștergeți această conversație?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "Doriți să salvați acest lucru ca schiță înainte de a vă vizualiza schițele?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "Doriți să salvați acest lucru ca schiță pentru a o edita mai târziu?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Scrieți un mesaj"
msgid "Write a post"
msgstr "Scrieți o postare"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Scrieți o postare"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Scrieți-vă răspunsul"
@@ -11133,8 +11265,8 @@ msgstr "www.transmisiuneameaîndirect.tv"
msgid "Yes"
msgstr "Da"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Da, dezactivare"
@@ -11188,7 +11320,7 @@ msgstr "Sunteți la coadă."
msgid "You are Live"
msgstr "Sunteți în direct"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Nu mai sunteți în direct"
@@ -11200,7 +11332,7 @@ msgstr "Nu aveți voie să încărcați videoclipuri."
msgid "You are not following anyone yet"
msgstr "Nu urmăriți pe nimeni încă"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Acum sunteți în direct!"
@@ -11255,11 +11387,11 @@ msgstr "Acum puteți alege să fiți notificat când anumite persoane postează.
msgid "You can now sign in with your new password."
msgstr "Acum vă puteți conecta cu noua parolă."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "Puteți selecta doar un singur GIF odată."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "Puteți selecta doar un singur videoclip odată."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Puteți să vă reactivați contul pentru a continua să vă conectați. Profilul și postările dvs. vor fi vizibile pentru alți utilizatori."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "Puteți selecta până la {MAX_IMAGES, plural, one {} few {# imagini}other {# de imagini}} în total."
@@ -11317,7 +11449,7 @@ msgstr "Ați blocat acest utilizator"
msgid "You have blocked this user. You cannot view their content."
msgstr "Ați blocat acest utilizator. Nu puteți vizualiza conținutul acestuia."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Ați dezactivat complet notificările pentru răspunsuri, citate, și mențiuni, astfel această filă nu se va mai actualiza. Pentru a ajusta asta, vizitați <0>setări pentru notificări0>."
@@ -11376,6 +11508,14 @@ msgstr "Ați verificat cu succes adresa dvs. de e-mail. Puteți închide acest d
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Ați atins temporar limita pentru încărcări de videoclipuri. Vă rugăm să încercați din nou mai târziu."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "Aveți modificări nesalvate la această schiță, doriți să le salvați?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "Aveți modificări nesalvate. Doriți să le salvați înainte de a vă vizualiza schițele?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Încă nu ați creat un pachet de pornire!"
@@ -11437,7 +11577,7 @@ msgstr "Trebuie să aveți {MIN_ACCESS_AGE} ani sau mai mult pentru a crea un co
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Trebuie să aveți cel puțin 13 ani pentru a utiliza Bluesky. Citiți <0>Termenii de Serviciu0> pentru mai multe informații."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Trebuie să urmăriți cel puțin alte șapte persoane pentru a genera un pachet de pornire."
@@ -11449,7 +11589,7 @@ msgstr "Trebuie să completați verificarea vârstei pentru a accesa acest ecran
msgid "You must grant access to your photo library to save a QR code"
msgstr "Trebuie să permiteți accesul la biblioteca foto pentru a salva un cod QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "Trebuie să permiteți accesul la biblioteca dvs. media."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Sunteți la coadă"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "V-ați conectat cu o Parolă pentru Aplicație. Vă rugăm să vă conectați cu parola principală pentru a continua să vă dezactivați contul."
@@ -11589,7 +11729,7 @@ msgstr "Ați atins limita zilnică pentru încărcări de videoclipuri (prea mul
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Ați atins limita zilnică pentru încărcări de videoclipuri (prea multe videoclipuri)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Ați rămas fără videoclipuri de vizionat. Poate e un moment bun pentru a face o pauză?"
@@ -11625,7 +11765,7 @@ msgstr "Contestația dvs. a fost trimisă. Dacă contestația dvs. este acceptat
msgid "Your birth date"
msgstr "Data nașterii"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Browserul dvs. nu acceptă formatul video. Vă rugăm să încercați un alt browser."
@@ -11692,8 +11832,8 @@ msgstr "Identificatorul dvs. complet va fi <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Interesele dvs."
@@ -11731,11 +11871,11 @@ msgstr "Parola dvs. a fost modificată cu succes! Vă rugăm să folosiți noua
msgid "Your password must be at least 8 characters long."
msgstr "Parola dvs. trebuie să aibă cel puțin 8 caractere."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "Postarea dvs. a fost trimisă"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "Postările dvs. au fost trimise"
@@ -11752,11 +11892,11 @@ msgstr "Imaginea dvs. de profil"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "Imaginea dvs. de profil înconjurată de cercuri concentrice cu imagini de profil ale altor utilizatori"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Profilul, postările, fluxurile și listele dvs. nu vor mai fi vizibile pentru alți utilizatori Bluesky. Vă puteți reactiva contul în orice moment, conectându-vă."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "Răspunsul dvs. a fost trimis"
diff --git a/src/locale/locales/ru/messages.po b/src/locale/locales/ru/messages.po
index f9cbcedb04..384c59181b 100644
--- a/src/locale/locales/ru/messages.po
+++ b/src/locale/locales/ru/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ru\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# репост} few {# репоста} other {# реп
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# секунду} few {# секунды} other {# секунд}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# непрочитанный элемент} other {# непрочитанных элементов}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# непрочитанный элемент} other {#
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# месяц} few {# месяца} other {# месяцев}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {подписчик} few {подписчика} other {
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {подписка} few {подписки} other {подписок}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {лайк} few {лайка} other {лайков}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {лайк} few {лайка} other {лайков}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {пост} few {поста} other {постов}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {цитирование} few {цитирования} other {цитирований}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {репост} few {репоста} other {репостов}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {сохранение} few {сохранения} other {сохранений}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (Аккаунт)"
@@ -189,11 +193,11 @@ msgstr "{0} отреагировал {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} отреагировал {1} на {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, лента от {1}, которая нравится {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, список от {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, one {# пользователь присо
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# минуту} few {# минуты} other {# минут}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# непрочитанный элемент} other {# непрочитанных элементов}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1> и {2, plural, one {# другой} other {# других}} включены в ваш стартовый набор"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {подписчик} few {подписчика} other {подписчиков}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {подписка} few {подписки} other {подписок}}"
@@ -580,6 +584,11 @@ msgstr "Скриншот записи с новой кнопкой рядом с
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Скриншот страницы профиля со значком колокольчика рядом с кнопкой \"Подписаться\", указывающей на новую функцию уведомлений об активности."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Добавьте ещё {0}, чтобы продолжить"
msgid "Add {displayName} to starter pack"
msgstr "Добавить {displayName} в стартовый набор"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Добавить предупреждение о содержимом"
@@ -754,11 +763,11 @@ msgstr "Добавьте альтернативный текст (необяза
msgid "Add another account"
msgstr "Добавить другую учётную запись"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Добавить другой пост"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Добавить еще один пост в ветку"
@@ -776,12 +785,12 @@ msgstr "Добавить пароль приложения"
msgid "Add emoji reaction"
msgstr "Добавить эмодзи-реакцию"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Добавить изображение"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Добавить медиа к посту"
@@ -871,7 +880,7 @@ msgstr "Дополнительные сведения (не больше 1000 с
msgid "Additional details (limit 300 characters)"
msgstr "Дополнительные сведения (до 300 символов)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Для взрослых"
@@ -879,10 +888,10 @@ msgstr "Для взрослых"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Содержимое для взрослых"
@@ -894,8 +903,8 @@ msgstr "Содержимое для взрослых можно включить
msgid "Adult content is disabled."
msgstr "Содержимое для взрослых отключено."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Метки содержимого для взрослых"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Все"
@@ -1017,7 +1026,7 @@ msgstr "Уже есть учётная запись?"
msgid "Already signed in as @{0}"
msgstr "Уже вошли как @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "АЛЬТ"
msgid "Alt text"
msgstr "Альтернативный текст"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Альтернативный текст"
@@ -1059,7 +1068,7 @@ msgstr "Было отправлено письмо на адрес {0}. Оно
msgid "An error has occurred"
msgstr "Возникла ошибка"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Возникла ошибка"
@@ -1067,7 +1076,7 @@ msgstr "Возникла ошибка"
msgid "An error occurred while compressing the video."
msgstr "Возникла ошибка при сжатии видео."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr "При обновлении ленты произошла ошибка."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "При создании вашего стартового набора возникла ошибка. Хотите попробовать ещё раз?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "При загрузке видео возникла ошибка. Пожалуйста, повторите попытку позже."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "При загрузке видео возникла ошибка. Пожалуйста, попробуйте ещё раз."
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Животные"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "Анимированные GIF"
@@ -1306,12 +1315,12 @@ msgstr "Применить рекомендуемые по умолчанию л
msgid "Apply Pull Request"
msgstr "Применить запрос на слияние"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Архивный пост от {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Архивный пост"
@@ -1332,11 +1341,11 @@ msgstr "Вы уверены, что хотите удалить этот ста
msgid "Are you sure you want to discard your changes?"
msgstr "Вы уверены, что хотите отменить изменения?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Вы уверены, что хотите выйти из беседы?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Вы уверены, что хотите покинуть эту беседу? Ваши сообщения будут удалены для вас, но не для других участников."
@@ -1344,11 +1353,7 @@ msgstr "Вы уверены, что хотите покинуть эту бес
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Вы уверены, что хотите удалить это из своих лент?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Вы действительно хотите удалить этот черновик?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Вы действительно хотите удалить этот пост?"
@@ -1364,7 +1369,7 @@ msgstr "Вы пишете на <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Искусство"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Художественная или неэротическая обнаженность."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Аврора"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Автовоспроизведение видео и GIF-файлов"
@@ -1404,11 +1409,13 @@ msgstr "Доступен"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Назад"
@@ -1578,7 +1585,7 @@ msgstr "Блог"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky не может подтвердить подлинность заявленной даты."
@@ -1623,7 +1630,7 @@ msgstr "Условия предоставления услуг Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky выберет набор рекомендуемых учётных записей из вашего круга общения."
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Просмотреть другие ленты на странице Explore"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Просмотреть другие предложения"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Просмотрите другие предложения на странице Explore"
@@ -1770,8 +1777,8 @@ msgstr "Камера"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Камера"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Отменить поиск"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Невозможно взаимодействовать с заблокированным пользователем"
@@ -1901,9 +1908,9 @@ msgstr "Изменения сохранены"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Чат"
@@ -1989,7 +1996,7 @@ msgstr "Выберите метод подтверждения домена"
msgid "Choose Feeds"
msgstr "Выберите ленты"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Выберите за меня"
@@ -2096,6 +2103,7 @@ msgstr "Клип 🐴 клоп 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Клип 🐴 клоп 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Закройте окно GIF"
msgid "Close image"
msgstr "Закрыть изображение"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Закрыть просмотр изображения"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr "Закрыть окно приветствия"
msgid "Closes password update alert"
msgstr "Закрывает уведомление об изменении пароля"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Закрывает редактор и удаляет черновик"
@@ -2242,12 +2251,12 @@ msgstr "Завершите ознакомление и начните польз
msgid "Complete the challenge"
msgstr "Выполните задание"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Составить новый пост"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Пишите посты длиной до {0, plural, one {# символа} other {# символов}}"
@@ -2255,7 +2264,11 @@ msgstr "Пишите посты длиной до {0, plural, one {# симво
msgid "Compose reply"
msgstr "Составить ответ"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Сжатие видео..."
@@ -2263,7 +2276,6 @@ msgstr "Сжатие видео..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Настроить фильтрацию содержимого для категории: {имя}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Настраивается в <0>настройках модерации0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "Контакты импортированы"
msgid "Contacts removed"
msgstr "Контакты удалены"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Содержание и медиа"
@@ -2389,7 +2401,7 @@ msgstr "Контент, пропагандирующий или изобража
msgid "Content Warning"
msgstr "Предупреждение о содержимом"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Предупреждение о содержимом"
@@ -2401,7 +2413,7 @@ msgstr "Фон контекстного меню, нажмите, чтобы з
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Далее"
@@ -2420,7 +2432,7 @@ msgstr "Продолжить ветку..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "Не удалось выйти из чата"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Не удалось загрузить ленту"
@@ -2643,8 +2655,8 @@ msgstr "Создать QR-код для стартового набора"
msgid "Create a starter pack"
msgstr "Создать стартовый набор"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "Создать для меня стартовый набор"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Создать ещё один"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Создать новую учётную запись"
@@ -2772,7 +2784,7 @@ msgstr "Дата рождения"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Деактивировать учётную запись"
@@ -2871,7 +2883,7 @@ msgstr "Удалить мою учётную запись"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Удалить пост"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Отключить субтитры"
@@ -2996,8 +3008,11 @@ msgstr "Отключено"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Удалить"
@@ -3006,11 +3021,12 @@ msgstr "Удалить"
msgid "Discard changes?"
msgstr "Удалить изменения?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Удалить черновик?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Удалить пост?"
@@ -3037,7 +3053,7 @@ msgstr "Пропустить"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Пропустить ошибку"
@@ -3049,11 +3065,16 @@ msgstr "Пропустить руководство по началу работ
msgid "Dismiss interests"
msgstr "Отклонить интересы"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Пропустить этот раздел"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr "Не волнуйтесь! Все существующие сообще
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Дважды нажмите или зажмите сообщение, ч
msgid "Double tap to close the dialog"
msgstr "Дважды нажмите, чтобы закрыть диалог"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Дважды нажмите, чтобы поставить лайк"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Скачать Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Скачать CAR файл"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Перетащите и отпустите, чтобы добавить изображение"
@@ -3285,13 +3313,13 @@ msgstr "Редактировать настройки взаимодействи
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Редактировать профиль"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Редактировать профиль"
@@ -3413,7 +3441,7 @@ msgstr "Включить push-уведомления"
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Включить субтитры"
@@ -3421,13 +3449,13 @@ msgstr "Включить субтитры"
msgid "Enable this source only"
msgstr "Включить только этот источник"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Включить актуальные темы"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Включить актуальные видео в ленте Discover"
@@ -3464,7 +3492,7 @@ msgstr "Введите слово или тег"
msgid "Enter code"
msgstr "Введите код"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Перейти в полноэкранный режим"
@@ -3501,7 +3529,7 @@ msgstr "Введите ваш пароль"
msgid "Enter your username and password"
msgstr "Введите псевдоним и пароль"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Переходит в полноэкранный режим"
@@ -3509,7 +3537,7 @@ msgstr "Переходит в полноэкранный режим"
msgid "Entertainment"
msgstr "Развлечения"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Ошибка"
@@ -3570,7 +3598,7 @@ msgstr "Исключить пользователей, на которых вы
msgid "Excludes users you follow"
msgstr "Исключает пользователей, на которых вы подписаны"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Выйти из полноэкранного режима"
@@ -3578,11 +3606,7 @@ msgstr "Выйти из полноэкранного режима"
msgid "Exits account deletion process"
msgstr "Выходит из процесса удаления учётной записи"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Выходит из режима просмотра"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Развернуть альтернативный текст"
@@ -3598,11 +3622,11 @@ msgstr "Развернуть или свернуть весь пост, на к
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Разворачивает или сворачивает текст поста"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Ожидалось, что uri разрешиться в запись"
@@ -3639,7 +3663,7 @@ msgstr "Откровенные сексуальные изображения."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Обзор"
@@ -3657,8 +3681,8 @@ msgstr "Экспорт моих данных"
msgid "Export My Data"
msgstr "Экспорт моих данных"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Внешние медиа"
@@ -3730,7 +3754,7 @@ msgstr "Не удалось удалить пост, попробуйте ещё
msgid "Failed to delete starter pack"
msgstr "Не удалось удалить стартовый набор"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr "Не удалось снять верификацию"
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Лента"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Лента от {0}"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Обратная связь"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Ленты"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr "Завершение"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Наконец-то! Следите за постами, которые важны для вас. Сохраняйте их, чтобы просмотреть в любое время."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Найти людей, чтобы подписаться"
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Подписаться"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Подписаться на {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Подписаться на {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Подписаться на учётную запись"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Подписаться на учётную запись"
msgid "Follow all"
msgstr "Подписаться на всех"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Подписаться на все аккаунты"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Подписаться в ответ"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Вы подписаны на всё аккаунты!"
@@ -4195,8 +4228,8 @@ msgstr "Подписчики, которых вы знаете"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Подписки"
msgid "Following {0}"
msgstr "Подписка на {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Подписан на {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Настройка ленты подписок"
@@ -4264,7 +4297,7 @@ msgstr "В целях безопасности вы не сможете прос
msgid "For the best experience, we recommend using the theme font."
msgstr "Для наилучшего восприятия мы рекомендуем использовать тематический шрифт."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Для Вас"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Из <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Сгенерировать стартовый набор"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Получить помощь"
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr "Приступить"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Придайте своему профилю лицо"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Вернуться"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Графический медиаконтент"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Справка"
@@ -4632,9 +4670,9 @@ msgstr "Скрытый список"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Скрыть список пользователей"
msgid "Hide verification badges"
msgstr "Скрыть значки верификации"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Скрывает содержимое"
@@ -4760,9 +4798,9 @@ msgstr "Подождите! Мы постепенно даём доступ к
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Главная"
@@ -4819,7 +4857,7 @@ msgstr "Я понял"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Раскрывает альтернативный текст, если текст слишком длинный"
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr "Если вы разработчик, вы можете разместить свой собственный сервер."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Если вы хотите изменить свой псевдоним или электронную почту, сделайте это до деактивации."
@@ -4996,6 +5034,10 @@ msgstr "Настройки взаимодействия"
msgid "Introducing activity notifications"
msgstr "Представляем уведомления об активности"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr "Сейчас это просто <0>{0} 0>! Добавьте боль
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Сейчас здесь только вы! Добавьте больше людей в свой стартовый набор, воспользовавшись поиском выше."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID вакансии: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Держите меня в курсе"
msgid "KWS website"
msgstr "Веб-сайт KWS"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Отмечен {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Метка добавлена автором."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Метки"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Метки добавлены"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "Узнайте больше о самостоятельном хостинге PDS."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Узнайте больше о модерации, применяемой к этому содержимому"
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Узнать больше об этом предупреждении"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Узнать больше."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Выйти"
@@ -5286,7 +5328,7 @@ msgstr "Вы покидаете Bluesky"
msgid "left to go."
msgstr "ещё осталось."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Позвольте мне выбрать"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Лайк"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Лайк ({0, plural, one {# лайк} few {# лайка} other {# лайков}})"
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Лайки этого поста"
@@ -5474,7 +5516,7 @@ msgstr "Список больше не игнорируется"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Списки"
@@ -5496,10 +5538,20 @@ msgstr "ПРЯМОЙ ЭФИР"
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Загрузить больше"
msgid "Load more suggested feeds"
msgstr "Загрузить больше предлагаемых лент"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Загрузить новые уведомления"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Логотип @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Логотип от <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Сделать один для меня"
msgid "Make sure this is where you intend to go!"
msgstr "Убедитесь, что это действительно тот сайт, который вы собираетесь посетить!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Управление сохранёнными лентами"
@@ -5638,7 +5690,16 @@ msgstr "Возможно, позже"
msgid "Media"
msgstr "Медиа"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Медиа, которые могут вызывать беспокойство или быть неприемлемыми для некоторых аудиторий."
@@ -5653,7 +5714,7 @@ msgstr "упомянутые пользователи"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Упоминания"
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Кино"
msgid "Music"
msgstr "Музыка"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Перейти к стартовому набору"
msgid "Navigates to the next screen"
msgstr "Переходит к следующему экрану"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Переходит к вашему профилю"
@@ -5983,6 +6049,7 @@ msgstr "Новый адрес электронной почты"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Новая функция"
@@ -6018,12 +6085,12 @@ msgstr "Новые сообщения"
msgid "New password"
msgstr "Новый пароль"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Новый пост"
@@ -6085,7 +6152,7 @@ msgstr "Новости"
msgid "Next"
msgstr "Далее"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Следующее изображение"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "Нет панели DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Нет срока действия"
@@ -6136,7 +6207,7 @@ msgstr "Нет изображения"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Пока нет лайков"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "Вы больше не подписаны на {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "Пока нет цитирований"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Нет результатов"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Нет результатов"
@@ -6238,7 +6309,7 @@ msgstr "Нет результатов."
msgid "No search results found for \"{search}\"."
msgstr "Результаты поиска по запросу \"{search}\" не найдены."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "Нет, спасибо"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr "Нет в подписках у тех, на кого подписаны
msgid "Not Found"
msgstr "Не найдено"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Примечание по распространению"
@@ -6321,7 +6396,7 @@ msgstr "Пока ничего не сохранено"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Настройки уведомления"
@@ -6349,10 +6424,10 @@ msgstr "Звуки уведомлений"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Уведомления"
@@ -6368,8 +6443,8 @@ msgstr "сейчас"
msgid "Now"
msgstr "Сейчас"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Нагота"
@@ -6390,7 +6465,7 @@ msgstr "О нет!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "ОК"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Хорошо"
@@ -6417,23 +6492,23 @@ msgstr "на<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Сброс настроек"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "В одном или нескольких GIF-файлах отсутствует альтернативный текст."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Для одного или нескольких изображений отсутствует альтернативный текст."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "В одном или нескольких видео отсутствует альтернативный текст."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ой, что-то пошло не так!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ой!"
msgid "Open avatar creator"
msgstr "Открыть создатель аватара"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "Открыть настройки беседы"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Открыть выдвижное меню"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Открыть подборщик эмодзи"
@@ -6557,7 +6636,7 @@ msgstr "Открыть системный журнал"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Открывает диалог для добавления предупреждения о содержимом поста"
@@ -6589,25 +6668,25 @@ msgstr "Открывает диалог изменения псевдонима"
msgid "Opens composer"
msgstr "Открывает редактор"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Открывает подборщик эмодзи"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Открывает процесс создания новой учётной записи Bluesky"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Открывается процесс входа в существующую учетную запись Bluesky"
@@ -6620,7 +6699,7 @@ msgstr "Открывает диалоговое окно выбора GIF"
msgid "Opens helpdesk in browser"
msgstr "Открывает службу поддержки в браузере"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "Открывает форму сброса пароля"
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "Статус OTA: Отсутствует"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Другое"
@@ -6763,13 +6846,13 @@ msgstr "Пароль изменён"
msgid "Password updated!"
msgstr "Пароль изменён!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Приостановить"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Приостановить видео"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "Фотография"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Изображения, предназначенные для взрослых."
@@ -6874,9 +6957,9 @@ msgstr "Закрепленные ленты"
msgid "Pinned to your feeds"
msgstr "Закрепить в своих лентах"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Воспроизвести"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Воспроизвести {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Воспроизвести видео"
@@ -6893,11 +6976,11 @@ msgstr "Воспроизвести видео"
msgid "Play Video"
msgstr "Воспроизвести видео"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Воспроизводит или приостанавливает GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Воспроизводит или приостанавливает видео"
@@ -6909,7 +6992,7 @@ msgstr "Воспроизводит GIF"
msgid "Plays the video"
msgstr "Воспроизводит видео"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "Политика"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Порнография"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Пост"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Опубликовать"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Опубликовать все"
@@ -7217,7 +7300,7 @@ msgstr "Нажмите, чтобы просмотреть подписчиков
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Предварительное изображение"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Политика конфиденциальности"
@@ -7266,7 +7349,11 @@ msgstr "Политика конфиденциальности"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Обработка видео..."
@@ -7280,10 +7367,10 @@ msgstr "Обработка..."
msgid "profile"
msgstr "профиль"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Профиль"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Публичные, доступные для обмена списки пользователей для массового игнорирования или блокировки."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Опубликовать пост"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Опубликовать посты"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Опубликовать ответы"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Опубликовать ответ"
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Цитировать пост"
@@ -7385,7 +7473,7 @@ msgstr "Цитирование постов отключено"
msgid "Quotes"
msgstr "Цитаты"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Цитаты из этого поста"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr "Прочитать пост в блоге"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Читать меньше"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Читать больше"
@@ -7720,13 +7808,13 @@ msgstr "Ответы отключены"
msgid "Replies to this post are disabled."
msgstr "Ответы на этот пост отключены."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Ответить"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Ответить ({0, plural, one {# ответ} few {# ответа} other {# ответов}})"
@@ -7892,7 +7980,7 @@ msgstr "Вы сделали репост"
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Репосты этого поста"
@@ -7996,14 +8084,14 @@ msgstr "Повторяет последнее действие, которое
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Вернуться к предыдущей странице"
msgid "Returns to home page"
msgstr "Возвращает на главную страницу"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Возвращает к предыдущей странице"
@@ -8063,7 +8151,7 @@ msgstr "Возвращает к предыдущему шагу"
msgid "Save"
msgstr "Сохранить"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Сохранить"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Сохранить изменения"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Сохранить в мои ленты"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Сохранённые"
@@ -8155,7 +8260,7 @@ msgstr "Пролистать вверх"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Поиск"
@@ -8164,7 +8269,7 @@ msgstr "Поиск"
msgid "Search @{0}'s posts"
msgstr "Поиск постов @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Поиск по имени или интересам"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Поиск лент"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Поиск постов"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Поиск профилей"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Поиск..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Ищет профили"
@@ -8283,12 +8388,12 @@ msgstr "Просмотреть посты пользователя #{tag}"
msgid "See jobs at Bluesky"
msgstr "Посмотреть вакансии в Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Подробнее"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "Выберите желаемый язык для переводов в
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Отправить электронное письмо"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Отправить отзыв"
@@ -8566,7 +8671,7 @@ msgstr "Устанавливает адрес электронной почты
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Настройки"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Настройки сохранены"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Сексуальная активность или эротическая обнаженность."
@@ -8634,7 +8739,7 @@ msgstr "С сексуальным подтекстом"
msgid "Share"
msgstr "Поделиться"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Поделиться"
@@ -8712,13 +8817,13 @@ msgstr "Поделитесь любимой лентой!"
msgid "Shared Preferences Tester"
msgstr "Тестер общих настроек"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Показать"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Показать альтернативный текст"
@@ -8820,7 +8925,7 @@ msgstr "Показать предупреждения и фильтровать
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Показывает информацию о том, когда был создан этот пост"
@@ -8828,8 +8933,8 @@ msgstr "Показывает информацию о том, когда был
msgid "Shows other accounts you can switch to"
msgstr "Показывает другие учётные записи, на которые вы можете переключиться"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Показывает содержимое"
@@ -8842,14 +8947,14 @@ msgstr "Показывает содержимое"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Необходимо войти для просмотра"
msgid "Signed in as @{0}"
msgstr "Вы вошли как @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Похожие учётные записи"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "Разрабочик программного обеспечения"
msgid "Some of your verifications are invalid."
msgstr "Некоторые из ваших верификаций недействительны."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Некоторые другие ленты, которые могут вам понравиться"
@@ -8994,7 +9095,7 @@ msgstr "Что-то пошло не так"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Что-то пошло не так, пожалуйста, попробуйте ещё раз"
@@ -9020,7 +9121,7 @@ msgstr "Что-то пошло не так. Пожалуйста, попробу
msgid "Something wrong? Let us know."
msgstr "Что-то не так? Сообщите нам."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "Наборы"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Стартовые наборы позволяют легко делиться любимыми лентами и людьми с друзьями."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "Подпишитесь на @{0}, чтобы использовать э
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Подписаться на маркировщика"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Подписаться на этого маркировщика"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Предлагаемые учётные записи"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Предложения для вас"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Неприличный"
@@ -9354,8 +9459,8 @@ msgstr "Условия"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Условия использования"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "Вот и все, ребята!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Это всё!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Учётная запись сможет взаимодействовать с вами после разблокировки."
@@ -9447,7 +9552,7 @@ msgstr "Лента Discover"
msgid "The Discover feed now knows what you like"
msgstr "Теперь лента Discover знает, что вам нравится"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "В приложении впечатления лучше. Скачайте Bluesky прямо сейчас, и мы продолжим работу с того места, где вы остановились."
@@ -9527,7 +9632,7 @@ msgstr "Тематический"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Время деактивации учётной записи не ограничено, возвращайтесь в любое время."
@@ -9711,6 +9816,10 @@ msgstr "Этот контент недоступен для просмотра
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Эта беседа ведется с удаленной или деактивированной учётной записью. Нажмите для выбора опций"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Эта лента пуста! Возможно, вам нужно подписаться на большее количество пользователей или изменить настройки языка."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Эта лента пуста."
@@ -9798,7 +9907,7 @@ msgstr "Этот список пуст."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Данный сервис модерации недоступен. Просмотрите детали ниже. Если проблема не исчезнет, свяжитесь с нами."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Этот пост утверждает, что был создан <0>{0}0>, но впервые был замечен Bluesky <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Этот пост будет скрыт из лент и тем. Это невозможно отменить."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Автор этого поста отключил цитирование постов."
@@ -9834,7 +9943,7 @@ msgstr "Этот ответ будет отсортирован в скрыты
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Этот сервис не предоставил условия обслуживания или политику конфиденциальности."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "Это удалит ваш пост из этой цитаты для в
msgid "Thread options"
msgstr "Настройки веток"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Настройки веток"
@@ -9951,7 +10060,7 @@ msgstr "Сегодня"
msgid "Toggle to enable or disable adult content"
msgstr "Включить или отключить контент для взрослых"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Переключает звук"
@@ -9988,8 +10097,8 @@ msgstr "Тема"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Перевести"
@@ -10091,15 +10200,15 @@ msgstr "Информация о ленте недоступна"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Разблокировать"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Разблокировать"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Разблокировать учётную запись"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Разблокировать учётную запись?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Отменить"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Отменить"
@@ -10142,7 +10255,7 @@ msgstr "Отменить репост"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Отменить репост ({0, plural, one {# репост} few {# репоста} other {# репостов}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Отписаться от {0}"
@@ -10151,7 +10264,7 @@ msgstr "Отписаться от {0}"
msgid "Unfollow account"
msgstr "Отписаться от учётной записи"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Отписаться от пользователя"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Дизлайк"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Дизлайк ({0, plural, one {# лайк} few {# лайка} other {# лайков}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Перестать игнорировать список"
msgid "Unmute thread"
msgstr "Перестать игнорировать ветку"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Включить звук видео"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Отписаться"
@@ -10285,7 +10398,7 @@ msgstr "Отписаться"
msgid "Unsubscribe from list"
msgstr "Отписаться от списка"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Отписаться от этого маркировщика"
@@ -10293,7 +10406,7 @@ msgstr "Отписаться от этого маркировщика"
msgid "Unsubscribed from list"
msgstr "Подписка на список отменена"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "Загрузить из файлов"
msgid "Upload from Library"
msgstr "Загрузить из библиотеки"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Загрузка изображений..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Загрузка миниатюры ссылки..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Загрузка видео..."
@@ -10389,8 +10506,8 @@ msgstr "Использовать провайдера по умолчанию"
msgid "Use in-app browser"
msgstr "Во встроенном браузере"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Использовать встроенный браузер для открытия ссылок"
@@ -10445,6 +10562,10 @@ msgstr "Пользователь заблокировал вас"
msgid "User list by {0}"
msgstr "Список пользователей от {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Список пользователей от вас"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr "Версия {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Видео"
@@ -10614,20 +10735,24 @@ msgstr "Лента видео"
msgid "Video from {0}: {text}"
msgstr "Видео от {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Видеоигры"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Видео приостановлено"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Видео воспроизводится"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Видео не найдено."
@@ -10635,11 +10760,11 @@ msgstr "Видео не найдено."
msgid "Video settings"
msgstr "Настройки видео"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Видео загружено"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Видео: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Видео: {0}"
msgid "Videos"
msgstr "Видео"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Просмотреть аватар {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Посмотреть профиль {0}"
@@ -10708,7 +10833,7 @@ msgstr "Показать больше"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "У нас проблемы с сетью, попробуйте ещё раз"
@@ -10968,7 +11093,7 @@ msgstr "Нам очень жаль, мы не смогли сейчас загр
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Нам очень жаль, нам не удалось выполнить поиск по вашему запросу. Пожалуйста, попробуйте ещё раз через несколько минут."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Нам очень жаль! Пост, на который вы отвечаете, был удален."
@@ -10977,7 +11102,7 @@ msgstr "Нам очень жаль! Пост, на который вы отве
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Нам очень жаль! Мы не можем найти страницу, которую вы искали."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Нам очень жаль! Вы можете подписаться только на двадцать маркировщиков, и вы достигли своего лимита в двадцать."
@@ -11018,10 +11143,9 @@ msgstr "Чем вы интересуетесь?"
msgid "What do you want to call your starter pack?"
msgstr "Как вы хотите назвать свой стартовый набор?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Как дела?"
@@ -11097,6 +11221,14 @@ msgstr "Почему следует просмотреть этого польз
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Написать сообщение"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Написать пост"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Написать ответ"
@@ -11133,8 +11265,8 @@ msgstr "www.mylivestream.tv"
msgid "Yes"
msgstr "Да"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Да, деактивировать"
@@ -11188,7 +11320,7 @@ msgstr "Вы в очереди."
msgid "You are Live"
msgstr "Вы в прямом эфире"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Вы больше не в прямом эфире"
@@ -11200,7 +11332,7 @@ msgstr "Вы не можете загружать видео."
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Вы в прямом эфире!"
@@ -11255,11 +11387,11 @@ msgstr "Теперь вы можете выбирать, получать ли
msgid "You can now sign in with your new password."
msgstr "Теперь вы можете войти с помощью нового пароля."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Вы можете реактивировать свою учётную запись, чтобы продолжить вход в систему. Ваш профиль и посты будут видны другим пользователям."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "Вы заблокировали этого пользователя"
msgid "You have blocked this user. You cannot view their content."
msgstr "Вы заблокировали этого пользователя. Вы не можете видеть их содержимое."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr "Вы успешно проверили свой адрес электр
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Вы достигли временного лимита по загрузкам видео. Попробуйте ещё раз позже."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Вы ещё не создали стартовый набор!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Чтобы получить стартовый набор, вы должны подписаться как минимум на семь других людей."
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "Чтобы сохранить QR-код, необходимо предоставить доступ к библиотеке фотографий"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Вы в очереди"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Вы вошли в систему с паролем приложения. Чтобы продолжить деактивацию учетной записи, введите свой основной пароль."
@@ -11589,7 +11729,7 @@ msgstr "Вы достигли дневного лимита по загрузк
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Вы достигли дневного лимита по загрузкам видео (слишком много видео)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "У вас закончились видео для просмотра. Может быть, сейчас самое время сделать перерыв?"
@@ -11625,7 +11765,7 @@ msgstr "Ваше обращение было отправлено. Если об
msgid "Your birth date"
msgstr "Ваша дата рождения"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Ваш браузер не поддерживает формат видео. Пожалуйста, попробуйте использовать другой браузер."
@@ -11692,8 +11832,8 @@ msgstr "Вашим полным псевдонимом будет <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Ваши интересы"
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr "Ваш пароль должен состоять не менее чем из 8 символов."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "Ваша фотография в профиле, окруженная концентрическими кругами с фотографиями других пользователей"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Ваш профиль, посты, ленты и списки больше не будут видны другим пользователям Bluesky. Вы можете реактивировать свою учётную запись в любое время, войдя в систему."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "Ваш ответ был отправлен"
diff --git a/src/locale/locales/sv/messages.po b/src/locale/locales/sv/messages.po
index 4044cc0670..4b1efb56c6 100644
--- a/src/locale/locales/sv/messages.po
+++ b/src/locale/locales/sv/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: sv\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Swedish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# återpublicering} other {# återpubliceringar}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# sekund} other {# sekunder}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# oläst notis} other {# olästa notiser}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# oläst notis} other {# olästa notiser}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# mån} other {# mån}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, one {ett inlägg till} other {# inlägg till}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {följare} other {följare}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {följd} other {följda}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {gillamarkering} other {gillamarkeringar}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {gillamarkering} other {gillamarkeringar}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {inlägg} other {inlägg}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {citat} other {citat}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {återpublicering} other {återpubliceringar}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {sparning} other {sparningar}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (konto)"
@@ -189,11 +193,11 @@ msgstr "{0} reagerade med {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} reagerade med {1} på {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0}, ett flöde av {1}, gillat av {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, en lista av {1}"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {# användare har}} gått med!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# minut} other {# minuter}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# oläst notis} other {# olästa notiser}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>och {2, plural, one {# annan} other {# andra}} ingår i ditt startpaket"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {följare} other {följare}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {följda} other {följda}}"
@@ -580,6 +584,11 @@ msgstr "En skärmdump av ett inlägg med en ny knapp bredvid delaknappen som lå
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Skärmdump av en profilsida med den nya klockikonen bredvid följknappen. Klockikonen indikerar den nya notisfunktionen."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Lägg till ytterligare {0} för att fortsätta"
msgid "Add {displayName} to starter pack"
msgstr "Lägg till {displayName} i startpaket"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Lägg till innehållsvarning"
@@ -754,11 +763,11 @@ msgstr "Lägg till alternativtext (valfritt)"
msgid "Add another account"
msgstr "Lägg till ett annat konto"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Lägg till ett ytterligare inlägg"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Lägg till ytterligare ett inlägg i tråden"
@@ -776,12 +785,12 @@ msgstr "Lägg till applösenord"
msgid "Add emoji reaction"
msgstr "Lägg till emoji-reaktion"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "Lägg till bild"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Lägg till media i inlägg"
@@ -871,7 +880,7 @@ msgstr "Ytterligare detaljer (max 1000 tecken)"
msgid "Additional details (limit 300 characters)"
msgstr "Ytterligare detaljer (max 300 tecken)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Sexuellt explicit"
@@ -879,10 +888,10 @@ msgstr "Sexuellt explicit"
msgid "Adult content"
msgstr "Vuxeninnehåll"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Vuxeninnehåll"
@@ -894,8 +903,8 @@ msgstr "Vuxeninnehåll går bara att aktivera via webben på <0>bsky.app0>."
msgid "Adult content is disabled."
msgstr "Vuxeninnehåll är inaktiverat."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Etiketter för vuxeninnehåll"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@exempel.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Alla"
@@ -1017,7 +1026,7 @@ msgstr "Har du redan ett konto?"
msgid "Already signed in as @{0}"
msgstr "Redan inloggad som @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Alternativtext"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Alternativtext"
@@ -1059,7 +1068,7 @@ msgstr "Ett e-postmeddelande har skickats till {0}. Det innehåller en bekräfte
msgid "An error has occurred"
msgstr "Ett fel har uppstått"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Ett fel uppstod"
@@ -1067,7 +1076,7 @@ msgstr "Ett fel uppstod"
msgid "An error occurred while compressing the video."
msgstr "Ett fel uppstod under komprimeringen av videoklippet."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "Ett fel uppstod vid hämtning av föreslagna konton."
@@ -1076,7 +1085,7 @@ msgstr "Ett fel uppstod vid hämtning av föreslagna konton."
msgid "An error occurred while fetching the feed."
msgstr "Ett fel uppstod under hämtningen av flödet."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Ett fel uppstod när ditt startpaket skulle genereras. Vill du försöka igen?"
@@ -1088,7 +1097,7 @@ msgstr "Ett fel uppstod när förslag skulle döljas. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "Ett fel uppstod under inläsningen av videoklippet. Försök igen senare."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Ett fel uppstod under inläsningen av videoklippet. Försök igen."
@@ -1181,7 +1190,7 @@ msgstr "Djurplågeri eller vanvård av djur"
msgid "Animals"
msgstr "Djur"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "Animerade gif-bilder"
@@ -1306,12 +1315,12 @@ msgstr "Tillämpa förvalda rekommenderade flöden"
msgid "Apply Pull Request"
msgstr "Tillämpa pull request"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Arkiverat från {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Arkiverat inlägg"
@@ -1332,11 +1341,11 @@ msgstr "Är du säker på att du vill radera det här startpaketet?"
msgid "Are you sure you want to discard your changes?"
msgstr "Är du säker på att du vill slänga dina ändringar?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Är du säker på att du vill lämna den här konversationen?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Är du säker på att du vill lämna den här konversationen? Dina meddelanden kommer att tas bort för dig, men inte för den andra deltagaren."
@@ -1344,11 +1353,7 @@ msgstr "Är du säker på att du vill lämna den här konversationen? Dina medde
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Är du säker på att du vill ta bort det här från dina flöden?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Är du säker på att du vill slänga det här utkastet?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Är du säker på att du vill slänga det här inlägget?"
@@ -1364,7 +1369,7 @@ msgstr "Skriver du på <0>{suggestedLanguageName}0>?"
msgid "Art"
msgstr "Konst"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Konstnärlig eller icke-erotisk nakenhet."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Norrsken"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Spela upp videoklipp och gif-bilder automatiskt"
@@ -1404,11 +1409,13 @@ msgstr "Tillgängligt"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Tillbaka"
@@ -1551,11 +1558,11 @@ msgstr "Blockerade konton"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818
#: src/view/com/profile/ProfileMenu.tsx:546
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
-msgstr "Blockerade konton kan inte svara i dina trådar, nämna dig eller på annat sätt interagera med dig."
+msgstr "Blockerade konton kan inte svara i dina trådar, omnämna dig eller på annat sätt interagera med dig."
#: src/view/screens/ModerationBlockedAccounts.tsx:190
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
-msgstr "Blockerade konton kan inte svara i dina trådar, nämna dig eller på annat sätt interagera med dig. Du kan inte se deras innehåll, och de kan inte se ditt."
+msgstr "Blockerade konton kan inte svara i dina trådar, omnämna dig eller på annat sätt interagera med dig. Du kan inte se deras innehåll, och de kan inte se ditt."
#: src/screens/Profile/Sections/Labels.tsx:202
msgid "Blocking does not prevent this labeler from placing labels on your account."
@@ -1578,7 +1585,7 @@ msgstr "Blogg"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky kan inte bekräfta äktheten av det angivna datumet."
@@ -1623,7 +1630,7 @@ msgstr "Användarvillkor för Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Bluesky lagrar dina kontakter som kodad data. Om du tar bort dina kontakter raderas denna data omedelbart."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky väljer en uppsättning av rekommenderade konton från personer i ditt nätverk."
@@ -1664,20 +1671,20 @@ msgstr "Överträdelser av webbplatsens regler"
msgid "Browse custom feeds"
msgstr "Bläddra bland anpassade flöden"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "Bläddra bland fler konton"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Bläddra bland fler flöden på Utforska-sidan"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Bläddra bland fler förslag"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Bläddra bland fler förslag på Utforska-sidan"
@@ -1770,8 +1777,8 @@ msgstr "Kamera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Avbryt sökning"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Det går inte att interagera med en blockerad användare"
@@ -1901,9 +1908,9 @@ msgstr "Ändringar sparade"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Chatt"
@@ -1989,7 +1996,7 @@ msgstr "Välj metod för att verifiera din domän"
msgid "Choose Feeds"
msgstr "Välj flöden"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Välj åt mig"
@@ -2096,6 +2103,7 @@ msgstr "Galopp 🐴 galopp 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Galopp 🐴 galopp 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,7 +2176,8 @@ msgstr "Stäng gif-dialogruta"
msgid "Close image"
msgstr "Stäng bild"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr "Stäng bildvisare"
@@ -2190,7 +2199,7 @@ msgstr "Stäng välkomstfönster"
msgid "Closes password update alert"
msgstr "Stänger avisering om uppdatering av lösenord"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Stänger inläggsverktyget och slänger utkastet"
@@ -2242,12 +2251,12 @@ msgstr "Slutför introduktionen och börja använda ditt konto"
msgid "Complete the challenge"
msgstr "Slutför kontrollen"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Skriv ett nytt inlägg"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Skriv inlägg som är upp till {0, plural, other {# tecken}} långa"
@@ -2255,7 +2264,11 @@ msgstr "Skriv inlägg som är upp till {0, plural, other {# tecken}} långa"
msgid "Compose reply"
msgstr "Skriv svar"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Komprimerar videoklipp…"
@@ -2263,7 +2276,6 @@ msgstr "Komprimerar videoklipp…"
msgid "Configure content filtering setting for category: {name}"
msgstr "Konfigurera innehållsfiltrering för kategorin: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "Konfigurera banderoll för liveevenemang"
@@ -2272,8 +2284,8 @@ msgstr "Konfigurera banderoll för liveevenemang"
msgid "Configured in <0>moderation settings0>."
msgstr "Konfigurerad i <0>modereringsinställningar0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "Kontakter importerade"
msgid "Contacts removed"
msgstr "Kontakter borttagna"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Innehåll och media"
@@ -2389,7 +2401,7 @@ msgstr "Innehåll som beskriver, framställer eller uppmuntrar till självskadeb
msgid "Content Warning"
msgstr "Innehållsvarning"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Innehållsvarningar"
@@ -2401,7 +2413,7 @@ msgstr "Utanför kontextmenyn. Klicka för att stänga menyn."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Fortsätt"
@@ -2420,7 +2432,7 @@ msgstr "Utöka tråd…"
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "Kunde inte följa alla matchningar. {0}"
msgid "Could not leave chat"
msgstr "Kunde inte lämna chatt"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Kunde inte läsa in flöde"
@@ -2643,8 +2655,8 @@ msgstr "Skapa en QR-kod för ett startpaket"
msgid "Create a starter pack"
msgstr "Skapa ett startpaket"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Skapa ett startpaket"
@@ -2654,12 +2666,12 @@ msgstr "Skapa ett startpaket åt mig"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Skapa en annan"
msgid "Create moderation list"
msgstr "Skapa modereringslista"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Skapa nytt konto"
@@ -2772,7 +2784,7 @@ msgstr "Födelsedatum"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Inaktivera konto"
@@ -2871,7 +2883,7 @@ msgstr "Radera mitt konto"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Radera inlägg"
@@ -2981,7 +2993,7 @@ msgstr "Inaktivera citatinlägg för det här inlägget"
msgid "Disable replies entirely"
msgstr "Inaktivera svar helt"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Stäng av undertexter"
@@ -2996,8 +3008,11 @@ msgstr "Inaktiverat"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Släng"
@@ -3006,11 +3021,12 @@ msgstr "Släng"
msgid "Discard changes?"
msgstr "Vill du slänga ändringarna?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Vill du slänga utkastet?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Vill du slänga inlägget?"
@@ -3037,7 +3053,7 @@ msgstr "Avvisa"
msgid "Dismiss banner"
msgstr "Avvisa banderoll"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Avvisa fel"
@@ -3049,11 +3065,16 @@ msgstr "Avvisa kom-igång-guide"
msgid "Dismiss interests"
msgstr "Avvisa intressen"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "Avvisa banderoll för liveevenemang"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Avvisa den här sektionen"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Avvisa det här förslaget"
@@ -3121,8 +3142,8 @@ msgstr "Ingen fara! Alla dina befintliga meddelanden och inställningar är spar
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Håll nere eller dubbeltryck på meddelandet för att lägga till en rea
msgid "Double tap to close the dialog"
msgstr "Dubbeltryck för att stänga dialogrutan"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Dubbeltryck för att gilla"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Ladda ner Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Ladda ner car-fil"
msgid "Doxxing"
msgstr "Spridning av privat information (”doxxing”)"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "Utkast"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Släpp för att lägga till bilder"
@@ -3285,13 +3313,13 @@ msgstr "Redigera interaktionsinställningar för inlägg"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Redigera profil"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Redigera profil"
@@ -3413,7 +3441,7 @@ msgstr "Aktivera pushnotiser"
msgid "Enable quote posts of this post"
msgstr "Aktivera citatinlägg för det här inlägget"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Aktivera undertexter"
@@ -3421,13 +3449,13 @@ msgstr "Aktivera undertexter"
msgid "Enable this source only"
msgstr "Aktivera endast denna källa"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Aktivera trendande ämnen"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Visa trendande videoklipp i ditt Upptäck-flöde"
@@ -3464,7 +3492,7 @@ msgstr "Ange ett ord eller en tagg"
msgid "Enter code"
msgstr "Ange kod"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Öppna helskärm"
@@ -3501,7 +3529,7 @@ msgstr "Ange ditt lösenord"
msgid "Enter your username and password"
msgstr "Ange ditt användarnamn och lösenord"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Öppnar helskärm"
@@ -3509,7 +3537,7 @@ msgstr "Öppnar helskärm"
msgid "Entertainment"
msgstr "Underhållning"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Fel"
@@ -3570,7 +3598,7 @@ msgstr "Undanta användare som du följer"
msgid "Excludes users you follow"
msgstr "Undantar användare som du följer"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Stäng helskärm"
@@ -3578,11 +3606,7 @@ msgstr "Stäng helskärm"
msgid "Exits account deletion process"
msgstr "Avslutar processen för kontoradering"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Avslutar bildvisning"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Utöka alternativtext"
@@ -3598,11 +3622,11 @@ msgstr "Utöka eller fäll ihop det inlägg som du svarar på"
msgid "Expand post text"
msgstr "Utöka inläggstext"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Utökar eller fäller ihop inläggstext"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Förväntade att URI:n skulle lösa till en post"
@@ -3639,7 +3663,7 @@ msgstr "Explicit sexuella bilder."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Utforska"
@@ -3657,8 +3681,8 @@ msgstr "Exportera min data"
msgid "Export My Data"
msgstr "Exportera min data"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Extern media"
@@ -3730,7 +3754,7 @@ msgstr "Det gick inte att radera inlägget. Försök igen"
msgid "Failed to delete starter pack"
msgstr "Det gick inte att radera startpaketet"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "Det gick inte att följa alla föreslagna konton. Försök igen."
@@ -3829,6 +3853,10 @@ msgstr "Det gick inte att ta bort verifiering"
msgid "Failed to resolve location. Please try again."
msgstr "Det gick inte att fastställa din plats. Försök igen."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "Det gick inte att spara utkast"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Flöde"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Flöde av {0}"
@@ -3941,7 +3970,7 @@ msgstr "Otillgängligt flöde"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Feedback"
@@ -3958,7 +3987,7 @@ msgstr "Feedback skickad till flödesoperatör"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Flöden"
@@ -4008,6 +4037,10 @@ msgstr "Filtrera vem du får notiser från"
msgid "Finalizing"
msgstr "Slutför"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Äntligen! Håll reda på inlägg som är viktiga för dig. Spara ett för att enkelt ta fram det senare."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Hitta mina vänner"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Hitta personer att följa"
@@ -4098,19 +4131,19 @@ msgstr "Fokusera på kodinmatning"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Följ"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Följ {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Följ {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Följ konto"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Följ konto"
msgid "Follow all"
msgstr "Följ alla"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Följ alla konton"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Följ tillbaka"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Följde alla konton!"
@@ -4195,8 +4228,8 @@ msgstr "Följare som du känner"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Följer"
msgid "Following {0}"
msgstr "Följer {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Följer {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Inställningar för Följer-flödet"
@@ -4264,7 +4297,7 @@ msgstr "Av säkerhetsskäl kommer du inte kunna se det här igen. Om du tappar b
msgid "For the best experience, we recommend using the theme font."
msgstr "Vi rekommenderar tematypsnittet för bästa upplevelse."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "För dig"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Från <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Generera ett startpaket"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Få hjälp"
@@ -4376,10 +4409,15 @@ msgstr "Bli notifierad när någon publicerar inlägg"
msgid "Get started"
msgstr "Kom igång"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "Gif-bild"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Ge din profil ett ansikte"
@@ -4394,12 +4432,12 @@ msgstr "Förhärligande av våld"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Gå tillbaka"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "Livesändning är för närvarande inaktiverat för ditt konto"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Grafiskt innehåll"
@@ -4592,7 +4630,7 @@ msgstr "Hålls av Bluesky i 7 dagar för att förhindra missbruk, därefter rade
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Hjälp"
@@ -4632,9 +4670,9 @@ msgstr "Dold lista"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Dölj användarlista"
msgid "Hide verification badges"
msgstr "Dölj verifieringsmärken"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Döljer innehållet"
@@ -4760,9 +4798,9 @@ msgstr "Vänta lite! Vi ger gradvis tillgång till videoklipp till fler använda
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Hem"
@@ -4819,7 +4857,7 @@ msgstr "Jag förstår"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "Du kan hitta mig på Bluesky under namnet {0}. Gå med du också! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Sätter alternativtext i utökat läge om den är lång"
@@ -4872,7 +4910,7 @@ msgstr "Om du vill begränsa vem som kan få notiser om ditt kontos aktivitet ka
msgid "If you're a developer, you can host your own server."
msgstr "Om du är utvecklare kan du driva en egen server."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Om du försöker ändra ditt användarnamn eller din e-postadress ska du göra det innan du avaktiverar."
@@ -4996,6 +5034,10 @@ msgstr "Interaktionsinställningar"
msgid "Introducing activity notifications"
msgstr "Nu införs aktivitetsnotiser"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "Nu kan du hitta vänner med hjälp av dina kontakter"
@@ -5089,7 +5131,7 @@ msgstr "Just nu är det bara <0>{0} 0>! Lägg till fler personer i ditt startp
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Just nu är det bara du! Lägg till fler personer i ditt startpaket genom att söka ovan."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "Jobb-ID: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Håll mig uppdaterad"
msgid "KWS website"
msgstr "KWS webbplats"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Markerat av {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Markerat av användaren."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Etiketter"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Etiketter tillagda"
@@ -5218,8 +5260,8 @@ msgstr "Läs mer om att importera kontakter"
msgid "Learn more about self hosting your PDS."
msgstr "Läs mer om att driva din egen PDS."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Läs mer om den moderering som tillämpas på det här innehållet"
@@ -5231,7 +5273,7 @@ msgstr "Läs mer om förändringarna och hur du kan dela med dig av dina synpunk
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Läs mer om förändringarna och hur du kan dela med dig av dina synpunkter i vårt blogginlägg."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Läs mer om den här varningen"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "Läs mer i dina <0>kontoinställningar0>."
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Läs mer."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Lämna"
@@ -5286,7 +5328,7 @@ msgstr "Du är på väg att lämna Bluesky"
msgid "left to go."
msgstr "kvar."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Låt mig välja"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Gilla"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Gilla ({0, plural, one {# gillamarkering} other {# gillamarkeringar}})"
@@ -5380,7 +5422,7 @@ msgstr "Gillamarkeringar på dina återpubliceringar"
msgid "Likes of your reposts notifications"
msgstr "Notiser för gillamarkeringar på dina återpubliceringar"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Gillamarkeringar på det här inlägget"
@@ -5474,7 +5516,7 @@ msgstr "Lista inte längre ignorerad"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Listor"
@@ -5496,10 +5538,20 @@ msgstr "LIVE"
msgid "Live event happening now: {0}"
msgstr "Pågående liveevenemang: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "Liveevenemang dolt"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "Alternativ för liveevenemang"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "Liveevenemang synliggjort"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "Liveevenemang dyker upp ibland när något spännande pågår. Om du vill kan du dölja just det här evenemanget eller alla evenemang från att visas på det här stället i appen."
@@ -5524,11 +5576,11 @@ msgstr "Läs in fler"
msgid "Load more suggested feeds"
msgstr "Läs in fler föreslagna flöden"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Läs in nya notiser"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logotyp av @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logotyp av <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Skapa ett åt mig"
msgid "Make sure this is where you intend to go!"
msgstr "Försäkra dig om att det här är den webbplats du tänkt besöka!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Hantera sparade flöden"
@@ -5638,7 +5690,16 @@ msgstr "Kanske senare"
msgid "Media"
msgstr "Media"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "Media lagrad på {0}"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "Media lagrad på en annan enhet"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Media som kan vara störande eller olämplig för vissa målgrupper."
@@ -5653,7 +5714,7 @@ msgstr "omnämnda användare"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Omnämnanden"
@@ -5716,6 +5777,10 @@ msgstr "Övriga notiser"
msgid "Misleading"
msgstr "Vilseledning"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "Media saknas"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "Fler språk…"
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Filmer"
msgid "Music"
msgstr "Musik"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Navigera till startpaket"
msgid "Navigates to the next screen"
msgstr "Navigerar till nästa ruta"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Navigerar till din profil"
@@ -5983,6 +6049,7 @@ msgstr "Ny e-postadress"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Ny funktion"
@@ -6018,12 +6085,12 @@ msgstr "Nya meddelanden"
msgid "New password"
msgstr "Nytt lösenord"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Nytt inlägg"
@@ -6085,7 +6152,7 @@ msgstr "Nyheter"
msgid "Next"
msgstr "Nästa"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Nästa bild"
@@ -6114,6 +6181,10 @@ msgstr "Inga anpassade flöden ännu"
msgid "No DNS Panel"
msgstr "Ingen DNS-panel"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "Inga utkast ännu"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Ingen sluttid inställd"
@@ -6136,7 +6207,7 @@ msgstr "Ingen bild"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Inga gillamarkeringar ännu"
@@ -6150,7 +6221,7 @@ msgstr "Inga listor"
msgid "No longer following {0}"
msgstr "{0} följs inte längre"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "Ingen media ännu"
@@ -6195,7 +6266,7 @@ msgstr "Inga inlägg ännu"
msgid "No quotes yet"
msgstr "Inga citat ännu"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "Inga svar ännu"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Inga resultat"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Inga resultat"
@@ -6238,7 +6309,7 @@ msgstr "Inga resultat."
msgid "No search results found for \"{search}\"."
msgstr "Inget sökresultat hittades för ”{search}”."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "Inga startpaket ännu"
@@ -6247,7 +6318,7 @@ msgstr "Inga startpaket ännu"
msgid "No thanks"
msgstr "Nej tack"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "Inga videoinlägg ännu"
@@ -6298,6 +6369,10 @@ msgstr "Följs inte av någon som du följer"
msgid "Not Found"
msgstr "Hittades inte"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Anmärkning om delning"
@@ -6321,7 +6396,7 @@ msgstr "Inget sparat ännu"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Notisinställningar"
@@ -6349,10 +6424,10 @@ msgstr "Notisljud"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Notiser"
@@ -6368,8 +6443,8 @@ msgstr "nyss"
msgid "Now"
msgstr "Nu"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Naket"
@@ -6390,7 +6465,7 @@ msgstr "Åh nej!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Okej"
@@ -6417,23 +6492,23 @@ msgstr "på<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Återställning av kom-igång-guide"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "En eller flera gif-bilder saknar alternativtext."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "En eller flera bilder saknar alternativtext."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "En eller flera av de filer du valt stöds inte."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "En eller flera av de filer du valt är för stora. Maxstorlek är 100 MB."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Ett eller flera videoklipp saknar alternativtext."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Hoppsan, något gick fel!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Hoppsan!"
msgid "Open avatar creator"
msgstr "Öppna avatarskapare"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "Öppna kamera"
@@ -6485,12 +6560,16 @@ msgstr "Öppna kamera"
msgid "Open conversation options"
msgstr "Öppna konversationsalternativ"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "Öppna utkast"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Öppna sidpanel"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Öppna emoji-väljaren"
@@ -6557,7 +6636,7 @@ msgstr "Öppna systemlogg"
msgid "Opens {0} feed"
msgstr "Öppnar flödet {0}"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Öppnar en dialogruta där du kan lägga till en innehållsvarning för ditt inlägg"
@@ -6589,25 +6668,25 @@ msgstr "Öppnar dialogruta för ändring av användarnamn"
msgid "Opens composer"
msgstr "Öppnar inläggsverktyget"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "Öppnar enhetens kamera"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "Öppnar enhetens galleri där du kan välja upp till {MAX_IMAGES, plural, other {# bilder}}, ett enskilt videoklipp eller en enskild gif-bild."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Öppnar emojiväljaren"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Öppnar guiden för att skapa ett nytt Bluesky-konto"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Öppnar guide för att logga in på ditt befintliga Bluesky-konto"
@@ -6620,7 +6699,7 @@ msgstr "Öppnar dialogruta för val av gif-bild"
msgid "Opens helpdesk in browser"
msgstr "Öppnar hjälpcentralen i webbläsaren"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "Öppnar bildväljaren"
@@ -6640,10 +6719,14 @@ msgstr "Öppnar formulär för återställning av lösenord"
msgid "Opens post language settings"
msgstr "Öppnar inställningar för inläggsspråk"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "Öppnar inläggsverktyget"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "Öppnar det här utkastet i inläggsverktyget"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "OTA-status: Ingen tillgänglig"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Annat"
@@ -6763,13 +6846,13 @@ msgstr "Lösenordet har uppdaterats"
msgid "Password updated!"
msgstr "Lösenordet har uppdaterats!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Pausa"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Pausa video"
@@ -6829,7 +6912,7 @@ msgstr "Telefonnummer verifierat"
msgid "Photography"
msgstr "Fotografi"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Bilder avsedda för vuxna."
@@ -6874,9 +6957,9 @@ msgstr "Fästa flöden"
msgid "Pinned to your feeds"
msgstr "Fäst i dina flöden"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Spela"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Spela {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Spela upp videoklipp"
@@ -6893,11 +6976,11 @@ msgstr "Spela upp videoklipp"
msgid "Play Video"
msgstr "Spela upp videoklipp"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Spelar upp eller pausar gif-bilden"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Spelar upp eller pausar videoklippet"
@@ -6909,7 +6992,7 @@ msgstr "Spelar upp gif-bilden"
msgid "Plays the video"
msgstr "Spelar upp videoklippet"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Lägg till de varningsetiketter som är relevanta för den media du publicerar."
@@ -7066,31 +7149,31 @@ msgstr "Skriv ditt meddelande nedan:"
msgid "Politics"
msgstr "Politik"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Porr"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Inlägg"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Publicera"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Publicera ett foto"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Publicera ett videoklipp"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Publicera alla"
@@ -7217,7 +7300,7 @@ msgstr "Tryck för att visa personer både du och det här kontot följer"
msgid "Preview"
msgstr "Förhandsvisa"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Föregående bild"
@@ -7257,8 +7340,8 @@ msgstr "Integritets- och säkerhetsinställningar"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Integritetspolicy"
@@ -7266,7 +7349,11 @@ msgstr "Integritetspolicy"
msgid "Privacy violation of a minor"
msgstr "Kränkning av minderårigs integritet"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Bearbetar videoklipp…"
@@ -7280,10 +7367,10 @@ msgstr "Bearbetar…"
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Publika, delningsbara listor över användare som kan ignoreras eller blockeras i grupp."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Publicera inlägg"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Publicera samtliga inlägg"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Publicera svar"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Publicera samtliga svar"
@@ -7360,6 +7447,7 @@ msgstr "Notiser för citat"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Citera inlägg"
@@ -7385,7 +7473,7 @@ msgstr "Citatinlägg inaktiverade"
msgid "Quotes"
msgstr "Citat"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Citat av det här inlägget"
@@ -7424,11 +7512,11 @@ msgstr "läs om hur du använder sökfilter"
msgid "Read blog post"
msgstr "Läs blogginlägget"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Visa mindre"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Visa mer"
@@ -7720,13 +7808,13 @@ msgstr "Svar inaktiverade"
msgid "Replies to this post are disabled."
msgstr "Svar är inaktiverat för det här inlägget."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Svara"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Svara ({0, plural, one {# svar} other {# svar}})"
@@ -7892,7 +7980,7 @@ msgstr "Återpublicerat av dig"
msgid "Reposts"
msgstr "Återpubliceringar"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Återpubliceringar av det här inlägget"
@@ -7996,14 +8084,14 @@ msgstr "Försöker igen med den senaste misslyckade åtgärden"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Gå tillbaka till föregående sida"
msgid "Returns to home page"
msgstr "Går tillbaka till startsidan"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Går tillbaka till föregående sida"
@@ -8063,7 +8151,7 @@ msgstr "Går tillbaka till föregående steg"
msgid "Save"
msgstr "Spara"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Spara"
@@ -8076,9 +8164,26 @@ msgstr "Spara födelsedatum"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Spara ändringar"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "Spara ändringar?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "Spara utkast"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "Spara utkast?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Spara till mina flöden"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Sparat"
@@ -8155,7 +8260,7 @@ msgstr "Gå till toppen"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Sök"
@@ -8164,7 +8269,7 @@ msgstr "Sök"
msgid "Search @{0}'s posts"
msgstr "Sök i @{0}s inlägg"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Sök efter namn eller intresse"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Sök flöden"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "Sök efter ”{interestsDisplayName}”"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "Sök efter ”{interestsDisplayName}” (aktiv)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Sök inlägg"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Sök profiler"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Sök…"
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Söker efter profiler"
@@ -8283,12 +8388,12 @@ msgstr "Se #{tag}-inlägg av användare"
msgid "See jobs at Bluesky"
msgstr "Se jobb på Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Se fler"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "Se fler föreslagna profiler"
@@ -8456,7 +8561,7 @@ msgstr "Välj önskat språk för översättningar i ditt flöde."
msgid "Select your preferred notification channels"
msgstr "Välj önskade notiskanaler"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "Val av flera medietyper stöds inte."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Skicka e-postmeddelande"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Skicka feedback"
@@ -8566,7 +8671,7 @@ msgstr "Ställer in e-postadress för återställning av lösenord"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Inställningar"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Inställningar sparade"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Sexuella handlingar eller erotisk nakenhet."
@@ -8634,7 +8739,7 @@ msgstr "Sexuellt suggestivt"
msgid "Share"
msgstr "Dela"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Dela"
@@ -8712,13 +8817,13 @@ msgstr "Dela ditt favoritflöde!"
msgid "Shared Preferences Tester"
msgstr "Testare för delade inställningar"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Visa"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Visa alternativtext"
@@ -8820,7 +8925,7 @@ msgstr "Visa varning och filtrera i flöden"
msgid "Show when you’re live"
msgstr "Visa att du sänder live"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Visar information om när det här inlägget skapades"
@@ -8828,8 +8933,8 @@ msgstr "Visar information om när det här inlägget skapades"
msgid "Shows other accounts you can switch to"
msgstr "Visar andra konton som du kan byta till"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Visar innehållet"
@@ -8842,14 +8947,14 @@ msgstr "Visar innehållet"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Inloggning krävs"
msgid "Signed in as @{0}"
msgstr "Inloggad som @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Liknande konton"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "Hoppa över kontaktdelning och fortsätt till appen"
msgid "Skip introduction and start using your account"
msgstr "Hoppa över introduktionen och börja använda ditt konto"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Hoppa till nästa steg"
@@ -8967,7 +9068,7 @@ msgstr "Mjukvaruutveckling"
msgid "Some of your verifications are invalid."
msgstr "Några av dina verifieringar är ogiltiga."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Några andra flöden som du kanske gillar"
@@ -8994,7 +9095,7 @@ msgstr "Något gick fel"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Något gick fel. Försök igen"
@@ -9020,7 +9121,7 @@ msgstr "Något gick fel. Försök igen."
msgid "Something wrong? Let us know."
msgstr "Är något på tok? Hör av dig till oss."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Tyvärr, det går inte att läsa in kontoförslag just nu."
@@ -9113,7 +9214,11 @@ msgstr "Startpaket"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Med startpaket kan du enkelt dela dina favoritflöden och personer med dina vänner."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "Med startpaket kan du dela de flöden och konton du gillar med dina vänner."
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "Med startpaket kan du dela de flöden och konton du gillar med dina vänner."
@@ -9181,11 +9286,11 @@ msgstr "Prenumerera på @{0} för att använda dessa etiketter:"
msgid "Subscribe to account activity"
msgstr "Prenumerera på kontons aktivitet"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Prenumerera på etikettsättare"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Prenumerera på den här etikettsättaren"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Föreslagna konton"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Föreslaget åt dig"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Suggestivt"
@@ -9354,8 +9459,8 @@ msgstr "Villkor"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Användarvillkor"
@@ -9403,12 +9508,12 @@ msgstr "Det användarnamnet är redan taget"
msgid "That's all, folks!"
msgstr "Det var allt!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Det var allt!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Kontot kommer att kunna interagera med dig om du häver blockeringen."
@@ -9447,7 +9552,7 @@ msgstr "Upptäck-flödet"
msgid "The Discover feed now knows what you like"
msgstr "Nu vet Upptäck-flödet vad du gillar"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Du får en bättre upplevelse i appen. Ladda ner Bluesky nu och vi ser till att du kan fortsätta från där du lämnade."
@@ -9527,7 +9632,7 @@ msgstr "Tema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "Det finns en gräns för hur ofta du kan ändra ditt födelsedatum. Vänta en dag eller två innan du försöker igen."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Det finns ingen tidsgräns för inaktivering av kontot. Kom tillbaka när du vill."
@@ -9711,6 +9816,10 @@ msgstr "Det här innehållet kan inte visas utan ett Bluesky-konto."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Den här konversationen är med ett raderat eller avaktiverat konto. Tryck för att se alternativ"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "Utkastet kommer att raderas permanent."
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Den här e-postadressen är redan associerad med ditt konto."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Det här flödet är tomt! Du kanske borde följa fler användare eller justera dina språkinställningar."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Det här flödet är tomt."
@@ -9798,7 +9907,7 @@ msgstr "Den här listan är tom."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Den här modereringstjänsten är inte tillgänglig. Se nedan för mer information. Kontakta oss om problemet kvarstår."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Det här inlägget har <0>{0}0> som angivet skapelsedatum, men registrerades på Bluesky först den <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr "Det här inlägget har raderats av dess författare"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Det här inlägget kommer att hållas dolt från flöden och trådar. Det här kan inte ångras."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Författaren till det här inlägget har inaktiverat citatinlägg."
@@ -9834,7 +9943,7 @@ msgstr "Det här svaret kommer att läggas i en dold sektion längst ner i tråd
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Den här tjänsten har inte tillhandahållit några användarvillkor eller någon integritetspolicy."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "Den här tjänsten stöds inte medans livefunktionen är i beta. Tillåtna tjänster: {formatted}."
@@ -9900,8 +10009,8 @@ msgstr "Det här tar bort ditt inlägg från citatinlägget för alla användare
msgid "Thread options"
msgstr "Trådalternativ"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Trådinställningar"
@@ -9951,7 +10060,7 @@ msgstr "Idag"
msgid "Toggle to enable or disable adult content"
msgstr "Växla mellan att tillåta eller inaktivera vuxet innehåll"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Sätter på eller stänger av ljudet"
@@ -9988,8 +10097,8 @@ msgstr "Ämne"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Översätt"
@@ -10091,15 +10200,15 @@ msgstr "Otillgänglig flödesinformation"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Häv blockering"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Häv blockering"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Häv blockering av konto"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Häv blockering av konto?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Ångra"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Ångra"
@@ -10142,7 +10255,7 @@ msgstr "Ångra återpublicering"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Ångra återpublicering ({0, plural, one {# återpublicering} other {# återpubliceringar}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Sluta följ {0}"
@@ -10151,7 +10264,7 @@ msgstr "Sluta följ {0}"
msgid "Unfollow account"
msgstr "Sluta följ konto"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Slutar följa användaren"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Sluta gilla"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Sluta gilla ({0, plural, one {# gillamarkering} other {# gillamarkeringar}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Sluta ignorera lista"
msgid "Unmute thread"
msgstr "Sluta ignorera tråd"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Sätt på ljudet på videoklippet"
@@ -10276,7 +10389,7 @@ msgstr "Lossade lista"
msgid "Unsnooze email reminder"
msgstr "Återaktivera påminnelse om e-post"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Sluta prenumerera"
@@ -10285,7 +10398,7 @@ msgstr "Sluta prenumerera"
msgid "Unsubscribe from list"
msgstr "Sluta prenumerera på lista"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Sluta prenumerera på den här etikettsättaren"
@@ -10293,7 +10406,7 @@ msgstr "Sluta prenumerera på den här etikettsättaren"
msgid "Unsubscribed from list"
msgstr "Avslutade prenumeration på lista"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Videotypen stöds inte: {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "Ladda upp från Filer"
msgid "Upload from Library"
msgstr "Ladda upp från Bibliotek"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Laddar upp bilder…"
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Laddar upp miniatyrbild av länk…"
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Laddar upp video…"
@@ -10389,8 +10506,8 @@ msgstr "Använd förvald leverantör"
msgid "Use in-app browser"
msgstr "Använd appens inbyggda webbläsare"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Öppna länkar i appens inbyggda webbläsare"
@@ -10445,6 +10562,10 @@ msgstr "Användaren blockerar dig"
msgid "User list by {0}"
msgstr "Användarlista av {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr "Användarlista av {0}"
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Användarlista av dig"
@@ -10597,8 +10718,8 @@ msgstr "Verifierar…"
msgid "Version {0}"
msgstr "Version {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Videoklipp"
@@ -10614,20 +10735,24 @@ msgstr "Videoflöde"
msgid "Video from {0}: {text}"
msgstr "Videoklipp från {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "Videoklipp från {0}. Tryck för att spela eller pausa videoklippet"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "TV-spel"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Videoklippet är pausat"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Videoklippet spelas upp"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Videoklippet hittades inte."
@@ -10635,11 +10760,11 @@ msgstr "Videoklippet hittades inte."
msgid "Video settings"
msgstr "Inställningar för videoklipp"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Videoklipp uppladdat"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Videoklipp: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Videoklipp: {0}"
msgid "Videos"
msgstr "Videoklipp"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "Videoklipp får inte vara längre än 3 minuter."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Visa"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Visa {0}s avatar"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Visa {0}s profil"
@@ -10708,7 +10833,7 @@ msgstr "Visa mer"
msgid "View more trending videos"
msgstr "Visa fler trendande videoklipp"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "Visa inlägg"
@@ -10788,7 +10913,7 @@ msgstr "Våldsamt eller hotfullt innehåll"
msgid "Visit site"
msgstr "Besök webbplats"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Gå till dina notisinställningar"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Vi har problem med att initiera ålderskontrollen för ditt konto. <0>Kontakta supporten0> för hjälp."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Vi har nätverksproblem, försök igen"
@@ -10968,7 +11093,7 @@ msgstr "Vi beklagar, men vi kunde inte läsa in dina ignorerade ord just nu. Fö
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Vi beklagar, men din sökning kunde inte slutföras. Försök igen om några minuter."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Vi beklagar! Inlägget som du vill svara på har raderats."
@@ -10977,7 +11102,7 @@ msgstr "Vi beklagar! Inlägget som du vill svara på har raderats."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Vi beklagar! Vi kan inte hitta den sida du letade efter."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Vi beklagar! Du kan inte prenumerera på fler än tjugo etikettsättare, och du har nått den övre gränsen."
@@ -11018,10 +11143,9 @@ msgstr "Vad har du för intressen?"
msgid "What do you want to call your starter pack?"
msgstr "Vad vill du att ditt startpaket ska heta?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Vad händer?"
@@ -11097,6 +11221,14 @@ msgstr "Varför borde den här användaren granskas?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Vill du blockera den här användaren och/eller radera den här konversationen?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "Vill du spara det här som ett utkast innan du går till dina utkast?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "Vill du spara det här som ett utkast så att du kan fortsätta på det senare?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Skriv ett meddelande"
msgid "Write a post"
msgstr "Skriv ett inlägg"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Skriv inlägg"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Skriv ditt svar"
@@ -11133,8 +11265,8 @@ msgstr "www.mylivestream.tv"
msgid "Yes"
msgstr "Ja"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Ja, inaktivera"
@@ -11188,7 +11320,7 @@ msgstr "Du står i kö."
msgid "You are Live"
msgstr "Du sänder live"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Du sänder inte längre live"
@@ -11200,7 +11332,7 @@ msgstr "Du har inte behörighet att ladda upp videoklipp."
msgid "You are not following anyone yet"
msgstr "Du följer inte någon ännu"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Du sänder nu live!"
@@ -11255,11 +11387,11 @@ msgstr "Du kan nu välja att få notiser när specifika personer publicerar inl
msgid "You can now sign in with your new password."
msgstr "Du kan nu logga in med ditt nya lösenord."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "Du kan endast välja en gif-bild åt gången."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "Du kan endast välja ett videoklipp åt gången."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Du kan återaktivera ditt konto för att fortsätta logga in. Din profil och dina inlägg kommer att vara synliga för andra användare."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "Du kan välja upp till {MAX_IMAGES, plural, other {# bilder}} totalt."
@@ -11317,7 +11449,7 @@ msgstr "Du har blockerat den här användaren"
msgid "You have blocked this user. You cannot view their content."
msgstr "Du har blockerat den här användaren. Du kan inte se användarens innehåll."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Du har helt inaktiverat notiser för svar, citat och omnämnanden, så den här fliken uppdateras inte längre. För att justera detta, gå till dina <0>notisinställningar0>."
@@ -11376,6 +11508,14 @@ msgstr "Din e-postadress har verifierats utan problem. Du kan stänga den här d
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Du har för tillfället nått gränsen för videouppladdningar. Försök igen senare."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "Du har osparade ändringar i det här utkastet. Vill du spara dem?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "Du har osparade ändringar. Vill du spara dem innan du går till dina utkast?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Du har inte skapat ett startpaket ännu!"
@@ -11437,7 +11577,7 @@ msgstr "Du måste vara {MIN_ACCESS_AGE} år eller äldre för att skapa ett kont
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Du måste vara minst 13 år för att använda Bluesky. Läs våra <0>användarvillkor0> för mer information."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Du måste följa minst sju andra personer för att generera ett startpaket."
@@ -11449,7 +11589,7 @@ msgstr "Du måste slutföra en ålderskontroll för att få tillgång till den h
msgid "You must grant access to your photo library to save a QR code"
msgstr "Du måste ge åtkomst till ditt fotobibliotek för att spara en QR-kod"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "Du måste tillåta åtkomst till ditt mediebibliotek."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Du står i kö"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Du är inloggad med ett applösenord. Logga in med ditt vanliga lösenord för att fortsätta inaktiveringen av ditt konto."
@@ -11589,7 +11729,7 @@ msgstr "Du har nått din dagliga gräns för videouppladdningar (för många byt
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Du har nått din dagliga gräns för videouppladdningar (för många videoklipp)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Det finns inga fler videoklipp att titta på. Det kanske är dags för att ta en paus?"
@@ -11625,7 +11765,7 @@ msgstr "Din omprövningsbegäran har skickats. Du kommer att meddelas via e-post
msgid "Your birth date"
msgstr "Ditt födelsedatum"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Din webbläsare stöder inte videoformatet. Försök med en annan webbläsare."
@@ -11692,8 +11832,8 @@ msgstr "Ditt fullständiga användarnamn blir <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Dina intressen"
@@ -11731,11 +11871,11 @@ msgstr "Din ändring av lösenordet lyckades! Använd ditt nya lösenord när du
msgid "Your password must be at least 8 characters long."
msgstr "Ditt lösenord måste vara minst 8 tecken långt."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "Ditt inlägg har skickats"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "Dina inlägg har skickats"
@@ -11752,11 +11892,11 @@ msgstr "Din profilbild"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "Din profilbild i mitten, omgiven av andra användares profilbilder i ringar runt omkring"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Din profil, dina inlägg, flöden och listor kommer inte längre att vara synliga för andra Bluesky-användare. Du kan återaktivera ditt konto när som helst genom att logga in."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "Ditt svar har skickats"
diff --git a/src/locale/locales/th/messages.po b/src/locale/locales/th/messages.po
index 2589971ed3..ece091903f 100644
--- a/src/locale/locales/th/messages.po
+++ b/src/locale/locales/th/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: th\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Thai\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# รีโพสต์} other {# รีโพสต์
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr ""
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
@@ -112,15 +116,15 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr ""
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
@@ -432,7 +436,7 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "เพิ่มอีก {0} คนเพื่อดำเนินก
msgid "Add {displayName} to starter pack"
msgstr "เพิ่ม {displayName} ไปยังชุดเริ่มต้น"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "เพื่มคำเตือนเกี่ยวกับเนื้อหา"
@@ -754,11 +763,11 @@ msgstr "เพิ่มข้อความแสดงแทน (ไม่บ
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "เพิ่มรหัสผ่านแอป"
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr ""
@@ -879,10 +888,10 @@ msgstr ""
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "เนื้อหาสำหรับผู้ใหญ่ (18+)"
@@ -894,8 +903,8 @@ msgstr "เนื้อหาผู้ใหญ่ (18+) สามารถเ
msgid "Adult content is disabled."
msgstr "ปิดเนื้อหาสำหรับผู้ใหญ่"
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr ""
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr ""
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "เข้าสู่ระบบของ @{0} เรียบร้อยแล้ว"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr ""
msgid "Alt text"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr ""
@@ -1059,7 +1068,7 @@ msgstr "อีเมลได้ถูกส่งไปยัง {0} แล้
msgid "An error has occurred"
msgstr "เกิดข้อผิดพลาด"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "เกิดข้อผิดพลาด"
@@ -1067,7 +1076,7 @@ msgstr "เกิดข้อผิดพลาด"
msgid "An error occurred while compressing the video."
msgstr "เกิดข้อผิดพลาดขณะบีบอัดวิดีโอ"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "เกิดข้อผิดพลาดขณะสร้างชุดเริ่มต้นของคุณ ต้องการลองอีกครั้งหรือไม่?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "เกิดข้อผิดพลาดขณะโหลดวิดีโอ โปรดลองอีกครั้งในภายหลัง"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "เกิดข้อผิดพลาดขณะโหลดวิดีโอ โปรดลองอีกครั้ง"
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "สัตว์"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "ภาพเคลื่อนไหว GIF"
@@ -1306,12 +1315,12 @@ msgstr "ใช้ฟีดที่แนะนำตามค่าเริ่
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr ""
@@ -1332,11 +1341,11 @@ msgstr "คุณแน่ใจหรือว่าต้องการลบ
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "คุณแน่ใจหรือว่าต้องการออกจากการสนทนานี้? ข้อความของคุณจะถูกลบสำหรับคุณ แต่ไม่ใช่สำหรับผู้เข้าร่วมคนอื่น"
@@ -1344,11 +1353,7 @@ msgstr "คุณแน่ใจหรือว่าต้องการออ
msgid "Are you sure you want to remove this from your feeds?"
msgstr "คุณแน่ใจหรือว่าต้องการลบสิ่งนี้ออกจากฟีดของคุณ?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "คุณแน่ใจหรือว่าต้องการลบร่างนี้?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -1364,7 +1369,7 @@ msgstr ""
msgid "Art"
msgstr "ศิลปะ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "ภาพนู้ดที่เป็นศิลปะหรือไม่ใช่ภาพอนาจาร"
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr ""
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "กลับ"
@@ -1578,7 +1585,7 @@ msgstr "บล็อก"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr ""
@@ -1623,7 +1630,7 @@ msgstr ""
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky จะเลือกชุดบัญชีที่แนะนำจากผู้คนในเครือข่ายของคุณ"
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "เรียกดูฟีดเพิ่มเติมในหน้าค้นหา"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "เรียกดูข้อเสนอเพิ่มเติม"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "เรียกดูข้อเสนอเพิ่มเติมในหน้าค้นหา"
@@ -1770,8 +1777,8 @@ msgstr ""
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "ยกเลิกการค้นหา"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "ไม่สามารถโต้ตอบกับผู้ใช้ที่ถูกบล็อก"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "แชท"
@@ -1989,7 +1996,7 @@ msgstr ""
msgid "Choose Feeds"
msgstr "เลือกฟีด"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "เลือกให้ฉัน"
@@ -2096,6 +2103,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr ""
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "ปิดกล่องโต้ตอบ GIF"
msgid "Close image"
msgstr "ปิดภาพ"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "ปิดโปรแกรมดูภาพ"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "ปิดการแจ้งเตือนการอัปเดตรหัสผ่าน"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2242,12 +2251,12 @@ msgstr "เสร็จสิ้นการอบรมและเริ่ม
msgid "Complete the challenge"
msgstr "ทำให้สำเร็จตามความท้าทาย"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2264,11 @@ msgstr ""
msgid "Compose reply"
msgstr "สร้างการตอบกลับ"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr ""
@@ -2263,7 +2276,6 @@ msgstr ""
msgid "Configure content filtering setting for category: {name}"
msgstr "ตั้งค่าการกรองเนื้อหาสำหรับหมวดหมู่: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "ตั้งค่าใน <0>การตั้งค่าการดูแล0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr ""
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "คำเตือนเนื้อหา"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "คำเตือนเนื้อหา"
@@ -2401,7 +2413,7 @@ msgstr "แบ็คดรอปเมนูบริบท คลิกเพ
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "ดำเนินการต่อ"
@@ -2420,7 +2432,7 @@ msgstr "ดำเนินการต่อเธรด..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "ไม่สามารถออกจากการสนทนาได้"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "ไม่สามารถโหลดฟีดได้"
@@ -2643,8 +2655,8 @@ msgstr "สร้าง QR โค้ดสำหรับชุดเริ่
msgid "Create a starter pack"
msgstr "สร้างชุดเริ่มต้น"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "สร้างชุดเริ่มต้นสำหรับฉั
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "สร้างอันใหม่"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "สร้างบัญชีใหม่"
@@ -2772,7 +2784,7 @@ msgstr "วันเกิด"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "ปิดการใช้งานบัญชี"
@@ -2871,7 +2883,7 @@ msgstr "ลบบัญชีของฉัน"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "ลบโพสต์"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "ปิดคำบรรยาย"
@@ -2996,8 +3008,11 @@ msgstr "ปิดใช้งาน"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "ละทิ้ง"
@@ -3006,11 +3021,12 @@ msgstr "ละทิ้ง"
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "ละทิ้งร่างข้อความหรือไม่?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr ""
@@ -3037,7 +3053,7 @@ msgstr "ปิด"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "ปิดข้อผิดพลาด"
@@ -3049,11 +3065,16 @@ msgstr "ปิดคู่มือเริ่มต้นใช้งาน"
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr ""
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr "แตะสองครั้งเพื่อปิดหน้าต่าง"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "ดาวน์โหลด Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "ดาวน์โหลดไฟล์ CAR"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "ลากเพื่อเพิ่มรูปภาพ"
@@ -3285,13 +3313,13 @@ msgstr "แก้ไขการตั้งค่าการโต้ตอบ
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "แก้ไขโปรไฟล์"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "แก้ไขโปรไฟล์"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "อนุญาตซับไตเติ้ล"
@@ -3421,13 +3449,13 @@ msgstr "อนุญาตซับไตเติ้ล"
msgid "Enable this source only"
msgstr "อนุญาตแหล่งที่มานี้เท่านั้น"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr ""
@@ -3464,7 +3492,7 @@ msgstr "ป้อนคำหรือแท็ก"
msgid "Enter code"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr ""
@@ -3501,7 +3529,7 @@ msgstr ""
msgid "Enter your username and password"
msgstr "ใส่ชื่อผู้ใช้ของคุณและรหัสผ่าน"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr ""
@@ -3509,7 +3537,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr ""
@@ -3570,7 +3598,7 @@ msgstr "ไม่รวมผู้ใช้ที่คุณติดตาม
msgid "Excludes users you follow"
msgstr "ไม่รวมผู้ใช้ที่คุณติดตาม"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "ออกจากโหมดเต็มหน้าจอ"
@@ -3578,11 +3606,7 @@ msgstr "ออกจากโหมดเต็มหน้าจอ"
msgid "Exits account deletion process"
msgstr "ออกจากกระบวนการลบบัญชี"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "ออกจากการดูรูปภาพ"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "ขยายข้อความอธิบายภาพ"
@@ -3598,11 +3622,11 @@ msgstr "ขยายหรือลดขนาดโพสต์ทั้งห
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -3639,7 +3663,7 @@ msgstr "ภาพเปลือยชัดเจน"
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
@@ -3657,8 +3681,8 @@ msgstr "ส่งออกข้อมูลของฉัน"
msgid "Export My Data"
msgstr "ส่งออกข้อมูลของฉัน"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr ""
@@ -3730,7 +3754,7 @@ msgstr "การลบโพสต์ล้มเหลว โปรดลอ
msgid "Failed to delete starter pack"
msgstr "การลบตัวเริ่มต้นล้มเหลว"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "ฟีด"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "ฟีดโดย {0}"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "ข้อเสนอแนะ"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "ฟีด"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr "กำลังสรุปผล"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr ""
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "ติดตาม"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "ติดตาม {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr ""
@@ -4133,7 +4166,7 @@ msgstr "ติดตามบัญชี"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "ติดตามบัญชี"
msgid "Follow all"
msgstr "ติดตามทั้งหมด"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "ติดตามคุณกลับ"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "ผู้ติดตามที่คุณรู้จัก"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "ติดตาม"
msgid "Following {0}"
msgstr "ติดตาม {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "การตั้งค่าฟีดการติดตาม"
@@ -4264,7 +4297,7 @@ msgstr ""
msgid "For the best experience, we recommend using the theme font."
msgstr "เพื่อประสบการที่ดีของคุณ เราแนะนำให้ใช้ฟอนต์ธีม"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "จาก <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "สร้างชุดเริ่มต้น"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "รับความช่วยเหลือ"
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr ""
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "ทำให้โปรไฟล์ของคุณมีความน่าสนใจขึ้น"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "กลับ"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "กราฟฟิคมีเดีย"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "การช่วยเหลือ"
@@ -4632,9 +4670,9 @@ msgstr "ลิสต์ที่ซ่อนไว้"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "ซ่อนลิสต์ผู้ใช้"
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr ""
@@ -4760,9 +4798,9 @@ msgstr "รอสักครู่! เรากำลังเปิดให
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "หน้าหลัก"
@@ -4819,7 +4857,7 @@ msgstr "ฉันเข้าใจแล้ว"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "หากข้อความแทนภาพยาว จะทำการเปลี่ยนสถานะการขยายข้อความแทนภาพ"
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "หากคุณพยายามเปลี่ยนแฮนด์เดิ้ลของคุณ ให้ทำการเปลี่ยนก่อนที่คุณจะหยุดใช้งานบัญชีนี้"
@@ -4996,6 +5034,10 @@ msgstr ""
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "ตอนนี้มีแค่คุณแล้ว! เพิ่มผู้คนในชุดเริ่มต้นของคุณโดยการค้นหาด้านบนนี้"
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr ""
@@ -5122,20 +5164,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "มาร์คโดย {0}"
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "มาร์คโดยผู้สร้าง"
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "มาร์คไว้"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr ""
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับการโฮสต์ข้อมูลด้วยตัวเอง (PDS)"
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr ""
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับข้อควรระวัง"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "เรียนรู้เพิ่มเติม"
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "ออก"
@@ -5286,7 +5328,7 @@ msgstr "ออก Bluesky"
msgid "left to go."
msgstr "ปล่อยไปเถอะ"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "ให้ฉันเลือกเถอะ"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr ""
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "ชอบในโพสต์นี้"
@@ -5474,7 +5516,7 @@ msgstr "ลิสต์เปิดเสียง"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "ลิสต์"
@@ -5496,10 +5538,20 @@ msgstr ""
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "โหลดเพิ่มเติม"
msgid "Load more suggested feeds"
msgstr "โหลดฟีดที่แนะนำเพิ่มเติม"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "โหลดการแจ้งเตือนใหม่"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr ""
@@ -5600,8 +5652,8 @@ msgstr "สร้างสักหนึ่งอันสำหรับฉั
msgid "Make sure this is where you intend to go!"
msgstr "โปรดตรวจสอบให้แน่ใจว่านี่คือจุดหมายที่คุณต้องการไป"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr ""
@@ -5638,7 +5690,16 @@ msgstr ""
msgid "Media"
msgstr "สื่อ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
@@ -5653,7 +5714,7 @@ msgstr "ผู้ใช้ที่ถูกกล่าวถึง"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr ""
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "วีดีโอ"
msgid "Music"
msgstr "เพลง"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "ไปยังหน้าถัดไป"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "สำรวจโปรไฟล์ของคุฯ"
@@ -5983,6 +6049,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
@@ -6018,12 +6085,12 @@ msgstr "ข้อความใหม่"
msgid "New password"
msgstr "รหัสผ่านใหม่"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "โพสต์ใหม่"
@@ -6085,7 +6152,7 @@ msgstr "ข่าวสาร"
msgid "Next"
msgstr "ถัดไป"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "ภาพถัดไป"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "ไม่มีระบบชื่อโดเมน"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6136,7 +6207,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "ยังไม่มีสิ่งที่ชอบ"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "ไม่ติดตาม {0} อีกต่อไป"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "ยังไม่มีโควท"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "ไม่มีผลลัพธ์"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "ไม่มีผลลัพธ์"
@@ -6238,7 +6309,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr "ไม่พบผลลัพธ์สำหรับ \"{search}\""
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "ไม่เป็นไร ขอบคุณ"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr ""
msgid "Not Found"
msgstr "ไม่พบ"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "โน้ตเกี่ยวกับการแชร์"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "การตั้งค่าการแจ้งเตือน"
@@ -6349,10 +6424,10 @@ msgstr "เสียงการแจ้งเตือน"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "การแจ้งเตือน"
@@ -6368,8 +6443,8 @@ msgstr "ตอนนี้"
msgid "Now"
msgstr "ตอนนี้"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "การโป๊เปลือย"
@@ -6390,7 +6465,7 @@ msgstr "ไม่น้าาา!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "ตกลง"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "ตกลง"
@@ -6417,23 +6492,23 @@ msgstr "เปิด<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "รีเซ็ตออนบอร์ด"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "ภาพหนึ่งหรือมากกว่าขาดข้อความแทน"
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr ""
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "อุ้ย~ เกิดข้อผิดพลาดจ้า"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "อ๊ะ!"
msgid "Open avatar creator"
msgstr "เปิดการสร้างอวาตาร์"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "เปิดการตั้งค่าการสนทนา"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "เปิดการเลือกอีโมจิ"
@@ -6557,7 +6636,7 @@ msgstr "เปิด system log"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr ""
@@ -6589,25 +6668,25 @@ msgstr ""
msgid "Opens composer"
msgstr "เปิด composer"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "เปิดขั้นตอนเพื่อสร้างบัญชี Bluesky ใหม่"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "เปิดเพื่อสร้างบัญชี Bluesky ที่มีอยู่แล้ว"
@@ -6620,7 +6699,7 @@ msgstr "เปิดข้อความเลือก GIF"
msgid "Opens helpdesk in browser"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "เปิดการรีเซ็ตรหัสผ่าน"
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "อื่น ๆ"
@@ -6763,13 +6846,13 @@ msgstr "อัพเดตรหัสผ่าน"
msgid "Password updated!"
msgstr "อัพเดตรหัสผ่านแล้ว!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "พัก"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "พักวีดีโอ"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "การถ่ายภาพ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "ภาพที่เหมาะสำหรับเนื้อหาผู้ใหญ่ (18+)"
@@ -6874,9 +6957,9 @@ msgstr "ฟีตที่ปักหมุด"
msgid "Pinned to your feeds"
msgstr "ปักหมุดไปที่ฟีต"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "เล่น"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "เล่น {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "เล่นวิดีโอ"
@@ -6893,11 +6976,11 @@ msgstr "เล่นวิดีโอ"
msgid "Play Video"
msgstr "เล่นวิดีโอ"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr ""
@@ -6909,7 +6992,7 @@ msgstr "เล่น GIF"
msgid "Plays the video"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "การเมือง"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "สื่ออนาจาร"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "โพสต์"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "โพสต์"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr ""
@@ -7217,7 +7300,7 @@ msgstr "กดเพื่อดูผู้ติดตามในบัญช
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "ภาพก่อนหน้า"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "นโยบายความเป็นส่วนตัว"
@@ -7266,7 +7349,11 @@ msgstr "นโยบายความเป็นส่วนตัว"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr ""
@@ -7280,10 +7367,10 @@ msgstr "ดำเนินการ..."
msgid "profile"
msgstr "ข้อมูลส่วนตัว"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "ข้อมูลส่วนตัว"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr ""
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "โควทโพสต์นี้"
@@ -7385,7 +7473,7 @@ msgstr "ยกเลิกการโควท"
msgid "Quotes"
msgstr "โควท"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "โควทโพสต์นี้"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr ""
@@ -7720,13 +7808,13 @@ msgstr "ปิดการตอบกลับแล้ว"
msgid "Replies to this post are disabled."
msgstr "การตอบกลับโพสต์นี้ถูกปิด"
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "การตอบกลับ"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -7892,7 +7980,7 @@ msgstr "รีโพสต์โดยคุณ"
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "รีโพสต์ของโพสต์นี้"
@@ -7996,14 +8084,14 @@ msgstr "ลองทำกิจกรรมล่าสุดซึ่งเก
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "กลับไปยังหน้าก่อนหน้า"
msgid "Returns to home page"
msgstr "กลับไปยังหน้าแรก"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "กลับไปยังหน้าก่อนหน้า"
@@ -8063,7 +8151,7 @@ msgstr ""
msgid "Save"
msgstr "บันทึก"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "บันทึก"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "บันทึกการเปลี่ยนแปลง"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "บันทึกที่ฟีตของฉัน"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "เลื่อนไปข้างบนสุด"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "ค้นหา"
@@ -8164,7 +8269,7 @@ msgstr "ค้นหา"
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr ""
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "ค้นหาโปรไฟล์"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,12 +8388,12 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr "มองหางานใน Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "เลือกภาษาที่คุณต้องการสำ
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "ส่งอีเมล"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "ส่งข้อเสนอแนะ"
@@ -8566,7 +8671,7 @@ msgstr "ตั้งอีเมลเพื่อการรีเซตรห
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "การตั้งค่า"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "กิจกรรมทางเพศ หรือการเปลือยที่มีลักษณะทางเพศ"
@@ -8634,7 +8739,7 @@ msgstr "การชักชวนทางเพศ"
msgid "Share"
msgstr "แชร์"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "แชร์"
@@ -8712,13 +8817,13 @@ msgstr "แชร์ฟีดที่คุณชื่นชอบ!"
msgid "Shared Preferences Tester"
msgstr "โปรแกรมทดสอบการตั้งค่าแชร์"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "แสดง"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "แสดงข้อความแทน"
@@ -8820,7 +8925,7 @@ msgstr "แสดงคำเตือนและกรองจากฟีด
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr ""
@@ -8828,8 +8933,8 @@ msgstr ""
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
@@ -8842,14 +8947,14 @@ msgstr ""
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "ต้องเข้าสู่ระบบ"
msgid "Signed in as @{0}"
msgstr "เข้าสู่ระบบในชื่อ @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "บัญชีที่คล้ายกัน"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "นักพัฒนาซอฟต์แวร์"
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "ฟีดอื่น ๆ ที่คุณอาจชอบ"
@@ -8994,7 +9095,7 @@ msgstr "เกิดข้อผิดพลาดบางอย่าง"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "เกิดข้อผิดพลาดบางอย่าง กรุณาลองอีกครั้ง"
@@ -9020,7 +9121,7 @@ msgstr ""
msgid "Something wrong? Let us know."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "ชุดเริ่มต้น"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "ชุดเริ่มต้นช่วยให้คุณแชร์ฟีดและผู้คนที่คุณชื่นชอบกับเพื่อนๆ ได้อย่างง่ายดาย"
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "สมัครสมาชิก @{0} เพื่อใช้ป้า
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "สมัครสมาชิกผู้สร้างป้ายกำกับ"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "สมัครสมาชิกผู้สร้างป้ายกำกับนี้"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "แนะนำสำหรับคุณ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "ชี้นำ"
@@ -9354,8 +9459,8 @@ msgstr "เงื่อนไข"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "เงื่อนไขการให้บริการ"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "มีแค่นี้แหละท่านผู้ชม!!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "บัญชีจะสามารถโต้ตอบกับคุณได้หลังจากที่ปลดบล็อกแล้ว"
@@ -9447,7 +9552,7 @@ msgstr "ฟีดที่ค้นพบ"
msgid "The Discover feed now knows what you like"
msgstr "ฟีดที่ค้นพบตอนนี้รู้ว่าคุณชอบอะไร"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "สัมผัสประสบการณ์ที่ดีกว่าโดยการดาวน์โหลด Bluesky ตอนนี้เลย แล้วเราจะกลับมาในจุดที่คุณค้างไว้"
@@ -9527,7 +9632,7 @@ msgstr "ธีม"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "ยังไม่มีเวลาจำกัดสำหรับการปิดใช้งานบัญชี คุณสามารถกลับมาได้ตลอดเวลา"
@@ -9711,6 +9816,10 @@ msgstr ""
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr ""
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr ""
@@ -9798,7 +9907,7 @@ msgstr ""
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr ""
@@ -9834,7 +9943,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "นี่จะลบโพสต์ของคุณออกจาก
msgid "Thread options"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "การตั้งค่าเธรด"
@@ -9951,7 +10060,7 @@ msgstr ""
msgid "Toggle to enable or disable adult content"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr ""
@@ -9988,8 +10097,8 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr ""
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "ปลดบล็อก"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "ปลดบล็อก"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "ปลดบล็อกบัญชี"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "ปลดบล็อกบัญชีหรือไม่?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "ยกเลิกการแชร์ซ้ำ"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "เลิกติดตาม {0}"
@@ -10151,7 +10264,7 @@ msgstr "เลิกติดตาม {0}"
msgid "Unfollow account"
msgstr "เลิกติดตามบัญชี"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr ""
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr ""
msgid "Unmute thread"
msgstr "เปิดเสียงกระทู้"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "เปิดเสียงวิดีโอ"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "เลิกสมัครรับข้อมูล"
@@ -10285,7 +10398,7 @@ msgstr "เลิกสมัครรับข้อมูล"
msgid "Unsubscribe from list"
msgstr "เลิกสมัครรับข้อมูลจากลิสต์"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "เลิกสมัครรับข้อมูลจากผู้ทำฉลากนี้"
@@ -10293,7 +10406,7 @@ msgstr "เลิกสมัครรับข้อมูลจากผู้
msgid "Unsubscribed from list"
msgstr "เลิกสมัครรับข้อมูลจากลิสต์แล้ว"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "อัปโหลดจากไฟล์"
msgid "Upload from Library"
msgstr "อัปโหลดจากไลบรารี"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr ""
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr ""
@@ -10389,8 +10506,8 @@ msgstr "ใช้ผู้ให้บริการเริ่มต้น"
msgid "Use in-app browser"
msgstr "ใช้เบราว์เซอร์ในแอป"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr ""
@@ -10445,6 +10562,10 @@ msgstr "ผู้ใช้บล็อกคุณ"
msgid "User list by {0}"
msgstr "ลิสต์ผู้ใช้โดย {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "ลิสต์ผู้ใช้โดยคุณ"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "วิดีโอ"
@@ -10614,20 +10735,24 @@ msgstr ""
msgid "Video from {0}: {text}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "เกมวิดีโอ"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "ไม่พบวิดีโอ"
@@ -10635,11 +10760,11 @@ msgstr "ไม่พบวิดีโอ"
msgid "Video settings"
msgstr "การตั้งค่าวิดีโอ"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "วิดีโอ: {0}"
@@ -10647,23 +10772,23 @@ msgstr "วิดีโอ: {0}"
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "ดูอวตาร์ของ {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "ดูโปรไฟล์ของ {0}"
@@ -10708,7 +10833,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "เรากำลังประสบปัญหาเครือข่าย โปรดลองอีกครั้ง"
@@ -10968,7 +11093,7 @@ msgstr "ขออภัย เราไม่สามารถโหลดค
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "ขออภัย การค้นหาของคุณไม่สามารถเสร็จสมบูรณ์ได้ โปรดลองอีกครั้งในไม่กี่นาที"
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "ขออภัย! โพสต์ที่คุณตอบกลับถูกลบไปแล้ว"
@@ -10977,7 +11102,7 @@ msgstr "ขออภัย! โพสต์ที่คุณตอบกลั
msgid "We're sorry! We can't find the page you were looking for."
msgstr "เราขอโทษ! เราไม่สามารถค้นหาหน้าที่ยังมีอยู่ที่คุณต้องการได้."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "เราขอโทษ! คุณสามารถสมัครสมาชิกได้เพียงยี่สิบผู้ติดป้าย และคุณได้ถึงขีดจำกัดยี่สิบแล้ว."
@@ -11018,10 +11143,9 @@ msgstr "ความสนใจของคุณคืออะไร?"
msgid "What do you want to call your starter pack?"
msgstr "คุณต้องการตั้งชื่อชุดเริ่มต้นของคุณว่าอะไร?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "มีอะไรใหม่?"
@@ -11097,6 +11221,14 @@ msgstr "ทำไมผู้ใช้คนนี้จึงควรได้
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "เขียนข้อความ"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "เขียนโพสต์"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "เขียนคำตอบของคุณ"
@@ -11133,8 +11265,8 @@ msgstr ""
msgid "Yes"
msgstr "ใช่"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "ใช่, ปิดการใช้งาน"
@@ -11188,7 +11320,7 @@ msgstr "คุณอยู่ในคิว."
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11200,7 +11332,7 @@ msgstr "คุณไม่ได้รับอนุญาตให้อัป
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "คุณสามารถลงชื่อเข้าใช้ด้วยรหัสผ่านใหม่ของคุณได้แล้ว"
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "คุณสามารถเปิดใช้งานบัญชีของคุณอีกครั้งเพื่อดำเนินการลงชื่อเข้าใช้ บัญชีและโพสต์ของคุณจะมองเห็นได้โดยผู้ใช้คนอื่น"
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "คุณได้บล็อกผู้ใช้คนนี้"
msgid "You have blocked this user. You cannot view their content."
msgstr "คุณได้บล็อกผู้ใช้คนนี้ คุณไม่สามารถดูเนื้อหาของเขาได้."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "คุณถึงขีดจำกัดการอัปโหลดวิดีโอชั่วคราวแล้ว กรุณาลองอีกครั้งในภายหลัง"
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "คุณยังไม่ได้สร้างชุดเริ่มต้น!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "คุณต้องติดตามผู้อื่นอย่างน้อย 7 คนจึงจะสามารถสร้างชุดเริ่มต้นได้"
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "คุณต้องอนุญาตให้เข้าถึงคลังรูปภาพของคุณเพื่อบันทึกรหัส QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "คุณอยู่ในคิว"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -11589,7 +11729,7 @@ msgstr "คุณถึงขีดจำกัดการอัพโหลด
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "คุณถึงขีดจำกัดการอัพโหลดวิดีโอต่อวันแล้ว (วิดีโอมากเกินไป)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
@@ -11625,7 +11765,7 @@ msgstr ""
msgid "Your birth date"
msgstr "วันเกิดของคุณ"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "เบราว์เซอร์ของคุณไม่รองรับรูปแบบวิดีโอนี้ กรุณาลองใช้เบราว์เซอร์อื่น"
@@ -11692,8 +11832,8 @@ msgstr "ชื่อผู้ใช้เต็มของคุณจะเป
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr ""
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "โปรไฟล์ โพสต์ ฟีด และลิสต์ของคุณจะไม่ปรากฏให้ผู้ใช้ Bluesky คนอื่นเห็นอีกต่อไป คุณสามารถเปิดใช้งานบัญชีของคุณอีกครั้งได้ตลอดเวลาโดยการเข้าสู่ระบบ"
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/tr/messages.po b/src/locale/locales/tr/messages.po
index 49776c18ba..a1907c7ed3 100644
--- a/src/locale/locales/tr/messages.po
+++ b/src/locale/locales/tr/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: tr\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, other {# yeniden gönderi}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, other {# saniye}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, other {# okunmamış öğe}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, other {# okunmamış öğe}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, other {#a}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, other {# gönderi daha}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, other {takipçi}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, other {takip edilen}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, other {beğeni}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, other {beğeni}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, other {gönderi}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, other {alıntı}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, other {yeniden gönderi}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, other {kaydedilme}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0} (Hesap)"
@@ -189,11 +193,11 @@ msgstr "{0} şu tepkiyi verdi: {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} şuna {1} tepkisi verdi: {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0} bir {1} akışı, {2} tarafından beğenilmiş"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0}, bir {1} listesi"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {# kullanıcı}} katıldı!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, other {# dakika}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, other {# okunmamış öğe}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1} 1>ve {2, plural, other {# kişi daha}} başlangıç paketinizde yer alıyor"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, other {takipçi}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, other {takip edilen}}"
@@ -580,6 +584,11 @@ msgstr "Paylaş düğmesinin yanında gönderiyi yer imlerine kaydedebilmenizi s
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "Takip et butonunun yanında bir zil simgesi bulunan bir profil sayfasının ekran görüntüsü; bu, yeni etkinlik bildirimleri özelliğini göstermektedir."
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Devam etmek için {0} tane daha ekleyin"
msgid "Add {displayName} to starter pack"
msgstr "{displayName} adlı kullanıcıyı başlangıç paketine ekle"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Bir içerik uyarısı ekleyin"
@@ -754,11 +763,11 @@ msgstr "Alternatif metin ekle (isteğe bağlı)"
msgid "Add another account"
msgstr "Başka hesap ekle"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Başka gönderi ekle"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "Konuya yeni bir gönderi ekle"
@@ -776,12 +785,12 @@ msgstr "Uygulama Şifresi Ekle"
msgid "Add emoji reaction"
msgstr "Emoji tepkisi ekle"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
-msgstr "Resim ekle"
+msgstr "Görsel ekle"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "Gönderiye medya ekle"
@@ -871,7 +880,7 @@ msgstr "Ek ayrıntılar (1000 karakterle sınırlı)"
msgid "Additional details (limit 300 characters)"
msgstr "Ek ayrıntılar (300 karakterle sınırlıdır)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Yetişkin"
@@ -879,10 +888,10 @@ msgstr "Yetişkin"
msgid "Adult content"
msgstr "Yetişkin içerik"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Yetişkin İçerik"
@@ -894,8 +903,8 @@ msgstr "Yetişkin içerik yalnızca Web üzerinden <0>bsky.app0> etkinleştiri
msgid "Adult content is disabled."
msgstr "Yetişkin içerik devre dışı bırakıldı."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Yetişkin İçerik işaretleri"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "ayse@ornek.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Hepsi"
@@ -1017,7 +1026,7 @@ msgstr "Zaten bir hesabınız mı var?"
msgid "Already signed in as @{0}"
msgstr "Zaten @{0} olarak oturum açıldı"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,13 +1042,13 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Alternatif metin"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Alternatif Metin"
#: src/view/com/composer/photos/Gallery.tsx:261
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
-msgstr "Alternatif metin, görme engelli ve düşük görme yeteneğine sahip kullanıcılar için resimleri tanımlar ve herkes için bağlam sağlamaya yardımcı olur."
+msgstr "Alternatif metin, görme engelli ve düşük görme yeteneğine sahip kullanıcılar için görselleri tanımlar ve herkes için bağlam sağlamaya yardımcı olur."
#: src/view/com/composer/videos/SubtitleDialog.tsx:137
msgid "Alt text must be less than {MAX_ALT_TEXT} characters."
@@ -1059,7 +1068,7 @@ msgstr "{0} adresine bir e-posta gönderildi. Aşağıda girebileceğiniz bir on
msgid "An error has occurred"
msgstr "Bir hata oluştu"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Bir hata oluştu"
@@ -1067,7 +1076,7 @@ msgstr "Bir hata oluştu"
msgid "An error occurred while compressing the video."
msgstr "Video sıkıştırılırken bir hata oluştu."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "Önerilen hesaplar getirilemedi."
@@ -1076,7 +1085,7 @@ msgstr "Önerilen hesaplar getirilemedi."
msgid "An error occurred while fetching the feed."
msgstr "Akış getirilirken bir hata oluştu."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Başlangıç paketiniz oluşturulurken bir hata oluştu. Yeniden denemek ister misiniz?"
@@ -1088,7 +1097,7 @@ msgstr "Öneriyi gizlerken bir hata oluştu. {0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "Video yüklenirken bir hata oluştu. Lütfen daha sonra tekrar deneyin."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Video yüklenirken bir hata oluştu. Lütfen tekrar deneyin."
@@ -1181,7 +1190,7 @@ msgstr "Hayvan istismarı"
msgid "Animals"
msgstr "Hayvanlar"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "Animasyonlu GIF"
@@ -1306,12 +1315,12 @@ msgstr "Önerilen öntanımlı akışları uygula"
msgid "Apply Pull Request"
msgstr "Pull Request'i uygula"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "{0} kaynağından arşivlendi"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Arşivlenmiş gönderi"
@@ -1332,11 +1341,11 @@ msgstr "Bu başlangıç paketini silmek istediğinize emin misiniz?"
msgid "Are you sure you want to discard your changes?"
msgstr "Değişiklikleri iptal etmek istediğinizden emin misiniz?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Bu yazışmayı terk etmek istediğinizden emin misiniz?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Bu yazışmadan ayrılmak istediğinize emin misiniz? Mesajlarınız sizin için silinecek, ancak diğer katılımcı için silinmeyecektir."
@@ -1344,11 +1353,7 @@ msgstr "Bu yazışmadan ayrılmak istediğinize emin misiniz? Mesajlarınız siz
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Bunu akışlarınızdan çıkarmak istediğinize emin misiniz?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Bu taslağı silmek istediğinizden emin misiniz?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Bu taslağı silmek istediğinizden emin misiniz?"
@@ -1364,7 +1369,7 @@ msgstr "<0>{suggestedLanguageName}0> dilinde mi yazıyorsunuz?"
msgid "Art"
msgstr "Sanat"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Sanatsal veya erotik olmayan çıplaklık."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Kuzey Işıkları"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Videoları ve GIFleri otomatik oynat"
@@ -1404,11 +1409,13 @@ msgstr "Kullanılabilir"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Geri"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky iddia edilen tarihin doğruluğunu onaylayamaz."
@@ -1623,7 +1630,7 @@ msgstr "Bluesky Social Hizmet Şartları"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Bluesky bağlantılarınızı şifreli veri olarak tutar. Bağlantılarınızı kaldırmanız bu veriyi anında siler."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky, ağınızdaki kişilerden bir dizi önerilen hesap seçecektir."
@@ -1664,20 +1671,20 @@ msgstr "Site kurallarını ihlal"
msgid "Browse custom feeds"
msgstr "Özelleştirilmiş akışları göster"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "Diğer hesaplara göz at"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Keşfet sayfasında daha fazla akış bul"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Daha çok öneriye göz at"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Keşfet sayfasında daha çok öneriye göz at"
@@ -1770,8 +1777,8 @@ msgstr "Kamera"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Aramayı iptal et"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Engellenen kullanıcıya etkileşime geçilemez"
@@ -1901,9 +1908,9 @@ msgstr "Değişiklikler kaydedildi"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Mesajlar"
@@ -1989,7 +1996,7 @@ msgstr "Alan adı doğrulama yöntemini seçin"
msgid "Choose Feeds"
msgstr "Akışları Seçin"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Benim için seç"
@@ -2096,6 +2103,7 @@ msgstr "Klip 🐴 klop 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Klip 🐴 klop 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "GIF diyalogunu kapat"
msgid "Close image"
msgstr "Resmi kapat"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Resim görüntüleyiciyi kapat"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr "Hoşgeldiniz ekranını kapat"
msgid "Closes password update alert"
msgstr "Şifre güncelleme uyarısını kapatır"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Gönderi düzenleyiciyi kapatır ve gönderi taslağını siler"
@@ -2242,12 +2251,12 @@ msgstr "Onboarding'i tamamlayın ve hesabınızı kullanmaya başlayın"
msgid "Complete the challenge"
msgstr "Meydan okumayı tamamlayın"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Yeni gönderi oluştur"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "{0, plural, other {# karakter}} uzunluğuna kadar gönderiler oluşturun"
@@ -2255,7 +2264,11 @@ msgstr "{0, plural, other {# karakter}} uzunluğuna kadar gönderiler oluşturun
msgid "Compose reply"
msgstr "Yanıt oluştur"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Video sıkıştırılıyor..."
@@ -2263,7 +2276,6 @@ msgstr "Video sıkıştırılıyor..."
msgid "Configure content filtering setting for category: {name}"
msgstr "{name} kategorisi için içerik filtreleme ayarını düzenleyin"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "Canlı yayın kapak görselini düzenle"
@@ -2272,8 +2284,8 @@ msgstr "Canlı yayın kapak görselini düzenle"
msgid "Configured in <0>moderation settings0>."
msgstr "<0>Moderasyon ayarları0>nda düzenleniyor."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "Bağlantılar aktarıldı"
msgid "Contacts removed"
msgstr "Bağlantılar kaldırıldı"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "İçerik ve Medya"
@@ -2389,7 +2401,7 @@ msgstr "Kendine zarar vermeyi özendiren ya da betimleyen içerik"
msgid "Content Warning"
msgstr "İçerik Uyarısı"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "İçerik uyarıları"
@@ -2401,7 +2413,7 @@ msgstr "Bağlam menüsü arkaplanı, menüyü kapatmak için tıklayın."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Devam et"
@@ -2420,7 +2432,7 @@ msgstr "Konuya devam et..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "Tüm tutan bağlantılar takip edilemedi. {0}"
msgid "Could not leave chat"
msgstr "Sohbetten ayrılınamadı"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Akış yüklenemedi"
@@ -2643,8 +2655,8 @@ msgstr "Başlangıç paketi için QR kod oluşturun"
msgid "Create a starter pack"
msgstr "Bir başlangıç paketi oluştur"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "Başlangıç Paketi oluştur"
@@ -2654,12 +2666,12 @@ msgstr "Benim için bir başlangıç paketi oluştur"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Bir tane daha oluştur"
msgid "Create moderation list"
msgstr "Moderasyon listesi oluştur"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Yeni hesap oluştur"
@@ -2772,7 +2784,7 @@ msgstr "Doğum tarihi"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Hesabı devre dışı bırak"
@@ -2871,7 +2883,7 @@ msgstr "Hesabımı sil"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Gönderiyi sil"
@@ -2981,7 +2993,7 @@ msgstr "Bu gönderinin alıntılarını devre dışı bırak"
msgid "Disable replies entirely"
msgstr "Yanıtları tümden devre dışı bırak"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Altyazıları devre dışı bırak"
@@ -2996,8 +3008,11 @@ msgstr "Devre dışı"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Sil"
@@ -3006,11 +3021,12 @@ msgstr "Sil"
msgid "Discard changes?"
msgstr "Değişiklikler silinsin mi?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Taslak silinsin mi?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Gönderi silinsin mi?"
@@ -3037,7 +3053,7 @@ msgstr "Yok say"
msgid "Dismiss banner"
msgstr "Bildirimi gizle"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Hatayı yok say"
@@ -3049,11 +3065,16 @@ msgstr "Başlangıç rehberini gizle"
msgid "Dismiss interests"
msgstr "İlgi alanlarını gizle"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "Canlı etkinlik panelini kapat"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Bu bölümü gizle"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "Bu öneriyi gizle"
@@ -3121,8 +3142,8 @@ msgstr "Merak etmeyin! Tüm mesajlarınız ve ayarlarınız saklandı ve bir yet
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Bir tepki eklemek için mesaja çift dokunun ya da uzun basın"
msgid "Double tap to close the dialog"
msgstr "Bu diyalogu kapatmak için çift dokunun"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Beğenmek için çift dokunun"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Bluesky'ı İndir"
@@ -3164,9 +3185,16 @@ msgstr "CAR dosyasını indir"
msgid "Doxxing"
msgstr "Özel bilgi ifşası"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "Taslaklar"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
-msgstr "Resim eklemek için bırakın"
+msgstr "Görsel eklemek için bırakın"
#: src/components/ageAssurance/useAgeAssuranceCopy.ts:11
msgid "Due to laws in your region, certain features on Bluesky are currently restricted until you're able to verify you're an adult."
@@ -3285,13 +3313,13 @@ msgstr "Gönderi etkileşim ayarlarını düzenle"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Profil düzenle"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Profil Düzenle"
@@ -3413,7 +3441,7 @@ msgstr "Anında bildirimleri etkinleştir"
msgid "Enable quote posts of this post"
msgstr "Bu gönderinin alıntılarını etkinleştir"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Altyazıları etkinleştir"
@@ -3421,13 +3449,13 @@ msgstr "Altyazıları etkinleştir"
msgid "Enable this source only"
msgstr "Yalnızca bu kaynağı etkinleştir"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Gündem başlıklarını etkinleştir"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Keşif akışında (\"Discover\") gündem videolarını etkinleştir"
@@ -3464,7 +3492,7 @@ msgstr "Bir sözcük veya etiket girin"
msgid "Enter code"
msgstr "Kodu girin"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Tam ekran yap"
@@ -3501,7 +3529,7 @@ msgstr "Şifrenizi girin"
msgid "Enter your username and password"
msgstr "Kullanıcı adınızı ve şifrenizi girin"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Tam ekrana geçer"
@@ -3509,7 +3537,7 @@ msgstr "Tam ekrana geçer"
msgid "Entertainment"
msgstr "Eğlence"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Hata"
@@ -3570,7 +3598,7 @@ msgstr "Takip ettiğim kullanıcıları hariç tut"
msgid "Excludes users you follow"
msgstr "Takip ettiğiniz kullanıcıları hariç tutar"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Tam ekrandan çık"
@@ -3578,11 +3606,7 @@ msgstr "Tam ekrandan çık"
msgid "Exits account deletion process"
msgstr "Hesap silme işleminden çıkar"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Resim görünümünden çıkar"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Alternatif metni genişlet"
@@ -3598,11 +3622,11 @@ msgstr "Yanıt verdiğiniz tam gönderiyi genişletin veya daraltın"
msgid "Expand post text"
msgstr "Gönderi metnini genişlet"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Gönderi metnini genişletir ya da daraltır"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "URI'nin bir kayda çözümlenmesi beklendi"
@@ -3639,7 +3663,7 @@ msgstr "Açık cinsel içerikli görseller."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Keşfet"
@@ -3657,8 +3681,8 @@ msgstr "Verilerimi dışa aktar"
msgid "Export My Data"
msgstr "Verilerimi Dışa Aktar"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Harici medya"
@@ -3730,7 +3754,7 @@ msgstr "Gönderi silinemedi, lütfen tekrar deneyin"
msgid "Failed to delete starter pack"
msgstr "Başlangıç paketi silinemedi"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "Önerilen hesaplar tümden takip edilemedi, lütfen tekrar deneyin"
@@ -3829,6 +3853,10 @@ msgstr "Doğrulama kaldırılamadı"
msgid "Failed to resolve location. Please try again."
msgstr "Konum çözümlenemedi. Lütfen tekrar deneyin."
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "Taslak kaydedilemedi"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Akış"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "{0} tarafından besleme"
@@ -3941,7 +3970,7 @@ msgstr "Akış kullanılamıyor"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Geribildirim"
@@ -3958,7 +3987,7 @@ msgstr "Geribildiriminiz akış operatörüne yollandı"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Akışlar"
@@ -4008,6 +4037,10 @@ msgstr "Kimden bildirim alacağınızı filtreleyin"
msgid "Finalizing"
msgstr "Tamamlanıyor"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Sonunda! Sizin için önemli olan gönderileri kaçırmayın. Onları istediğiniz zaman tekrar ziyaret edebilmek için kaydedin."
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "Arkadaşlarımı bul"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Takip edilecek kişiler bulun"
@@ -4098,19 +4131,19 @@ msgstr "Kod giriş alanına odaklan"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Takip et"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "{0} takip et"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "{handle} kullanıcısını takip et"
@@ -4133,7 +4166,7 @@ msgstr "Hesabı takip et"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Hesabı takip et"
msgid "Follow all"
msgstr "Hepsini takip et"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "Tüm hesapları takip et"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Geri takip et"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "Hesapların tümü takip edildi!"
@@ -4195,8 +4228,8 @@ msgstr "Tanıdığın takipçiler"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Takiptekiler"
msgid "Following {0}"
msgstr "{0} takip ediliyor"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "{handle} takip ediliyor"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Takip edilenler akışı tercihleri"
@@ -4264,7 +4297,7 @@ msgstr "Güvenlik nedeniyle, bunu bir daha görüntüleyemeyeceksiniz. Eğer bu
msgid "For the best experience, we recommend using the theme font."
msgstr "En iyi deneyim için, tema yazı tipini kullanmanızı öneriyoruz."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Sizin İçin"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "<0/> tarafından"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Bir başlangıç paketi oluşturun"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Yardım al"
@@ -4376,10 +4409,15 @@ msgstr "Birisi gönderi paylaştığında bildirim al"
msgid "Get started"
msgstr "Başla"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Profilinize bir yüz ekleyin"
@@ -4394,12 +4432,12 @@ msgstr "Şiddete övgü"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Geri git"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "Canlı yayını başlatma şu anda hesabınız için kullanıma kapalı"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Sarsıcı Olabilecek Medya"
@@ -4592,7 +4630,7 @@ msgstr "Bluesky tarafından kötüye kullanımı engellemek için 7 gün tutulur
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Yardım"
@@ -4632,9 +4670,9 @@ msgstr "Gizli liste"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Kullanıcı listesini gizle"
msgid "Hide verification badges"
msgstr "Doğrulama rozetlerini gizle"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "İçeriği gizler"
@@ -4760,9 +4798,9 @@ msgstr "Bekleyin! Videoya kademeli olarak erişim veriyoruz ve siz hâlâ sırad
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Ana Sayfa"
@@ -4819,7 +4857,7 @@ msgstr "Anladım"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "Bluesky'da {0} olarak yer alıyorum - gel beni bul! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Alternatif metin uzunsa, alternatif metin genişletme durumunu değiştirir"
@@ -4872,13 +4910,13 @@ msgstr "Hesabınızın etkinlik bildirimlerini kimlerin alabileceğini sınırla
msgid "If you're a developer, you can host your own server."
msgstr "Eğer bir geliştiriciyseniz kendi sunucunuzu barındırabilirsiniz."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Eğer kullanıcı adınızı veya e-postanızı değiştirmeye çalışıyorsanız, bunu devre dışı bırakmadan önce yapın."
#: src/components/images/Gallery.tsx:75
msgid "Image"
-msgstr "Resim"
+msgstr "Görsel"
#: src/screens/Settings/AboutSettings.tsx:62
msgid "Image cache cleared"
@@ -4996,6 +5034,10 @@ msgstr "Etkileşim ayarları"
msgid "Introducing activity notifications"
msgstr "Etkinlik bildirimleriyle tanış"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "Bağlantılarınızdan arkadaşlarınızı bulmayı sunarız"
@@ -5089,7 +5131,7 @@ msgstr "Şu anda sadece <0>{0}0>! Yukarıda arama yaparak başlangıç paketin
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Şu anda yalnızca siz varsınız! Yukarıdan arama yaparak başlangıç paketinize daha çok kişi ekleyin."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "İş ID: {0}"
@@ -5122,20 +5164,20 @@ msgstr "Beni haberdar et"
msgid "KWS website"
msgstr "KWS web sitesi"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "{0} tarafından işaretlendi."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Yazarı tarafından işaretlendi."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "İşaretler"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "İşaretler eklendi"
@@ -5218,8 +5260,8 @@ msgstr "Bağlantılarınızı yükleme hakkında daha fazla bilgi edinin"
msgid "Learn more about self hosting your PDS."
msgstr "PDS'nizi kendiniz barındırmayla ilgili daha çok bilgi edinin."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Bu içeriğe uygulanan moderasyonla ilgili daha çok bilgi edinin"
@@ -5231,7 +5273,7 @@ msgstr "<0>Blog gönderimizi0> okuyarak bu değişiklikler ve düşüncelerini
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "Blog gönderimizi okuyarak bu değişikliklerle ve düşüncelerinizi bizle nasıl paylaşacağınızla ilgili daha fazla bilgi edinin."
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Bu uyarı hakkında daha fazla bilgi edinin"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "<0>Hesap ayarlarınızdan0> daha çok bilgi edinin."
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Daha fazlasını öğren."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Ayrıl"
@@ -5286,7 +5328,7 @@ msgstr "Bluesky'dan ayrılıyor"
msgid "left to go."
msgstr "kaldı."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Bana seçtir"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Beğen"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Beğen ({0, plural, other {# beğeni}})"
@@ -5380,7 +5422,7 @@ msgstr "Yeniden gönderilerinize dair beğeniler"
msgid "Likes of your reposts notifications"
msgstr "Yeniden gönderilerinize dair beğenilerin bildirimleri"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Bu gönderideki beğeniler"
@@ -5474,7 +5516,7 @@ msgstr "Liste sessizden çıkarıldı"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Listeler"
@@ -5496,10 +5538,20 @@ msgstr "CANLI"
msgid "Live event happening now: {0}"
msgstr "Şimdi gerçekleşen canlı etkinlik: {0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "Canlı etkinlik gizlendi"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "Canlı etkinlik seçenekleri"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "Canlı etkinlik yeniden görünür hale getirildi"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "Canlı etkinlikler heyecan verici bir şey olduğunda ortaya çıkarlar. Dilerseniz bu etkinliği ya da tüm etkinlikleri gizleyebilirsiniz."
@@ -5524,11 +5576,11 @@ msgstr "Daha fazlasını yükle"
msgid "Load more suggested feeds"
msgstr "Daha çok önerilen akış yükle"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Yeni bildirimleri yükle"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo: @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo: <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Benim için bir tane yap"
msgid "Make sure this is where you intend to go!"
msgstr "Bu gitmek istediğiniz yer olduğundan emin olun!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Kayıtlı akışları yönet"
@@ -5638,7 +5690,16 @@ msgstr "Belki daha sonra"
msgid "Media"
msgstr "Medya"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Bazı gruplar için rahatsız edici ya da uygunsuz olabilecek medya."
@@ -5653,7 +5714,7 @@ msgstr "bahsedilen kullanıcılar"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Bahsedenler"
@@ -5716,6 +5777,10 @@ msgstr "Diğer bildirimler"
msgid "Misleading"
msgstr "Yanıltıcı"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "Kayıp medya"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "Diğer diller..."
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Filmler"
msgid "Music"
msgstr "Müzik"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Başlangıç paketine git"
msgid "Navigates to the next screen"
msgstr "Sonraki ekrana yönlendirir"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Profilinize yönlendirir"
@@ -5983,6 +6049,7 @@ msgstr "Yeni e-posta adresi"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Yeni Özellik"
@@ -6018,12 +6085,12 @@ msgstr "Yeni mesajlar"
msgid "New password"
msgstr "Yeni şifre"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Yeni gönderi"
@@ -6085,9 +6152,9 @@ msgstr "Haberler"
msgid "Next"
msgstr "İleri"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
-msgstr "Sonraki resim"
+msgstr "Sonraki görsel"
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32
msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention."
@@ -6114,6 +6181,10 @@ msgstr "Henüz özelleştirilmiş bir akış yok"
msgid "No DNS Panel"
msgstr "DNS Paneli Yok"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "Henüz bir taslak yok"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "Bir bitiş süresi belirlenmemiş"
@@ -6136,7 +6207,7 @@ msgstr "Görsel yok"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Henüz beğeni yok"
@@ -6150,7 +6221,7 @@ msgstr "Liste yok"
msgid "No longer following {0}"
msgstr "{0} artık takip edilmiyor"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "Henüz bir medya yok"
@@ -6195,7 +6266,7 @@ msgstr "Henüz bir gönderi yok"
msgid "No quotes yet"
msgstr "Henüz alıntı yok"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "Henüz bir yanıt yok"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Sonuç yok"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Sonuç yok"
@@ -6238,7 +6309,7 @@ msgstr "Sonuç bulunamadı."
msgid "No search results found for \"{search}\"."
msgstr "\"{search}\" aramanız için sonuç bulunamadı."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "Henüz bir başlangıç paketi yok"
@@ -6247,7 +6318,7 @@ msgstr "Henüz bir başlangıç paketi yok"
msgid "No thanks"
msgstr "Teşekkürler"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "Henüz bir video gönderisi yok"
@@ -6298,6 +6369,10 @@ msgstr "Takip ettiğiniz hiçkimse tarafından takip edilmiyor"
msgid "Not Found"
msgstr "Bulunamadı"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Paylaşıma dair dikkatinize"
@@ -6321,7 +6396,7 @@ msgstr "Henüz hiçbir şey kaydedilmedi"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Bildirim ayarları"
@@ -6349,10 +6424,10 @@ msgstr "Bildirim Sesleri"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Bildirimler"
@@ -6368,8 +6443,8 @@ msgstr "şimdi"
msgid "Now"
msgstr "Şimdi"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Çıplaklık"
@@ -6390,7 +6465,7 @@ msgstr "Oh hayır!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "Tamam"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Tamam"
@@ -6417,23 +6492,23 @@ msgstr "<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Onboarding sıfırlama"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Bir veya daha fazla GIF için alternatif metin eksik."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
-msgstr "Bir veya daha fazla resimde alternatif metin eksik."
+msgstr "Bir ya da daha fazla görselin alternatif metni eksik."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "Seçtiğiniz dosyalardan bir ya da birden fazlası desteklenmiyor."
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "Seçtiğiniz dosyalardan bir ya da birden fazlası çok büyük. En büyük dosya boyu 100 MB olabilir."
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Bir veya daha fazla videoda alternatif metin eksik."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ay, bir şeyler yanlış gitti!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Hata!"
msgid "Open avatar creator"
msgstr "Avatar oluşturucuyu aç"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "Kamerayı aç"
@@ -6485,12 +6560,16 @@ msgstr "Kamerayı aç"
msgid "Open conversation options"
msgstr "Yazışma seçeneklerini aç"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "Taslağı aç"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Çekmece menüyü aç"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Emoji seçiciyi aç"
@@ -6557,7 +6636,7 @@ msgstr "Sistem günlüğünü aç"
msgid "Opens {0} feed"
msgstr "{0} akışını açar"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Gönderinize içerik uyarısı ekleme diyaloğunu açar"
@@ -6589,25 +6668,25 @@ msgstr "Kullanıcı adı değiştirme diyaloğunu açar"
msgid "Opens composer"
msgstr "Besteciyi açar"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "Cihaz kamerasını açar"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "{MAX_IMAGES, plural, other {# adede kadar}} görsel veya tek bir video ya da GIF seçmek için cihaz galerisini açar."
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Emoji seçiciyi açar"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Yeni bir Bluesky hesabı oluşturma adımlarını açar"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Var olan Bluesky hesabınıza giriş yapma adımlarını açar"
@@ -6620,9 +6699,9 @@ msgstr "GIF seçim diyaloğunu açar"
msgid "Opens helpdesk in browser"
msgstr "Tarayıcıda yardım masasını açar"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
-msgstr "Resim seçiciyi açar"
+msgstr "Görsel seçiciyi açar"
#: src/components/dialogs/LinkWarning.tsx:97
msgid "Opens link {0}"
@@ -6640,10 +6719,14 @@ msgstr "Şifre sıfırlama formunu açar"
msgid "Opens post language settings"
msgstr "Gönderi dili ayarlarını açar"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "Gönderi oluşturucusunu açar"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "Bu taslağı düzenleyicide açar"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "Güncelleme durumu: Hiç yok"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Diğer"
@@ -6763,13 +6846,13 @@ msgstr "Şifre güncellendi"
msgid "Password updated!"
msgstr "Şifre güncellendi!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Duraklat"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Videoyu duraklat"
@@ -6829,7 +6912,7 @@ msgstr "Telefon numarası doğrulandı"
msgid "Photography"
msgstr "Fotoğrafçılık"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Yetişkinler için resimler."
@@ -6874,9 +6957,9 @@ msgstr "Sabitleme Akışları"
msgid "Pinned to your feeds"
msgstr "Akışlarınıza sabitlendi"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Oynat"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "{0} oynat"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Videoyu oynat"
@@ -6893,11 +6976,11 @@ msgstr "Videoyu oynat"
msgid "Play Video"
msgstr "Videoyu Oynat"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "GIF'i oynatır ya da duraklatır"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Videoyu oynatır ya da duraklatır"
@@ -6909,7 +6992,7 @@ msgstr "GIF'i oynatır"
msgid "Plays the video"
msgstr "Videoyu oynatır"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Lütfen paylaştığınız medyaya uygun içerik uyarı işaretlerini ekleyin."
@@ -7066,31 +7149,31 @@ msgstr "Lütfen mesajınızı aşağıya yazın:"
msgid "Politics"
msgstr "Politika"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Pornografi"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Gönderi"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Gönder"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "Bir fotoğraf gönder"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "Bir video gönder"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Hepsini Gönder"
@@ -7217,9 +7300,9 @@ msgstr "Bu hesabın sizin de takip ettiğiniz takipçilerini görmek için bası
msgid "Preview"
msgstr "Önizleme"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
-msgstr "Önceki resim"
+msgstr "Önceki görsel"
#: src/screens/Settings/LanguageSettings.tsx:137
msgid "Primary language"
@@ -7257,8 +7340,8 @@ msgstr "Gizlilik ve Güvenlik ayarları"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Gizlilik Politikası"
@@ -7266,7 +7349,11 @@ msgstr "Gizlilik Politikası"
msgid "Privacy violation of a minor"
msgstr "Bir küçüğün gizliliğini ihlal"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Video işleniyor..."
@@ -7280,10 +7367,10 @@ msgstr "İşleniyor..."
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Profil"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Topluca sessize almak ya da engellemek için herkese açık, paylaşılabilir listeler."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Gönderiyi yayınla"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Gönderileri yayınla"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Yanıtları yayınla"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Yanıtı yayınla"
@@ -7360,6 +7447,7 @@ msgstr "Alıntı bildirimleri"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Gönderiyi alıntıla"
@@ -7385,7 +7473,7 @@ msgstr "Alıntı gönderilen devre dışı bırakıldı"
msgid "Quotes"
msgstr "Alıntılar"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Bu gönderinin alıntıları"
@@ -7424,11 +7512,11 @@ msgstr "arama filtrelerinin nasıl kullanılacağını okuyun"
msgid "Read blog post"
msgstr "Blog gönderisini oku"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Devamını gizle"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Devamını oku"
@@ -7720,13 +7808,13 @@ msgstr "Yanıtlara kapalı"
msgid "Replies to this post are disabled."
msgstr "Bu gönderi yanıtlara kapalı."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Yanıtla"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Yanıtla ({0, plural, other {# yanıt}})"
@@ -7892,7 +7980,7 @@ msgstr "Siz yeniden göndermişsiniz"
msgid "Reposts"
msgstr "Yeniden gönderiler"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Bu gönderinin yeniden gönderilmesi"
@@ -7996,14 +8084,14 @@ msgstr "Son hataya neden olan son eylemi tekrarlar"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Önceki sayfaya dön"
msgid "Returns to home page"
msgstr "Ana sayfaya döner"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Önceki sayfaya döner"
@@ -8063,7 +8151,7 @@ msgstr "Önceki adıma döner"
msgid "Save"
msgstr "Kaydet"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Kaydet"
@@ -8076,9 +8164,26 @@ msgstr "Doğum tarihini kaydet"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Değişiklikleri kaydet"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "Değişiklikler kaydedilsin mi?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "Taslağı kaydet"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "Taslak kaydedilsin mi?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Akışlarıma kaydet"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "Kayıtlı"
@@ -8155,7 +8260,7 @@ msgstr "Başa kaydır"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Ara"
@@ -8164,7 +8269,7 @@ msgstr "Ara"
msgid "Search @{0}'s posts"
msgstr "@{0} gönderilerini ara"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "İsim veya ilgi alanına göre ara"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Akışları ara"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "\"{interestsDisplayName}\" ara"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "\"{interestsDisplayName}\" ara (etkin)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Gönderileri ara"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Profilleri ara"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Ara..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Profilleri arar"
@@ -8283,12 +8388,12 @@ msgstr "Kullanıcının #{tag} gönderilerini gör"
msgid "See jobs at Bluesky"
msgstr "Bluesky'daki iş fırsatlarını görün"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "Daha fazlasını gör"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "Daha çok önerilen profil göster"
@@ -8456,7 +8561,7 @@ msgstr "Akışlarınızdaki çeviriler için tercih ettiğiniz dili seçin."
msgid "Select your preferred notification channels"
msgstr "Tercih ettiğiniz bildirim kanallarını seçiniz"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "Farklı türlerde medya seçimi desteklenmemektedir."
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "E-posta Gönder"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Geribildirim gönder"
@@ -8566,7 +8671,7 @@ msgstr "Şifre sıfırlama için e-posta ayarlar"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Ayarlar"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Ayarlar kaydedildi"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Cinsel aktivite veya erotik çıplaklık."
@@ -8634,7 +8739,7 @@ msgstr "Cinsel Çağrışımlı"
msgid "Share"
msgstr "Paylaş"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Paylaş"
@@ -8712,13 +8817,13 @@ msgstr "En sevdiğiniz akışı paylaşın!"
msgid "Shared Preferences Tester"
msgstr "Paylaşılan Tercihler Test Edicisi"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Göster"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Alt metni göster"
@@ -8820,7 +8925,7 @@ msgstr "Uyarı göster ve akışlardan filtrele"
msgid "Show when you’re live"
msgstr "Canlı yayına çıktığınızı gösterin"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Bu gönderinin ne zaman oluşturulduğuna dair bilgileri gösterir"
@@ -8828,8 +8933,8 @@ msgstr "Bu gönderinin ne zaman oluşturulduğuna dair bilgileri gösterir"
msgid "Shows other accounts you can switch to"
msgstr "Geçiş yapabileceğiniz diğer hesapları gösterir"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "İçeriği gösterir"
@@ -8842,14 +8947,14 @@ msgstr "İçeriği gösterir"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Giriş Yapılması Gerekiyor"
msgid "Signed in as @{0}"
msgstr "@{0} olarak giriş yapıldı"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Benzer hesaplar"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "Bağlantıları paylaşmayı atla ve uygulamaya devam et"
msgid "Skip introduction and start using your account"
msgstr "Girizgahı atla ve hesabını kullanmaya başla"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "Sonraki adıma atla"
@@ -8967,7 +9068,7 @@ msgstr "Yazılım Geliştirme"
msgid "Some of your verifications are invalid."
msgstr "Doğrulamalarınızdan bazıları geçersiz."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Beğenebileceğiniz diğer akışlar"
@@ -8994,7 +9095,7 @@ msgstr "Bir şeyler ters gitti"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Bir şeyler ters gitti, lütfen tekrar deneyin"
@@ -9020,7 +9121,7 @@ msgstr "Bir şeyler ters gitti. Lütfen tekrar deneyin."
msgid "Something wrong? Let us know."
msgstr "Bir sorun mu var? Bize bildirin."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "Üzgünüz, hesap önerilerini şu anda yükleyemiyoruz."
@@ -9113,7 +9214,11 @@ msgstr "Başlangıç Paketleri"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Başlangıç paketleri favori kişilerinizi ve akışlarınızı arkadaşlarınızla kolaylıkla paylaşmanızı sağlar."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "Başlangıç paketleri favori akışlarınızı ve kişilerinizi arkadaşlarınızla paylaşabilmenizi sağlar."
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "Başlangıç Paketleri favori akışlarınızı ve kişilerinizi arkadaşlarınızla paylaşabilmenizi sağlar."
@@ -9181,11 +9286,11 @@ msgstr "Bu etiketleri kullanmak için @{0} hesabına abone olun:"
msgid "Subscribe to account activity"
msgstr "Hesap etkinliklerine abone ol"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "İşaretleyiciye Abone Ol"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Bu işaretleyiciye abone ol"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Önerilen Hesaplar"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Size önerilenler"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Tehlikeli"
@@ -9354,8 +9459,8 @@ msgstr "Şartlar"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Hizmet Şartları"
@@ -9403,12 +9508,12 @@ msgstr "Bu kullanıcı adı zaten alınmış"
msgid "That's all, folks!"
msgstr "Hepsi bu kadar!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Hepsi bu kadar!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Hesap, engeli kaldırdıktan sonra sizinle etkileşime geçebilecek."
@@ -9447,7 +9552,7 @@ msgstr "Keşif akışı (\"Discover\")"
msgid "The Discover feed now knows what you like"
msgstr "Keşif akışı (\"Discover\") artık ne beğendiğinizi biliyor"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Uygulama deneyimi daha iyi. Bluesky'ı şimdi indirin ve kaldığınız yerden devam edelim."
@@ -9527,7 +9632,7 @@ msgstr "Tema"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "Doğum tarihinizi ne kadar sık değiştirebileceğinizin bir sınırı vardır. Tekrar güncellemek için birkaç gün beklemeniz gerekebilir."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Hesap etkisizleştirme için zaman sınırı yoktur, istediğiniz zaman geri gelebilirsiniz."
@@ -9711,6 +9816,10 @@ msgstr "Bu içerik, bir Bluesky hesabı olmadan görüntülenemez."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Bu yazışmanın yapıldığı hesap ya silinmiş ya da devre dışı bırakılmış. Seçenekler için basın"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "Bu taslak kalıcı olarak silinecektir."
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "Bu e-posta zaten hesabınızla ilişkili."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Bu akış boş! Daha fazla kullanıcı takip etmeniz veya dil ayarlarınızı ayarlamanız gerekebilir."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Bu akış boş."
@@ -9798,7 +9907,7 @@ msgstr "Bu liste boş."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Bu moderasyon hizmeti kullanılamıyor. Daha fazla ayrıntı için aşağıya bakın. Bu sorun devam ederse bizimle iletişime geçin."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Bu gönderi <0>{0}0> tarihinde oluşturulduğunu beyan ediyor, ancak Bluesky'da ilk olarak <1>{1}1> tarihinde görüldü."
@@ -9818,7 +9927,7 @@ msgstr "Bu gönderi yazarı tarafından silinmiş"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Bu gönderi akışlarınızdan ve konularınızdan gizlenecektir. Bu işlem geri alınamaz."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Bu gönderinin yazarı alıntılanmasını engellemiş."
@@ -9834,7 +9943,7 @@ msgstr "Bu yanıt konunuzun altındaki gizli bir bölüme sıralanacaktır ve on
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Bu hizmet, kullanım şartları veya bir gizlilik politikası sunmamış."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "Canlı özelliği betada olduğu müddetçe bu servis desteklenmemektedir. İzin verilen servisler: {formatted}."
@@ -9900,8 +10009,8 @@ msgstr "Bu işlem, gönderinizin bu alıntıyla ilişiğini tüm kullanıcılar
msgid "Thread options"
msgstr "Konu seçenekleri"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Konu tercihleri"
@@ -9951,7 +10060,7 @@ msgstr "Bugün"
msgid "Toggle to enable or disable adult content"
msgstr "Yetişkin içeriği etkinleştirmek veya devre dışı bırakmak için açın/kapayın"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Sesi açar/kapar"
@@ -9988,8 +10097,8 @@ msgstr "Konu başlığı"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Çevir"
@@ -10091,15 +10200,15 @@ msgstr "Erişilemeyen akış bilgisi"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Engeli kaldır"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Engeli kaldır"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Hesabın engelini kaldır"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Hesabı Engelle?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "Geri al"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "Geri al"
@@ -10142,7 +10255,7 @@ msgstr "Yeniden göndermeyi geri al"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Yeniden gönderiyi geri al ({0, plural, other {# yeniden gönderi}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "{0} adresini takibi bırak"
@@ -10151,7 +10264,7 @@ msgstr "{0} adresini takibi bırak"
msgid "Unfollow account"
msgstr "Hesabı takibi bırak"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Kullanıcıyı takipten çıkarır"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Beğenmeyi geri al"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Beğeniyi kaldır ({0, plural, other {# beğeni}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Listeyi sessizden çıkar"
msgid "Unmute thread"
msgstr "Konunun sessizliğini kaldır"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Videonun sesini aç"
@@ -10276,7 +10389,7 @@ msgstr "Listenin sabitlemesi kaldırıldı"
msgid "Unsnooze email reminder"
msgstr "E-posta hatırlatıcısını ertelemeyi kaldır"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Abonelikten çık"
@@ -10285,7 +10398,7 @@ msgstr "Abonelikten çık"
msgid "Unsubscribe from list"
msgstr "Liste aboneliğinden çık"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Bu işaretleyicinin aboneliğinden ayrıl"
@@ -10293,7 +10406,7 @@ msgstr "Bu işaretleyicinin aboneliğinden ayrıl"
msgid "Unsubscribed from list"
msgstr "Liste aboneliğinden çıktınız"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "Desteklenmeyen video türü: {mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "Dosyalardan Yükle"
msgid "Upload from Library"
msgstr "Kütüphaneden Yükle"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
-msgstr "Resimler yükleniyor..."
+msgstr "Görseller yükleniyor..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Web bağlantısının görseli gönderiliyor..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Video yükleniyor..."
@@ -10389,8 +10506,8 @@ msgstr "Varsayılan sağlayıcıyı kullan"
msgid "Use in-app browser"
msgstr "Uygulama içi tarayıcıyı kullan"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Bağlantıları açmak için uygulama içi tarayıcıyı kullan"
@@ -10445,6 +10562,10 @@ msgstr "Kullanıcı Sizi Engelledi"
msgid "User list by {0}"
msgstr "{0} tarafından oluşturulan kullanıcı listesi"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Sizin tarafınızdan oluşturulan kullanıcı listesi"
@@ -10597,8 +10718,8 @@ msgstr "Doğrulanıyor..."
msgid "Version {0}"
msgstr "Sürüm {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Video"
@@ -10614,20 +10735,24 @@ msgstr "Video Akışı"
msgid "Video from {0}: {text}"
msgstr "{0} videosu: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "{0} videosu. Videoyu oynatmak ya da durdurmak için basın"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Video Oyunları"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Video duraklatıldı"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Video oynatılıyor"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Video bulunamadı."
@@ -10635,11 +10760,11 @@ msgstr "Video bulunamadı."
msgid "Video settings"
msgstr "Video ayarları"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Video yüklendi"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Video: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videolar"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "Videolar 3 dakikadan kısa olmalıdır."
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Göz at"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "{0}'ın avatarını görüntüle"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "{0} kullanıcısının profilini görüntüle"
@@ -10708,7 +10833,7 @@ msgstr "Daha fazlasını görüntüle"
msgid "View more trending videos"
msgstr "Daha çok gündem olan video göster"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "Gönderiyi göster"
@@ -10788,7 +10913,7 @@ msgstr "Şiddet veya tehditkâr içerik"
msgid "Visit site"
msgstr "Siteyi ziyaret et"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "Bildirim ayarlarınızı ziyaret edin"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "Hesabınızın yaş güvencesi işlemini başlatmakta sıkıntı yaşıyoruz. Lütfen yardım için <0>desteğe ulaşın0>."
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Ağ sorunları yaşıyoruz, tekrar deneyin"
@@ -10968,7 +11093,7 @@ msgstr "Üzgünüz, ancak sessize alınmış kelimelerinizi şu anda yükleyemed
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Üzgünüz, ancak aramanız tamamlanamadı. Lütfen birkaç dakika içinde tekrar deneyin."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Üzgünüz! Yanıtladığınız gönderi silindi."
@@ -10977,7 +11102,7 @@ msgstr "Üzgünüz! Yanıtladığınız gönderi silindi."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Üzgünüz! Aradığınız sayfayı bulamıyoruz."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Üzgünüz! Sadece yirmi işaretleyiciye abone olabilirsiniz ve yirmilik sınırınıza ulaştınız."
@@ -11018,10 +11143,9 @@ msgstr "İlgi alanlarınız nelerdir?"
msgid "What do you want to call your starter pack?"
msgstr "Başlangıç paketinize ne ad vermek istersiniz?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Nasılsınız?"
@@ -11097,6 +11221,14 @@ msgstr "Bu kullanıcı neden gözden geçirilmeli?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Bu kullanıcıyı engellemek ve/veya bu yazışmayı silmek ister misiniz?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "Taslaklarınıza göz atmadan önce bunu taslak olarak kaydetmek ister misiniz?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "Bunu sonradan düzenlemek için taslak olarak kaydetmek ister misiniz?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Bir mesaj yaz"
msgid "Write a post"
msgstr "Bir gönderi yaz"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Gönderi yaz"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Yanıtınızı yazın"
@@ -11133,8 +11265,8 @@ msgstr "www.canliyayinim.tv"
msgid "Yes"
msgstr "Evet"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Evet, devre dışı bırak"
@@ -11188,7 +11320,7 @@ msgstr "Sıradasınız."
msgid "You are Live"
msgstr "Canlı yayındasınız"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "Artık canlı yayında değilsiniz"
@@ -11200,7 +11332,7 @@ msgstr "Video yükleme izniniz yok."
msgid "You are not following anyone yet"
msgstr "Henüz kimseyi takip etmiyorsunuz"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "Canlı yayındasınız!"
@@ -11255,11 +11387,11 @@ msgstr "Artık belirli kişiler gönderi paylaştığında bildirim almayı seç
msgid "You can now sign in with your new password."
msgstr "Artık yeni şifrenizle giriş yapabilirsiniz."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "Tek seferde sadece tek bir GIF seçebilirsiniz."
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "Tek seferde sadece tek bir video seçebilirsiniz."
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Giriş yapmaya devam etmek için hesabınızı yeniden etkinleştirebilirsiniz. Profiliniz ve gönderileriniz diğer kullanıcılar tarafından görülebilir hale gelecektir."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "Toplamda {MAX_IMAGES, plural, other {# adede kadar}} görsel seçebilirsiniz."
@@ -11317,7 +11449,7 @@ msgstr "Bu kullanıcıyı engellediniz"
msgid "You have blocked this user. You cannot view their content."
msgstr "Bu kullanıcıyı engellediniz. İçeriklerini göremezsiniz."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "Yanıtlama, alıntılama ve bahsetme bildirimlerini tamamen devre dışı bıraktınız, bu nedenle bu sekme artık güncellenmeyecek. Bunu ayarlamak için <0>bildirim ayarlarınızı0> ziyaret edin."
@@ -11376,6 +11508,14 @@ msgstr "E-posta adresinizi başarıyla doğruladınız. Bu diyaloğu kapatabilir
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Video yükleme sınırına geçici olarak ulaştınız. Lütfen daha sonra tekrar deneyin."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "Bu taslakta kaydedilmemiş değişiklikleriniz var, onları kaydetmek ister misiniz?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "Kaydedilmemiş değişiklikleriniz var. Taslaklarınıza göz atmadan önce onları kaydetmek ister misiniz?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Henüz bir başlangıç paketi oluşturmadınız!"
@@ -11437,7 +11577,7 @@ msgstr "Bir hesap oluşturmak için en az {MIN_ACCESS_AGE} yaşında olmanız ge
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "Bluesky'ı kullanmak için en az 13 yaşında olmanız gerekmektedir. Daha fazla ilgi için <0>Hizmet Şartları0>'nı okuyun."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Başlangıç paketi oluşturmak için en az yedi kişiyi takip etmeniz gerekir."
@@ -11449,7 +11589,7 @@ msgstr "Bu ekrana erişmek için yaş güvencesini tamamlamanız gerekmektedir."
msgid "You must grant access to your photo library to save a QR code"
msgstr "Karekod kaydetmek için fotoğraf galerinize erişim izni vermelisiniz"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "Medya galerinize erişim izni vermeniz gerekmektedir."
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Sıradasınız"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Bir Uygulama Şifresi ile giriş yaptınız. Lütfen hesabınızı devre dışı bırakmaya devam etmek için ana şifrenizle giriş yapın."
@@ -11589,7 +11729,7 @@ msgstr "Günlük video yükleme limitinize ulaştınız (çok fazla bayt)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Günlük video yükleme limitinize ulaştınız (çok sayıda video)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "İzleyebileceğiniz video kalmadı. Belki de bir mola vermenin zamanı gelmiştir?"
@@ -11625,7 +11765,7 @@ msgstr "İtirazınız gönderildi. İtirazınız kabul edilirse size bir e-posta
msgid "Your birth date"
msgstr "Doğum tarihiniz"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Tarayıcınız video formatını desteklemiyor. Lütfen farklı bir tarayıcı deneyin."
@@ -11692,8 +11832,8 @@ msgstr "Tam kullanıcı adınız <0>@{0}0> olacak"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "İlgi alanlarınız"
@@ -11731,11 +11871,11 @@ msgstr "Şifreniz başarıyla değiştirildi! Lütfen bundan sonra Bluesky'a gir
msgid "Your password must be at least 8 characters long."
msgstr "Şifreniz en az 8 karakter uzunluğunda olmalıdır."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "Gönderiniz yollandı"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "Gönderileriniz yollandı"
@@ -11752,11 +11892,11 @@ msgstr "Profil resminiz"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "Başka kullanıcıların profil resimleri tarafından çerçevelenmiş profil resminiz"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Profiliniz, gönderileriniz, akışlarınız ve listeleriniz artık diğer Bluesky kullanıcıları tarafından görülemeyecek. Hesabınızı istediğiniz zaman oturum açarak yeniden etkinleştirebilirsiniz."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "Yanıtınız yollandı"
diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po
index d7aa492db6..03a62a189e 100644
--- a/src/locale/locales/uk/messages.po
+++ b/src/locale/locales/uk/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: uk\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# репост} few {# репости} many {# репо
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# секунда} few {# секунди} many {# секунд} other {# секунд}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -94,6 +94,10 @@ msgstr ""
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {підписник} few {підписники} many {п
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {читаю} few {читаю} many {читаю} other {читаю}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {вподобайка} few {вподобайки} many {вподобайки} other {вподобайки}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {вподобайка} few {вподобайки} many {
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {пост} few {пости} many {постів} other {постів}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {цитата} few {цитати} many {цитати} other {цитата}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {репост} few {репости} many {репостів} other {репостів}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr ""
msgid "{0} reacted {1} to {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
@@ -432,7 +436,7 @@ msgstr ""
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1> та {2, plural, one {# інші} few {# інші} many {# інші} other {# інші}} долучені до вашої підбірки"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {читач} few {читачі} many {читачі} other {читачі}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {читаєте} few {читаєте} many {читаєте} other {читаєте}}"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Додати ще {0} для продовження"
msgid "Add {displayName} to starter pack"
msgstr "Додати {displayName} до підбірки"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Додати попередження про вміст"
@@ -754,11 +763,11 @@ msgstr "Додати альтернативний текст (за бажанн
msgid "Add another account"
msgstr "Додати інший обліковий запис"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Написати ще"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "Додати пароль застосунку"
msgid "Add emoji reaction"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "Дорослий"
@@ -879,10 +888,10 @@ msgstr "Дорослий"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Вміст для дорослих"
@@ -894,8 +903,8 @@ msgstr "Вміст для дорослих може бути увімкнено
msgid "Adult content is disabled."
msgstr "Контент для дорослих вимкнено."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Мітки вмісту для дорослих"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Усе"
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Вже увійшли як @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr ""
msgid "Alt text"
msgstr "Альтернативний текст"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Альтернативний текст"
@@ -1059,7 +1068,7 @@ msgstr "Було надіслано лист на адресу {0}. Він мі
msgid "An error has occurred"
msgstr "Виникла помилка"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Виникла помилка"
@@ -1067,7 +1076,7 @@ msgstr "Виникла помилка"
msgid "An error occurred while compressing the video."
msgstr "Виникла помилка під час стискання цього відео."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Сталася помилка під час генерації вашої підбірки. Хочете спробувати ще раз?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "Сталася помилка під час завантаження відео. Будь ласка, спробуйте пізніше."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Сталася помилка під час завантаження відео. Будь ласка, спробуйте ще."
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Тварини"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "Анімована GIF"
@@ -1306,12 +1315,12 @@ msgstr "Застосувати рекомендовані стрічки за з
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Архівовано {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Архівований пост"
@@ -1332,11 +1341,11 @@ msgstr "Ви дійсно хочете видалити цю підбірку?"
msgid "Are you sure you want to discard your changes?"
msgstr "Ви справді хочете відхилити зміни?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Ви впевнені, що хочете залишити цю розмову? Повідомлення зникнуть для вас, але не для співрозмовника."
@@ -1344,11 +1353,7 @@ msgstr "Ви впевнені, що хочете залишити цю розм
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Ви впевнені, що бажаєте вилучити це зі своїх стрічок?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Ви дійсно бажаєте видалити цю чернетку?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Ви справді хочете не публікувати пост?"
@@ -1364,7 +1369,7 @@ msgstr ""
msgid "Art"
msgstr "Мистецтво"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Художня або нееротична оголеність."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Автовідтворення відео та GIF"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Назад"
@@ -1578,7 +1585,7 @@ msgstr "Блог"
msgid "Bluesky"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky не може підтвердити автентичність зазначеної дати."
@@ -1623,7 +1630,7 @@ msgstr ""
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky обере набір рекомендованих облікових записів користувачів у вашій мережі."
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Переглянути більше стрічок на сторінці Відкриття"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Переглянути більше пропозицій"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Переглянути більше запропонованого на сторінці Відкриття"
@@ -1770,8 +1777,8 @@ msgstr "Камера"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Камера"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Скасувати пошук"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Не можна взаємодіяти із заблокованим користувачем"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Чат"
@@ -1989,7 +1996,7 @@ msgstr "Змінити метод підтвердження домену"
msgid "Choose Feeds"
msgstr "Обрати стрічки"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Обрати для мене"
@@ -2096,6 +2103,7 @@ msgstr "Тик 🐴 тигидик 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Тик 🐴 тигидик 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Закрити діалогове вікно GIF"
msgid "Close image"
msgstr "Закрити зображення"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Закрити перегляд зображення"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Закриває сповіщення про оновлення пароля"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2242,12 +2251,12 @@ msgstr "Завершити ознайомлення та розпочати ко
msgid "Complete the challenge"
msgstr "Завершити завдання"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Новий пост"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2255,7 +2264,11 @@ msgstr ""
msgid "Compose reply"
msgstr "Відповісти"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Стискання відео..."
@@ -2263,7 +2276,6 @@ msgstr "Стискання відео..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Налаштувати фільтрування вмісту для категорії: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Налаштовано <0>у налаштуваннях модерації0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr ""
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "Попередження про вміст"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Попередження про вміст"
@@ -2401,7 +2413,7 @@ msgstr "Тло контекстного меню натисніть, щоб за
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Далі"
@@ -2420,7 +2432,7 @@ msgstr "Продовжити гілку..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "Не вдалось залишити чат"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Не вдалося завантажити стрічку"
@@ -2643,8 +2655,8 @@ msgstr "Створити QR-код для підбірки"
msgid "Create a starter pack"
msgstr "Створити власну підбірку"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "Створення власної підбірки для мене"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Створити інший"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Створити новий обліковий запис"
@@ -2772,7 +2784,7 @@ msgstr "Дата народження"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Деактивувати обліковий запис"
@@ -2871,7 +2883,7 @@ msgstr "Видалити мій обліковий запис"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Видалити пост"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Вимкнути субтитри"
@@ -2996,8 +3008,11 @@ msgstr "Вимкнено"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Видалити"
@@ -3006,11 +3021,12 @@ msgstr "Видалити"
msgid "Discard changes?"
msgstr "Відхилити зміни?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Відхилити чернетку?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Не зберігати пост?"
@@ -3037,7 +3053,7 @@ msgstr "Відхилити"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Пропустити помилку"
@@ -3049,11 +3065,16 @@ msgstr "Пропустити посібник нового користувач
msgid "Dismiss interests"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr ""
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr ""
msgid "Double tap to close the dialog"
msgstr "Торкніться двічі для закриття діалогу"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Завантажити Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Завантажити CAR файл"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Перетягнути і відпустити, щоб додати зображення"
@@ -3285,13 +3313,13 @@ msgstr "Редагувати налаштування взаємодії з по
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Редагувати профіль"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Редагувати профіль"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Увімкнути субтитри"
@@ -3421,13 +3449,13 @@ msgstr "Увімкнути субтитри"
msgid "Enable this source only"
msgstr "Увімкнути лише джерело"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr ""
@@ -3464,7 +3492,7 @@ msgstr "Введіть слово або мітку"
msgid "Enter code"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Повноекранний режим"
@@ -3501,7 +3529,7 @@ msgstr ""
msgid "Enter your username and password"
msgstr "Введіть псевдонім та пароль"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr ""
@@ -3509,7 +3537,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Помилка"
@@ -3570,7 +3598,7 @@ msgstr "Окрім користувачів, на яких ви підписан
msgid "Excludes users you follow"
msgstr "Окрім користувачів, на яких ви підписані"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Вийти з повноекранного режиму"
@@ -3578,11 +3606,7 @@ msgstr "Вийти з повноекранного режиму"
msgid "Exits account deletion process"
msgstr "Вийти з процесу видалення облікового запису"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Вийти з режиму перегляду"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Розгорнути опис"
@@ -3598,11 +3622,11 @@ msgstr "Розгорнути або згорнути весь пост, на я
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -3639,7 +3663,7 @@ msgstr "Відверті сексуальні зображення."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr ""
@@ -3657,8 +3681,8 @@ msgstr "Експорт моїх даних"
msgid "Export My Data"
msgstr "Експорт моїх даних"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Зовнішні медіа"
@@ -3730,7 +3754,7 @@ msgstr "Не вдалося видалити пост, спробувати ще
msgid "Failed to delete starter pack"
msgstr "Не вдалось видалити власну підбірку"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr ""
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Стрічка"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Стрічка від {0}"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Зворотний зв'язок"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Стрічки"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr "Завершення"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr ""
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Підписатися"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Підписатися на {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr ""
@@ -4133,7 +4166,7 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr ""
msgid "Follow all"
msgstr "Читати усіх"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Підписатися навзаєм"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "Читачі, яких читаєте ви"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Читаю"
msgid "Following {0}"
msgstr "Читають {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Налаштування стрічки тих, кого ви читаєте"
@@ -4264,7 +4297,7 @@ msgstr "З міркувань безпеки ви бачите цей парол
msgid "For the best experience, we recommend using the theme font."
msgstr "Для отримання найкращого користувацького досвіду рекомендується використовувати шрифт теми."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr ""
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Від <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Згенерувати особисту підбірку"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Допомога"
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr ""
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Створити обличчя для вашого облікового запису"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Перейти назад"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Графічний медіаконтент"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Довідка"
@@ -4632,9 +4670,9 @@ msgstr "Прихований список"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Приховати список користувачів"
msgid "Hide verification badges"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr ""
@@ -4760,9 +4798,9 @@ msgstr "Чекай-но! Ми поступово даємо доступ до в
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Головна"
@@ -4819,7 +4857,7 @@ msgstr "Я зрозумів"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Розкриває альтернативний текст, якщо текст задовгий"
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Якщо намагаєтесь змінити псевдонім або адресу електронної пошти, зробіть це до деактивації облікового запису."
@@ -4996,6 +5034,10 @@ msgstr ""
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Зараз ви на самоті. Додайте користувачів до власної підбірки шукаючи їх вище."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "Вакансія: {0}"
@@ -5122,20 +5164,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "{0} додав мітки."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Автор додав мітки."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Мітки"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Мітки додано"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr ""
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr ""
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Дізнатися більше про це попередження"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Дізнатися більше."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Вийти"
@@ -5286,7 +5328,7 @@ msgstr "Залишити Bluesky"
msgid "left to go."
msgstr "ще залишилося."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Дозвольте обрати мені"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Вподобати"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Уподобання цього посту"
@@ -5474,7 +5516,7 @@ msgstr "Список більше не ігноровано"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Списки"
@@ -5496,10 +5538,20 @@ msgstr ""
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Завантажити більше"
msgid "Load more suggested feeds"
msgstr "Завантажити більше запропонованих стрічок"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Завантажити нові сповіщення"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Лого від <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Згенерувати для мене"
msgid "Make sure this is where you intend to go!"
msgstr "Переконайтеся, що це дійсно той сайт, що ви збираєтеся відвідати!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Керувати збереженими стрічками"
@@ -5638,7 +5690,16 @@ msgstr ""
msgid "Media"
msgstr "Медіа"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Медіавміст, який може бути тривожним або недоречним для певних глядачів."
@@ -5653,7 +5714,7 @@ msgstr "згадані користувачі"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Згадування"
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Кіно"
msgid "Music"
msgstr "Музика"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Переходить до наступного екрана"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Переходить до вашого профілю"
@@ -5983,6 +6049,7 @@ msgstr ""
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr ""
@@ -6018,12 +6085,12 @@ msgstr "Нові повідомлення"
msgid "New password"
msgstr "Новий пароль"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Новий пост"
@@ -6085,7 +6152,7 @@ msgstr "Новини"
msgid "Next"
msgstr "Наступне"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Наступне зображення"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "Відсутня панель DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6136,7 +6207,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Ще немає вподобань"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "Ви більше не читаєте {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "Ще немає цитувань"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Результати відсутні"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Нічого не знайдено"
@@ -6238,7 +6309,7 @@ msgstr ""
msgid "No search results found for \"{search}\"."
msgstr "За запитом \"{search}\" нічого не знайдено."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "Ні, дякую"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr ""
msgid "Not Found"
msgstr "Не знайдено"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Примітка щодо поширення"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Налаштування сповіщень"
@@ -6349,10 +6424,10 @@ msgstr "Звуки сповіщень"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Сповіщення"
@@ -6368,8 +6443,8 @@ msgstr "щойно"
msgid "Now"
msgstr "Щойно"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Оголеність"
@@ -6390,7 +6465,7 @@ msgstr "О, ні!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "Добре"
@@ -6417,23 +6492,23 @@ msgstr "на<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Скинути ознайомлення"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Одна або декілька GIF не мають описового тексту."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Для одного або кількох зображень відсутній опис."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Одне або більше відео не мають описового тексту."
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ой, щось пішло не так!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ой!"
msgid "Open avatar creator"
msgstr "Відкрити створювач аватарів"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "Відкрити налаштування розмови"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Емоджі"
@@ -6557,7 +6636,7 @@ msgstr "Відкрити системний журнал"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Відкриває діалогове вікно для додавання попередження про вміст вашого поста"
@@ -6589,25 +6668,25 @@ msgstr ""
msgid "Opens composer"
msgstr "Відкриє редактор"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Відкриє процес створення нового облікового запису Bluesky"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
@@ -6620,7 +6699,7 @@ msgstr "Відкриє діалогове вікно вибору GIF"
msgid "Opens helpdesk in browser"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "Відкриває форму скидання пароля"
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Інше"
@@ -6763,13 +6846,13 @@ msgstr "Пароль змінено"
msgid "Password updated!"
msgstr "Пароль змінено!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Пауза"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Призупинити відео"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "Фотографування"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Зображення, призначені для дорослих."
@@ -6874,9 +6957,9 @@ msgstr "Закріплені стрічки"
msgid "Pinned to your feeds"
msgstr "Прикріплено до ваших стрічок"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Відтворити"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Відтворити {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Відтворити відео"
@@ -6893,11 +6976,11 @@ msgstr "Відтворити відео"
msgid "Play Video"
msgstr "Відтворити відео"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr ""
@@ -6909,7 +6992,7 @@ msgstr "Відтворює GIF"
msgid "Plays the video"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr ""
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "Політика"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Порнографія"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Запостити"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Запостити"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Опублікувати все"
@@ -7217,7 +7300,7 @@ msgstr "Натисніть для перегляду підписників ць
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Попереднє зображення"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Політика конфіденційності"
@@ -7266,7 +7349,11 @@ msgstr "Політика конфіденційності"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Обробка відео..."
@@ -7280,10 +7367,10 @@ msgstr "Обробка..."
msgid "profile"
msgstr "профіль"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Профіль"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr ""
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr ""
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Цитувати пост"
@@ -7385,7 +7473,7 @@ msgstr "Цитування постів вимкнено"
msgid "Quotes"
msgstr "Цитування"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Цитування цього поста"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr ""
@@ -7720,13 +7808,13 @@ msgstr "Відповіді вимкнуто"
msgid "Replies to this post are disabled."
msgstr "Відповіді в цьому пості вимкнено."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Відповісти"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -7892,7 +7980,7 @@ msgstr "Ви зробили репост"
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Репости цього поста"
@@ -7996,14 +8084,14 @@ msgstr "Повторити останню дію, яка спричинила п
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Повернутися до попередньої сторінки"
msgid "Returns to home page"
msgstr "Повертає до головної сторінки"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Повертає до попередньої сторінки"
@@ -8063,7 +8151,7 @@ msgstr ""
msgid "Save"
msgstr "Зберегти"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Зберегти"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Зберегти зміни"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Зберегти до моїх стрічок"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "Прогорнути вгору"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Пошук"
@@ -8164,7 +8269,7 @@ msgstr "Пошук"
msgid "Search @{0}'s posts"
msgstr ""
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr ""
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Пошук профілів"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr ""
@@ -8283,12 +8388,12 @@ msgstr ""
msgid "See jobs at Bluesky"
msgstr "Переглянути вакансії у Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "Оберіть бажану мову для перекладів у ва
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Надіслати ел. лист"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Надіслати відгук"
@@ -8566,7 +8671,7 @@ msgstr "Встановлює ел. адресу для скидання паро
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Налаштування"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Налаштування збережено"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Сексуальна активність або еротична оголеність."
@@ -8634,7 +8739,7 @@ msgstr "З сексуальним підтекстом"
msgid "Share"
msgstr "Поширити"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Поширити"
@@ -8712,13 +8817,13 @@ msgstr "Поділіться улюбленою стрічкою!"
msgid "Shared Preferences Tester"
msgstr "Тестувальник спільних налаштувань"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Показати"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Показати альтернативний текст"
@@ -8820,7 +8925,7 @@ msgstr "Показати попередження і фільтрувати зі
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr ""
@@ -8828,8 +8933,8 @@ msgstr ""
msgid "Shows other accounts you can switch to"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr ""
@@ -8842,14 +8947,14 @@ msgstr ""
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Необхідно увійти для перегляду"
msgid "Signed in as @{0}"
msgstr "Ви увійшли як @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Схожі облікові записи"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "Розробка П/З"
msgid "Some of your verifications are invalid."
msgstr ""
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Інші стрічки, які можуть вам сподобатися"
@@ -8994,7 +9095,7 @@ msgstr "Щось пішло не так"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Щось пішло не так. Будь ласка, спробуйте ще раз"
@@ -9020,7 +9121,7 @@ msgstr ""
msgid "Something wrong? Let us know."
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "Набори початківця"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Власні підбірки дозволяють легко ділитись з друзями улюбленими стрічками та користувачами."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "Підписатися на @{0}, щоб використовувати
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Підписатися на мітника"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Підписатися на цього мітника"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr ""
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Пропоновано для вас"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Непристойний"
@@ -9354,8 +9459,8 @@ msgstr "Умови"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Умови Використання"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "На цьому все!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Обліковий запис зможе взаємодіяти з вами після розблокування."
@@ -9447,7 +9552,7 @@ msgstr "Стрічка відкриття"
msgid "The Discover feed now knows what you like"
msgstr "Тепер Стрічка відкриття знає ваші уподобання"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Досвід використання кращий у застосунку. Завантажте Bluesky вже зараз та продовжуйте з того місця, де зупинились."
@@ -9527,7 +9632,7 @@ msgstr "Тема"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Немає граничного часу для деактивації облікового запису, повертайтеся коли завгодно."
@@ -9711,6 +9816,10 @@ msgstr "Цей вміст не доступний для перегляду бе
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Ця стрічка порожня! Можливо, вам треба підписатися на більшу кількість користувачів або змінити ваші налаштування мови."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Стрічка порожня."
@@ -9798,7 +9907,7 @@ msgstr ""
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Даний сервіс модерації недоступний. Перегляньте деталі нижче. Якщо проблема не зникне, зв'яжіться з нами."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Зазначається, що пост було створено — <0>{0}0>, але вперше цей пост було оприлюднено на Bluesky — <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Цей пост буде приховано від стрічок та гілок. Цю дію не можна скасувати."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Автор цього поста вимкнув можливість його цитувати."
@@ -9834,7 +9943,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Цей сервіс не надав умови обслуговування або політики конфіденційності."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "Це видалить ваш пост з цитованого посту
msgid "Thread options"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Налаштування гілок"
@@ -9951,7 +10060,7 @@ msgstr "Сьогодні"
msgid "Toggle to enable or disable adult content"
msgstr "Увімкнути або вимкнути вміст для дорослих"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr ""
@@ -9988,8 +10097,8 @@ msgstr ""
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Перекласти"
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Розблокувати"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Розблокувати"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Розблокувати обліковий запис"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Розблокувати обліковий запис?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "Скасувати репост"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Відписатися від {0}"
@@ -10151,7 +10264,7 @@ msgstr "Відписатися від {0}"
msgid "Unfollow account"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr ""
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Прибрати вподобання"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr ""
msgid "Unmute thread"
msgstr "Перестати ігнорувати"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Увімкнути звук відео"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Відписатися"
@@ -10285,7 +10398,7 @@ msgstr "Відписатися"
msgid "Unsubscribe from list"
msgstr "Відписатись від списку"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Відписатися від цього мітника"
@@ -10293,7 +10406,7 @@ msgstr "Відписатися від цього мітника"
msgid "Unsubscribed from list"
msgstr "Відписано від списку"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "Завантажити з файлів"
msgid "Upload from Library"
msgstr "Завантажити з бібліотеки"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Завантаження зображень..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Завантаження ескізу посилання..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Завантаження відео..."
@@ -10389,8 +10506,8 @@ msgstr "Використовувати провайдера за замовчу
msgid "Use in-app browser"
msgstr "У вбудованому браузері"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Використовувати вбудований браузер для відкриття посилань"
@@ -10445,6 +10562,10 @@ msgstr "Користувач заблокував вас"
msgid "User list by {0}"
msgstr "Список користувачів від {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Список користувачів від вас"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Відео"
@@ -10614,20 +10735,24 @@ msgstr ""
msgid "Video from {0}: {text}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Відеоігри"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Відео не знайдено."
@@ -10635,11 +10760,11 @@ msgstr "Відео не знайдено."
msgid "Video settings"
msgstr "Налаштування відео"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Відео завантажено"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Відео: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Відео: {0}"
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Переглянути аватар {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Переглянути профіль {0}"
@@ -10708,7 +10833,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "У нас виникли проблеми з мережею, спробуйте ще раз"
@@ -10968,7 +11093,7 @@ msgstr "На жаль, ми не змогли зараз завантажити
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Даруйте, нам не вдалося виконати пошук за вашим запитом. Будь ласка, спробуйте ще раз через кілька хвилин."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Нам прикро! Пост, на який ви відповідаєте, видалено."
@@ -10977,7 +11102,7 @@ msgstr "Нам прикро! Пост, на який ви відповідаєт
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Нам дуже прикро! Ми не можемо знайти сторінку, яку ви шукали."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Вибачте, підписатися можна лише на двадцять мітників. Ви вже досягли свого ліміту."
@@ -11018,10 +11143,9 @@ msgstr "Чим ви цікавитесь?"
msgid "What do you want to call your starter pack?"
msgstr "Яку назву оберете для власної підбірки?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Як справи?"
@@ -11097,6 +11221,14 @@ msgstr "Чому слід переглянути цього користувач
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Уведіть повідомлення"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Написати пост"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Написати відповідь"
@@ -11133,8 +11265,8 @@ msgstr ""
msgid "Yes"
msgstr "Так"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Так, деактивувати"
@@ -11188,7 +11320,7 @@ msgstr "Ви в черзі."
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11200,7 +11332,7 @@ msgstr "Ви не можете завантажувати відео."
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Тепер ви можете увійти за допомогою нового пароля."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Ви можете відновити свій обліковий запис для продовження входу. Ваш обліковий запис та пости побачать інші користувачі."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "Ви заблокували цього користувача"
msgid "You have blocked this user. You cannot view their content."
msgstr "Ви заблокували цього користувача. Ви не можете бачити їх вміст."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Ви тимчасово досягли ліміту завантаження відео. Будь ласка, спробуйте пізніше."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Ви ще не створювали власних підбірок!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Ви маєте читати щонайменше сімох користувачів для генерування власної підбірки."
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "Ви маєте надати доступ до Фотографій для збереження QR-коду"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Ви в черзі"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr ""
@@ -11589,7 +11729,7 @@ msgstr "Ви досягли денного ліміту завантаження
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Ви досягли денного ліміту завантаження відео (забагато відео)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr ""
@@ -11625,7 +11765,7 @@ msgstr ""
msgid "Your birth date"
msgstr "Ваша дата народження"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Ваш браузер не підтримує цей формат відео. Будь ласка, спробуйте інший браузер."
@@ -11692,8 +11832,8 @@ msgstr "Вашим повним псевдонімом буде <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr ""
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Ваш обліковий запис, пости, стрічки та списки більше не будуть видимі іншим користувачам Bluesky. Ви можете відновити свій обліковий запис в будь-який момент ввівши дані облікового запису у поле для входу."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/vi/messages.po b/src/locale/locales/vi/messages.po
index d44abafb96..74c0f59cec 100644
--- a/src/locale/locales/vi/messages.po
+++ b/src/locale/locales/vi/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: vi\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Vietnamese\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, other {# lượt đăng lại}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, other {# giây}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, other {# mục chưa đọc}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, other {# mục chưa đọc}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, other {# tháng}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, other {người theo dõi}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, other {đang theo dõi}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, other {lượt thích}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, other {lượt thích}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, other {bài đăng}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, other {trích dẫn}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, other {lượt đăng lại}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr ""
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr ""
@@ -189,11 +193,11 @@ msgstr "{0} đã bày tỏ cảm xúc {1}"
msgid "{0} reacted {1} to {2}"
msgstr "{0} đã bày tỏ cảm xúc {1} cho {2}"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr ""
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {# người dùng}} đã đăng ký!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, other {# mục chưa đọc}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1}, 1>và {2, plural, other {# người khác}} nằm trong trong gói khởi đầu của bạn"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, other {người theo dõi}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, other {đang theo dõi}}"
@@ -580,6 +584,11 @@ msgstr ""
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr ""
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "Thêm {0} để tiếp tục"
msgid "Add {displayName} to starter pack"
msgstr "Thêm {displayName} vào gói khởi đầu"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "Thêm cảnh báo nội dung"
@@ -754,11 +763,11 @@ msgstr "Thêm văn bản thay thế (không bắt buộc)"
msgid "Add another account"
msgstr "Thêm tài khoản khác"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "Thêm bài"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr ""
@@ -776,12 +785,12 @@ msgstr "Thêm mật khẩu ứng dụng"
msgid "Add emoji reaction"
msgstr "Thêm emoji để bày tỏ cảm xúc"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr ""
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr ""
@@ -871,7 +880,7 @@ msgstr ""
msgid "Additional details (limit 300 characters)"
msgstr "Thông tin chi tiết thêm (tối đa 300 kí tự)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "18+"
@@ -879,10 +888,10 @@ msgstr "18+"
msgid "Adult content"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "Nội dung 18+"
@@ -894,8 +903,8 @@ msgstr "Nội dung 18+ chỉ có thể được bật qua Web tại <0>bsky.app<
msgid "Adult content is disabled."
msgstr "Nội dung 18+ đã bị tắt."
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "Nhãn cho nội dung 18+"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "Tất cả"
@@ -1017,7 +1026,7 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Đã đăng nhập dưới tên @{0}"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "ALT"
msgid "Alt text"
msgstr "Văn bản thay thế"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "Văn bản thay thế"
@@ -1059,7 +1068,7 @@ msgstr "Email đã được gửi đến {0}, bao gồm mã xác nhận để nh
msgid "An error has occurred"
msgstr "Đã có lỗi xảy ra"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "Đã có lỗi xảy ra"
@@ -1067,7 +1076,7 @@ msgstr "Đã có lỗi xảy ra"
msgid "An error occurred while compressing the video."
msgstr "Đã có lỗi xảy ra khi đang nén video."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr ""
@@ -1076,7 +1085,7 @@ msgstr ""
msgid "An error occurred while fetching the feed."
msgstr "Đã có lỗi xảy ra khi tải bảng tin."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Đã có lỗi xảy ra khi đang tạo gói khởi đầu của bạn. Bạn muốn thử lại không?"
@@ -1088,7 +1097,7 @@ msgstr ""
msgid "An error occurred while loading the video. Please try again later."
msgstr "Đã có lỗi xảy ra khi đang tải video. Vui lòng thử lại sau."
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "Đã có lỗi xảy ra khi đang tải video. Vui lòng thử lại."
@@ -1181,7 +1190,7 @@ msgstr ""
msgid "Animals"
msgstr "Động vật"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF động"
@@ -1306,12 +1315,12 @@ msgstr "Áp dụng bảng tin được đề xuất mặc định"
msgid "Apply Pull Request"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "Lưu trữ từ {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "Bài đăng lưu trữ"
@@ -1332,11 +1341,11 @@ msgstr "Bạn có chắc chắn muốn xóa gói khởi đầu này không?"
msgid "Are you sure you want to discard your changes?"
msgstr "Bạn có chắc chắn muốn hủy bỏ các thay đổi không?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "Bạn có chắc muốn rời khỏi cuộc trò chuyện này?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Bạn có chắc chắn muốn rời hội thoại này? Tin nhắn của bạn sẽ bị xóa cho bạn, nhưng không phải cho người khác."
@@ -1344,11 +1353,7 @@ msgstr "Bạn có chắc chắn muốn rời hội thoại này? Tin nhắn củ
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Bạn có chắc chắn muốn xóa khỏi bảng tin của bạn không?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "Bạn có chắc chắn muốn hủy bỏ bản nháp này không?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "Bạn có chắc chắn muốn hủy bỏ bài đăng này không?"
@@ -1364,7 +1369,7 @@ msgstr "Bạn đang viết bằng <0>{suggestedLanguageName}0> đúng không?"
msgid "Art"
msgstr "Nghệ thuật"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "Khỏa thân nghệ thuật hoặc không khiêu dâm."
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "Aurora"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "Tự động phát video và GIF"
@@ -1404,11 +1409,13 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "Trở lại"
@@ -1578,7 +1585,7 @@ msgstr "Blog"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky không thể xác nhận tính xác thực của ngày được tuyên bố."
@@ -1623,7 +1630,7 @@ msgstr "Điều khoản Dịch vụ của Bluesky Social"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky sẽ chọn một tập hợp các tài khoản được đề xuất từ những người trong mạng lưới của bạn."
@@ -1664,20 +1671,20 @@ msgstr ""
msgid "Browse custom feeds"
msgstr ""
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "Xem nhiều bảng tin hơn trên trang Khám phá"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "Xem thêm đề xuất"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "Xem thêm đề xuất trên trang Khám phá"
@@ -1770,8 +1777,8 @@ msgstr "Máy ảnh"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "Máy ảnh"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "Huỷ tìm kiếm"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "Không thể tương tác với người dùng đã bị chặn"
@@ -1901,9 +1908,9 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "Chat"
@@ -1989,7 +1996,7 @@ msgstr "Chọn phương pháp xác minh tên miền"
msgid "Choose Feeds"
msgstr "Chọn bảng tin"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "Chọn cho tôi"
@@ -2096,6 +2103,7 @@ msgstr "Lộp 🐴 cộp 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Lộp 🐴 cộp 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,9 +2176,10 @@ msgstr "Đóng hộp thoại GIF"
msgid "Close image"
msgstr "Đóng hình ảnh"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
-msgstr "Đóng trình xem hình ảnh"
+msgstr ""
#: src/components/ContextMenu/Backdrop.ios.tsx:53
#: src/components/ContextMenu/Backdrop.ios.tsx:79
@@ -2190,7 +2199,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Đóng cảnh báo cập nhật mật khẩu"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "Đóng trình soạn bài đăng và huỷ bỏ nháp"
@@ -2242,12 +2251,12 @@ msgstr "Hoàn thành quá trình hướng dẫn và bắt đầu sử dụng tà
msgid "Complete the challenge"
msgstr "Hoàn thành thử thách"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "Soạn bài đăng mới"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Soạn bài đăng với độ dài tối đa {0, plural, other {# kí tự}}"
@@ -2255,7 +2264,11 @@ msgstr "Soạn bài đăng với độ dài tối đa {0, plural, other {# kí t
msgid "Compose reply"
msgstr "Soạn trả lời"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "Đang nén video..."
@@ -2263,7 +2276,6 @@ msgstr "Đang nén video..."
msgid "Configure content filtering setting for category: {name}"
msgstr "Cấu hình cài đặt lọc nội dung cho danh mục: {name}"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr ""
@@ -2272,8 +2284,8 @@ msgstr ""
msgid "Configured in <0>moderation settings0>."
msgstr "Đã cấu hình trong <0>cài đặt kiểm duyệt0>."
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr ""
msgid "Contacts removed"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "Nội dung & phương tiện"
@@ -2389,7 +2401,7 @@ msgstr ""
msgid "Content Warning"
msgstr "Cảnh báo nội dung"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "Cảnh báo nội dung"
@@ -2401,7 +2413,7 @@ msgstr "Nền trình đơn, nhấn để đóng trình đơn."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "Tiếp tục"
@@ -2420,7 +2432,7 @@ msgstr "Tiếp tục thảo luận..."
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr ""
msgid "Could not leave chat"
msgstr "Không thể rời khỏi chat"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "Không thể tải bảng tin"
@@ -2643,8 +2655,8 @@ msgstr "Tạo mã QR cho gói khởi đầu"
msgid "Create a starter pack"
msgstr "Tạo gói khởi đầu"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr ""
@@ -2654,12 +2666,12 @@ msgstr "Tạo gói khởi đầu cho tôi"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "Tạo thêm"
msgid "Create moderation list"
msgstr ""
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "Tạo tài khoản mới"
@@ -2772,7 +2784,7 @@ msgstr "Ngày sinh"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "Vô hiệu hóa tài khoản"
@@ -2871,7 +2883,7 @@ msgstr "Xóa tài khoản của tôi"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "Xóa bài đăng"
@@ -2981,7 +2993,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "Tắt phụ đề"
@@ -2996,8 +3008,11 @@ msgstr "Đã tắt"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "Hủy bỏ"
@@ -3006,11 +3021,12 @@ msgstr "Hủy bỏ"
msgid "Discard changes?"
msgstr "Hủy thay đổi?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "Hủy bản nháp?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "Hủy bài đăng?"
@@ -3037,7 +3053,7 @@ msgstr "Bỏ qua"
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "Bỏ qua lỗi "
@@ -3049,11 +3065,16 @@ msgstr "Bỏ qua hướng dẫn bắt đầu"
msgid "Dismiss interests"
msgstr "Bỏ qua mục quan tâm"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr ""
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "Đóng phần này"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr ""
@@ -3121,8 +3142,8 @@ msgstr ""
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "Nhấp đúp hoặc nhấp và giữ tin nhắn để thêm bày tỏ c
msgid "Double tap to close the dialog"
msgstr "Nhấn đúp để đóng hộp thoại"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "Chạm hai lần để thích"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "Tải Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "Tải tệp CAR"
msgid "Doxxing"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr ""
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "Thả vào để thêm hình ảnh"
@@ -3285,13 +3313,13 @@ msgstr "Chỉnh sửa cài đặt tương tác bài đăng"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "Chỉnh sửa hồ sơ"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "Chỉnh sửa hồ sơ"
@@ -3413,7 +3441,7 @@ msgstr ""
msgid "Enable quote posts of this post"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "Bật phụ đề"
@@ -3421,13 +3449,13 @@ msgstr "Bật phụ đề"
msgid "Enable this source only"
msgstr "Chỉ bật nguồn này"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "Mở chủ đề nổi trội"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "Bật video nổi bật trong bảng tin Discover"
@@ -3464,7 +3492,7 @@ msgstr "Nhập từ hoặc thẻ"
msgid "Enter code"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "Vào chế độ toàn màn hình"
@@ -3501,7 +3529,7 @@ msgstr "Nhập mật khẩu"
msgid "Enter your username and password"
msgstr "Nhập tên đăng nhập và mật khẩu"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "Mở toàn màn hình"
@@ -3509,7 +3537,7 @@ msgstr "Mở toàn màn hình"
msgid "Entertainment"
msgstr "Giải trí"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Lỗi"
@@ -3570,7 +3598,7 @@ msgstr "Trừ người dùng bạn đang theo dõi"
msgid "Excludes users you follow"
msgstr "Trừ người dùng bạn đang theo dõi"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "Thoát toàn màn hình"
@@ -3578,11 +3606,7 @@ msgstr "Thoát toàn màn hình"
msgid "Exits account deletion process"
msgstr "Thoát quá trình xóa tài khoản"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "Thoát xem ảnh"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "Mở rộng văn bản thay thế"
@@ -3598,11 +3622,11 @@ msgstr "Mở rộng hoặc thu gọn toàn bộ bài đăng bạn đang trả l
msgid "Expand post text"
msgstr ""
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "Mở rộng hoặc thu gọn nội dung bài đăng"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "Dự kiến uri sẽ phân giải thành một bản ghi"
@@ -3639,7 +3663,7 @@ msgstr "Hình ảnh khiêu dâm."
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "Khám phá"
@@ -3657,8 +3681,8 @@ msgstr "Xuất dữ liệu của tôi"
msgid "Export My Data"
msgstr "Xuất dữ liệu của tôi"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "Phương tiện ngoại vi"
@@ -3730,7 +3754,7 @@ msgstr "Không xóa được bài đăng, vui lòng thử lại"
msgid "Failed to delete starter pack"
msgstr "Không xóa được gói khởi đầu"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr ""
@@ -3829,6 +3853,10 @@ msgstr "Đã có lỗi xảy ra khi xoá xác minh"
msgid "Failed to resolve location. Please try again."
msgstr ""
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr ""
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "Bảng tin"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "Bảng tin bởi {0}"
@@ -3941,7 +3970,7 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "Phản hồi"
@@ -3958,7 +3987,7 @@ msgstr ""
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "Bảng tin"
@@ -4008,6 +4037,10 @@ msgstr ""
msgid "Finalizing"
msgstr "Đang hoàn tất"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr ""
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "Tìm người để theo dõi"
@@ -4098,19 +4131,19 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "Theo dõi"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "Theo dõi {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "Theo dõi {handle}"
@@ -4133,7 +4166,7 @@ msgstr "Theo dõi tài khoản"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "Theo dõi tài khoản"
msgid "Follow all"
msgstr "Theo dõi tất cả"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr ""
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "Theo dõi lại"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr ""
@@ -4195,8 +4228,8 @@ msgstr "Người theo dõi bạn biết"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "Đang theo dõi"
msgid "Following {0}"
msgstr "Đang theo dõi {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "Đang theo dõi {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "Cài đặt bảng tin Đang theo dõi"
@@ -4264,7 +4297,7 @@ msgstr "Vì lý do bảo mật, bạn sẽ không thể xem lại trang này. N
msgid "For the best experience, we recommend using the theme font."
msgstr "Chúng tôi khuyến nghị sử dụng phông chữ chủ đề để có trải nghiệm tốt nhất."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "Dành cho bạn"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "Từ <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "Tạo gói khởi đầu"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "Trợ giúp"
@@ -4376,10 +4409,15 @@ msgstr ""
msgid "Get started"
msgstr "Bắt đầu"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "Chọn hình cho hồ sơ của bạn"
@@ -4394,12 +4432,12 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "Quay lại"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "Phương tiện phản cảm"
@@ -4592,7 +4630,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "Giúp đỡ"
@@ -4632,9 +4670,9 @@ msgstr "Danh sách ẩn"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "Ẩn danh sách người dùng"
msgid "Hide verification badges"
msgstr "Ẩn các dấu xác minh"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "Ẩn nội dung"
@@ -4760,9 +4798,9 @@ msgstr "Chờ nhé! Chúng tôi đang dần dần cấp quyền truy cập video
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "Trang chủ"
@@ -4819,7 +4857,7 @@ msgstr "Tôi hiểu"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Hãy mở rộng nếu văn bản thay thế quá dài"
@@ -4872,7 +4910,7 @@ msgstr ""
msgid "If you're a developer, you can host your own server."
msgstr "Nếu bạn là một lập trình viên, bạn có thể tự quản lý máy chủ riêng của mình."
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Nếu bạn muốn thay đổi tên người dùng hoặc email, hãy thực hiện trước khi vô hiệu hóa."
@@ -4996,6 +5034,10 @@ msgstr "Cài đặt tương tác"
msgid "Introducing activity notifications"
msgstr ""
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr ""
@@ -5089,7 +5131,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Chỉ mới có bạn thôi! Thêm người khác vào gói khởi đầu của bạn bằng cách tìm kiếm ở trên."
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "ID công việc: {0}"
@@ -5122,20 +5164,20 @@ msgstr ""
msgid "KWS website"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "Gắn nhãn bởi {0}."
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "Gắn nhãn bởi người đăng."
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "Nhãn"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "Đã thêm nhãn"
@@ -5218,8 +5260,8 @@ msgstr ""
msgid "Learn more about self hosting your PDS."
msgstr "Tìm hiểu thêm về việc tự lưu trữ PDS của bạn."
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "Tìm hiểu thêm về kiểm duyệt được áp dụng cho nội dung này"
@@ -5231,7 +5273,7 @@ msgstr ""
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr ""
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Tìm hiểu thêm về cảnh báo này"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr ""
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "Tìm hiểu thêm."
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "Rời đi"
@@ -5286,7 +5328,7 @@ msgstr "Rời Bluesky"
msgid "left to go."
msgstr "còn lại."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "Để tôi chọn"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "Thích"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Thích ({0, plural, other {# lượt thích}})"
@@ -5380,7 +5422,7 @@ msgstr ""
msgid "Likes of your reposts notifications"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "Lượt thích cho bài đăng này"
@@ -5474,7 +5516,7 @@ msgstr "Đã đã bỏ ẩn toàn danh sách"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "Danh sách"
@@ -5496,10 +5538,20 @@ msgstr ""
msgid "Live event happening now: {0}"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr ""
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr ""
@@ -5524,11 +5576,11 @@ msgstr "Tải thêm"
msgid "Load more suggested feeds"
msgstr "Tải thêm gợi ý bảng tin"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "Tải thông báo mới"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logo bởi @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo bởi <0>@sawaratsuki.bsky.social0>"
@@ -5600,8 +5652,8 @@ msgstr "Tạo cho tôi một cái"
msgid "Make sure this is where you intend to go!"
msgstr "Hãy chắc rằng đây là nơi bạn muốn đến!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "Quản lý bảng tin đã lưu"
@@ -5638,7 +5690,16 @@ msgstr "Để sau"
msgid "Media"
msgstr "Phương tiện"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Phương tiện có thể gây phản cảm cho một số khán giả."
@@ -5653,7 +5714,7 @@ msgstr "người dùng được đề cập"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "Nhắc đến"
@@ -5716,6 +5777,10 @@ msgstr ""
msgid "Misleading"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr ""
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr ""
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "Phim ảnh"
msgid "Music"
msgstr "Âm nhạc"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "Đi đến gói khởi đầu"
msgid "Navigates to the next screen"
msgstr "Điều hướng đến màn hình kế tiếp"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "Điều hướng đến hồ sơ của bạn"
@@ -5983,6 +6049,7 @@ msgstr "Địa chỉ email mới"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "Tính năng mới"
@@ -6018,12 +6085,12 @@ msgstr "Tin nhắn mới"
msgid "New password"
msgstr "Mật khẩu mới"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "Bài đăng mới"
@@ -6085,7 +6152,7 @@ msgstr "Tin tức"
msgid "Next"
msgstr "Tiếp theo"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "Hình kế tiếp"
@@ -6114,6 +6181,10 @@ msgstr ""
msgid "No DNS Panel"
msgstr "Không có bảng DNS"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr ""
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr ""
@@ -6136,7 +6207,7 @@ msgstr ""
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "Chưa có lượt thích nào"
@@ -6150,7 +6221,7 @@ msgstr ""
msgid "No longer following {0}"
msgstr "Không còn theo dõi {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr ""
@@ -6195,7 +6266,7 @@ msgstr ""
msgid "No quotes yet"
msgstr "Chưa có trích dẫn nào"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr ""
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "Không có kết quả"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "Không có kết quả"
@@ -6238,7 +6309,7 @@ msgstr "Không có kểt quả nào."
msgid "No search results found for \"{search}\"."
msgstr "Không tìm thấy kết quả nào cho \"{search}\"."
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr ""
@@ -6247,7 +6318,7 @@ msgstr ""
msgid "No thanks"
msgstr "Không, cảm ơn"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr ""
@@ -6298,6 +6369,10 @@ msgstr "Không được theo dõi bởi một ai trong số những người mà
msgid "Not Found"
msgstr "Không tìm thấy"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "Chú ý về việc chia sẻ"
@@ -6321,7 +6396,7 @@ msgstr ""
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "Cài đặt thông báo"
@@ -6349,10 +6424,10 @@ msgstr "Âm thanh thông báo"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "Thông báo"
@@ -6368,8 +6443,8 @@ msgstr "bây giờ"
msgid "Now"
msgstr "Bây giờ"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "Khỏa thân"
@@ -6390,7 +6465,7 @@ msgstr "Ôi không!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "OK"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "OK"
@@ -6417,23 +6492,23 @@ msgstr "trên<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Đặt lại quá trình hướng dẫn"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "Một hoặc nhiều GIF thiếu văn bản thay thế."
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "Một hoặc nhiều hình ảnh thiếu văn bản thay thế."
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "Một hoặc nhiều video thiếu văn bản thay thế"
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "Ôi, có gì đó không đúng!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "Ôi!"
msgid "Open avatar creator"
msgstr "Mở trình tạo hình đại diện"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr ""
@@ -6485,12 +6560,16 @@ msgstr ""
msgid "Open conversation options"
msgstr "Mở tùy chọn hội thoại"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "Mở trình đơn"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "Mở trình chọn biểu tượng cảm xúc"
@@ -6557,7 +6636,7 @@ msgstr "Mở log hệ thống"
msgid "Opens {0} feed"
msgstr ""
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "Mở hộp thoại để thêm cảnh báo nội dung cho bài đăng của bạn"
@@ -6589,25 +6668,25 @@ msgstr "Mở hộp thoại thay đổi tên tài khoản"
msgid "Opens composer"
msgstr "Mở trình soạn thảo"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr ""
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "Mở trình chọn emoji"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "Mở quy trình tạo tài khoản Bluesky mới"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Mở quy trình đăng nhập vào tài khoản Bluesky hiện tại của bạn"
@@ -6620,7 +6699,7 @@ msgstr "Mở hộp thoại chọn GIF"
msgid "Opens helpdesk in browser"
msgstr "Mở trợ giúp trong trình duyệt"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr ""
@@ -6640,10 +6719,14 @@ msgstr "Mở biểu mẫu đặt lại mật khẩu"
msgid "Opens post language settings"
msgstr ""
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr ""
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "Trạng thái OTA: Không có cập nhật"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "Khác"
@@ -6763,13 +6846,13 @@ msgstr "Đã cập nhật mật khẩu"
msgid "Password updated!"
msgstr "Đã cập nhật mật khẩu!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "Dừng"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "Dừng video"
@@ -6829,7 +6912,7 @@ msgstr ""
msgid "Photography"
msgstr "Nhiếp ảnh"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "Hình ảnh cho người lớn"
@@ -6874,9 +6957,9 @@ msgstr "Bảng tin đã ghim"
msgid "Pinned to your feeds"
msgstr "Đã ghim vào bảng tin của bạn"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "Phát"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "Phát {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "Phát video"
@@ -6893,11 +6976,11 @@ msgstr "Phát video"
msgid "Play Video"
msgstr "Phát video"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "Phát hoặc dừng GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "Phát hoặc dừng video"
@@ -6909,7 +6992,7 @@ msgstr "Phát GIF"
msgid "Plays the video"
msgstr "Phát video"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "Xin hãy thêm nhãn cảnh báo phù hợp với nội dung mà bạn đang đăng."
@@ -7066,31 +7149,31 @@ msgstr ""
msgid "Politics"
msgstr "Chính trị"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "Hình ảnh khiêu dâm"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "Đăng"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "Đăng"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr ""
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "Đăng tất cả"
@@ -7217,7 +7300,7 @@ msgstr "Nhấn để xem người theo dõi của tài khoản này mà bạn c
msgid "Preview"
msgstr ""
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "Hình trước"
@@ -7257,8 +7340,8 @@ msgstr ""
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "Chính sách bảo mật"
@@ -7266,7 +7349,11 @@ msgstr "Chính sách bảo mật"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "Đang xử lý video..."
@@ -7280,10 +7367,10 @@ msgstr "Đang xử lý..."
msgid "profile"
msgstr "hồ sơ"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "Hồ sơ"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Danh sách công khai, chia sẻ được của người dùng để cho việc ẩn hoặc chặn hàng loạt."
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "Đăng bài"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "Đăng bài"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "Đăng trả lời"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "Đăng trả lời"
@@ -7360,6 +7447,7 @@ msgstr ""
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "Trích dẫn bài đăng"
@@ -7385,7 +7473,7 @@ msgstr "Trích dẫn bài đăng đã bị tắt"
msgid "Quotes"
msgstr "Trích dẫn"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "Trích dẫn của bài đăng này"
@@ -7424,11 +7512,11 @@ msgstr ""
msgid "Read blog post"
msgstr "Đọc bài blog"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "Thu gọn"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "Xem thêm"
@@ -7720,13 +7808,13 @@ msgstr "Trả lời đã bị tắt"
msgid "Replies to this post are disabled."
msgstr "Trả lời cho bài đăng này đã bị tắt."
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "Trả lời"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Trả lời ({0, plural, other {# trả lời}})"
@@ -7892,7 +7980,7 @@ msgstr "Đăng lại bởi bạn"
msgid "Reposts"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "Lượt đăng lại của bài đăng này"
@@ -7996,14 +8084,14 @@ msgstr "Thử lại hành động cuối cùng (đã xảy ra lỗi)"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "Trở về trang trước"
msgid "Returns to home page"
msgstr "Trở về trang chủ"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Trở về trang trước"
@@ -8063,7 +8151,7 @@ msgstr "Quay lại bước trước đó"
msgid "Save"
msgstr "Lưu"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "Lưu"
@@ -8076,9 +8164,26 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "Lưu thay đổi"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "Lưu vào bảng tin của tôi"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr ""
@@ -8155,7 +8260,7 @@ msgstr "Cuộn đến đầu trang"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "Tìm kiếm"
@@ -8164,7 +8269,7 @@ msgstr "Tìm kiếm"
msgid "Search @{0}'s posts"
msgstr "Tìm kiếm bài đăng của @{0}"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "Tìm theo tên hoặc sở thích"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "Tìm bảng tin"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr ""
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr ""
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "Tìm kiếm bài đăng"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "Tìm hồ sơ"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "Tìm kiếm..."
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "Tìm hồ sơ"
@@ -8283,12 +8388,12 @@ msgstr "Xem bài đăng #{tag} từ người dùng"
msgid "See jobs at Bluesky"
msgstr "Xem công việc tại Bluesky"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr ""
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr ""
@@ -8456,7 +8561,7 @@ msgstr "Chọn ngôn ngữ ưa thích cho bản dịch trong bảng tin của b
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Gửi email"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "Gửi phản hồi"
@@ -8566,7 +8671,7 @@ msgstr "Đặt email để đặt lại mật khẩu"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "Cài đặt"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "Cài đặt được lưu"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "Hành vi gợi dục hoặc khỏa thân khiêu dâm."
@@ -8634,7 +8739,7 @@ msgstr "Khiêu dâm"
msgid "Share"
msgstr "Chia sẻ"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "Chia sẻ"
@@ -8712,13 +8817,13 @@ msgstr "Chia sẻ bảng tin yêu thích của bạn"
msgid "Shared Preferences Tester"
msgstr "Trình kiểm tra cài đặt đã chia sẻ"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "Hiện"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "Hiển thị văn bản thay thế"
@@ -8820,7 +8925,7 @@ msgstr "Hiển thị cảnh báo và bộ lọc từ bảng tin"
msgid "Show when you’re live"
msgstr ""
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "Hiển thị thông tin về thời gian đăng của bài này"
@@ -8828,8 +8933,8 @@ msgstr "Hiển thị thông tin về thời gian đăng của bài này"
msgid "Shows other accounts you can switch to"
msgstr "Hiển thị các tài khoản khác bạn có thể chuyển đổi sang"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "Hiển thị nội dung"
@@ -8842,14 +8947,14 @@ msgstr "Hiển thị nội dung"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "Yêu cầu đăng nhập"
msgid "Signed in as @{0}"
msgstr "Đăng nhâp bằng @{0}"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "Tài khoản tương tự"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr ""
msgid "Skip introduction and start using your account"
msgstr ""
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr ""
@@ -8967,7 +9068,7 @@ msgstr "Lập trình viên"
msgid "Some of your verifications are invalid."
msgstr "Một vài xác minh của bạn không hợp lệ."
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "Một số bảng tin khác bạn có thể thích"
@@ -8994,7 +9095,7 @@ msgstr "Có gì đó không đúng"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "Có gì đó không đúng, vui lòng thử lại"
@@ -9020,7 +9121,7 @@ msgstr "Có lỗi xảy ra. Xin vui lòng thử lại."
msgid "Something wrong? Let us know."
msgstr "Có gì không đúng? Hãy cho chúng tôi biết."
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr ""
@@ -9113,7 +9214,11 @@ msgstr "Gói khởi đầu"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Gói khởi đầu giúp bạn dễ dàng chia sẻ bảng tin và người yêu thích của mình với bạn bè."
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr ""
@@ -9181,11 +9286,11 @@ msgstr "Đăng ký @{0} để sử dụng nhãn:"
msgid "Subscribe to account activity"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "Đăng ký dịch vụ gắn nhãn"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "Đăng ký dịch vụ gắn nhãn này"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "Tài khoản đề xuất"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "Được đề xuất dành cho bạn"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "Đề xuất"
@@ -9354,8 +9459,8 @@ msgstr "Điều khoản"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "Điều khoản dịch vụ"
@@ -9403,12 +9508,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr "Hết!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "Hết bảng tin video!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "Tài khoản có thể tương tác với bạn sau khi bỏ chặn."
@@ -9447,7 +9552,7 @@ msgstr "Bảng tin Discover"
msgid "The Discover feed now knows what you like"
msgstr "Bảng tin Discover đã biết được bạn thích gì"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Trải nghiệm tốt hơn bằng ứng dụng. Tải Bluesky bây giờ và tiếp tục hành trình đang dở của bạn."
@@ -9527,7 +9632,7 @@ msgstr "Giao diện"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "Không có giới hạn thời gian cho việc vô hiệu hóa tài khoản, hãy quay lại bất cứ lúc nào."
@@ -9711,6 +9816,10 @@ msgstr "Không thể xem nội dung này nếu không có tài khoản Bluesky."
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Nội dung này thuộc tài khoản đã xóa hoặc vô hiệu hóa. Nhấn để xem tùy chọn"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr ""
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr ""
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Bảng tin này đang trống! Bạn có thể phải theo dõi thêm người dùng hoặc điều chỉnh cài đặt ngôn ngữ của mình."
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "Bảng tin này đang trống."
@@ -9798,7 +9907,7 @@ msgstr "Danh sách này đang trống."
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Dịch vụ kiểm duyệt này không khả dụng. Xem bên dưới để biết thêm chi tiết. Nếu vấn đề này vẫn tiếp tục, hãy liên hệ với chúng tôi."
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Bài đăng này khai rằng đã được tạo vào <0>{0}0>, nhưng lần đầu tiên được Bluesky nhìn thấy vào <1>{1}1>."
@@ -9818,7 +9927,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Bài đăng này sẽ bị ẩn khỏi bảng tin và thảo luận. Hành động này không thể hoàn tác."
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "Tác giả bài đăng này đã tắt chức năng trích dẫn bài đăng."
@@ -9834,7 +9943,7 @@ msgstr "Trả lời này sẽ được sắp xếp vào mục ẩn ở cuối th
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Dịch vụ này không cung cấp điều khoản dịch vụ hoặc chính sách bảo mật."
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -9900,8 +10009,8 @@ msgstr "Tác vụ này sẽ xóa bài đăng của bạn khỏi bài đăng trí
msgid "Thread options"
msgstr "Tùy chọn thảo luận"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "Cài đặt thảo luận"
@@ -9951,7 +10060,7 @@ msgstr "Hôm nay"
msgid "Toggle to enable or disable adult content"
msgstr "Bật/tắt nội dung 18+"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "Bật/tắt tiếng"
@@ -9988,8 +10097,8 @@ msgstr "Chủ đề"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "Dịch"
@@ -10091,15 +10200,15 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "Bỏ chặn"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "Bỏ chặn"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "Bỏ chặn tài khoản"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "Bỏ chặn tài khoản"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr ""
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr ""
@@ -10142,7 +10255,7 @@ msgstr "Bỏ chặn bài đăng lại"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Huỷ đăng lại ({0, plural, other {# đăng lại}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "Bỏ theo dõi {0}"
@@ -10151,7 +10264,7 @@ msgstr "Bỏ theo dõi {0}"
msgid "Unfollow account"
msgstr "Bỏ theo dõi tài khoản"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "Bỏ theo dõi người này"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "Bỏ thích"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Bỏ thích ({0, plural, other {# lượt thích}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "Bỏ ẩn danh sách"
msgid "Unmute thread"
msgstr "Bật lại thông báo cho thảo luận"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "Bật lại thông báo cho video"
@@ -10276,7 +10389,7 @@ msgstr ""
msgid "Unsnooze email reminder"
msgstr "Huỷ tạm bỏ qua lời nhắc email"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "Bỏ đăng ký"
@@ -10285,7 +10398,7 @@ msgstr "Bỏ đăng ký"
msgid "Unsubscribe from list"
msgstr "Bỏ đăng ký danh sách"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "Bỏ đăng ký dịch vụ gắn nhãn"
@@ -10293,7 +10406,7 @@ msgstr "Bỏ đăng ký dịch vụ gắn nhãn"
msgid "Unsubscribed from list"
msgstr "Đã bỏ đăng ký danh sách"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -10363,16 +10476,20 @@ msgstr "Tải lên từ Files"
msgid "Upload from Library"
msgstr "Tải lên từ Thư viện"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "Đang tải lên hình..."
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "Đang tải lên hình cho liên kết..."
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "Đang tải lên video..."
@@ -10389,8 +10506,8 @@ msgstr "Sử dụng nơi quản lý mặc định"
msgid "Use in-app browser"
msgstr "Dùng trình duyệt tích hợp"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "Dùng trình duyệt tích hợp để mở liên kết"
@@ -10445,6 +10562,10 @@ msgstr "Người dùng chặn bạn"
msgid "User list by {0}"
msgstr "Danh sách người dùng của {0}"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr ""
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "Danh sách người của bạn"
@@ -10597,8 +10718,8 @@ msgstr ""
msgid "Version {0}"
msgstr ""
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "Video"
@@ -10614,20 +10735,24 @@ msgstr "Bảng tin video"
msgid "Video from {0}: {text}"
msgstr "Video từ {0}: {text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "Trò chơi điện tử"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "Đã tạm dừng video"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "Đang phát video"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "Không tìm thấy video."
@@ -10635,11 +10760,11 @@ msgstr "Không tìm thấy video."
msgid "Video settings"
msgstr "Cài đặt video"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "Đã tải lên video"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "Video: {0}"
@@ -10647,23 +10772,23 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Video"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "Xem hình đại diện của {0}"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "Xem hồ sơ của {0}"
@@ -10708,7 +10833,7 @@ msgstr "Xem thêm"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr ""
@@ -10788,7 +10913,7 @@ msgstr ""
msgid "Visit site"
msgstr ""
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr ""
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "Chúng tôi đang gặp vấn đề mạng, hãy thử lại"
@@ -10968,7 +11093,7 @@ msgstr "Xin lỗi, chung tối không thể tải từ cấm của bạn vào l
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Xin lỗi, chúng tôi không thể hoàn thành tìm kiếm của bạn. Vui lòng thử lại sau vài phút."
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Xin lỗi! Bài đăng bạn đang trả lời đã bị xóa."
@@ -10977,7 +11102,7 @@ msgstr "Xin lỗi! Bài đăng bạn đang trả lời đã bị xóa."
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Xin lỗi! Chúng tôi không thể tìm thấy trang bạn đang tìm kiếm."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Xin lỗi! Bạn chỉ có thể đăng ký tối đa hai mươi dịch vụ gắn nhãn, và bạn đã đạt giới hạn hai mươi."
@@ -11018,10 +11143,9 @@ msgstr "Bạn quan tâm đến những gì?"
msgid "What do you want to call your starter pack?"
msgstr "Bạn muốn gọi gói khởi đầu của mình là gì?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "Có gì mới?"
@@ -11097,6 +11221,14 @@ msgstr "Tại sao người dùng này cần được xem xét?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "Soạn một tin nhắn"
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "Soạn bài đăng"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "Soạn trả lời"
@@ -11133,8 +11265,8 @@ msgstr ""
msgid "Yes"
msgstr "Có"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "Có, vô hiệu hóa"
@@ -11188,7 +11320,7 @@ msgstr "Bạn đang trong hàng chờ."
msgid "You are Live"
msgstr ""
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr ""
@@ -11200,7 +11332,7 @@ msgstr "Bạn không được phép tải lên video."
msgid "You are not following anyone yet"
msgstr ""
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr ""
@@ -11255,11 +11387,11 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Bạn có thể đăng nhập bằng mật khẩu mới của mình."
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr ""
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "Bạn có thể kích hoạt lại tài khoản của mình để tiếp tục đăng nhập. Hồ sơ và bài đăng của bạn sẽ hiển thị cho người dùng khác."
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr ""
@@ -11317,7 +11449,7 @@ msgstr "Bạn đã chặn người dùng này"
msgid "You have blocked this user. You cannot view their content."
msgstr "Bạn đã chặn người dùng này. Bạn không thể xem nội dung của họ."
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr ""
@@ -11376,6 +11508,14 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Bạn đã tạm thời đạt giới hạn tải lên video. Vui lòng thử lại sau."
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "Bạn chưa tạo gói khởi đầu nào!"
@@ -11437,7 +11577,7 @@ msgstr ""
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Bạn phải theo dõi ít nhất bảy người khác để tạo gói khởi đầu."
@@ -11449,7 +11589,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr "Bạn phải cấp quyền truy cập vào thư viện ảnh của mình để lưu mã QR"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr ""
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "Bạn đang trong hàng chờ"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "Bạn đang đăng nhập bằng Mật khẩu Ứng dụng. Vui lòng đăng nhập bằng mật khẩu chính để tiếp tục vô hiệu hóa tài khoản."
@@ -11589,7 +11729,7 @@ msgstr "Bạn đã đến quá giới hạn tải lên video hàng ngày (quá n
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Bạn đã đến giới hạn tải lên video hàng ngày (quá nhiều video)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Không còn video để xem nữa. Có lẽ đây là thời điểm thích hợp để nghỉ giải lao?"
@@ -11625,7 +11765,7 @@ msgstr "Khiếu nại của bạn đã được gửi. Nếu khiếu nại của
msgid "Your birth date"
msgstr "Ngày sinh của bạn"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Trình duyệt của bạn không hỗ trợ định dạng video. Vui lòng thử trình duyệt khác."
@@ -11692,8 +11832,8 @@ msgstr "Tên tài khoản đầy đủ của bạn sẽ là <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "Mục quan tâm của bạn"
@@ -11731,11 +11871,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr "Mật khẩu của bạn phải có ít nhất 8 ký tự."
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr ""
@@ -11752,11 +11892,11 @@ msgstr ""
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr ""
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Hồ sơ, bài đăng, bảng tin, và danh sách của bạn sẽ không còn hiển thị cho người dùng Bluesky khác. Bạn có thể kích hoạt lại tài khoản bất kì lúc nào bằng cách đăng nhập."
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr ""
diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po
index 3c6d865b99..1b197ab219 100644
--- a/src/locale/locales/zh-CN/messages.po
+++ b/src/locale/locales/zh-CN/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# 次转发} other {# 次转发}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# 秒} other {# 秒}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# 条未读} other {# 条未读}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# 条未读} other {# 条未读}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {#个月} other {#个月}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural,one {还有一则贴文} other {还有 # 则贴文}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {关注者} other {关注者}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {正在关注} other {正在关注}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {喜欢} other {喜欢}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {喜欢} other {喜欢}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {帖文} other {帖文}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {引用} other {引用}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {转发} other {转发}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {收藏} other {收藏}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{1} {0}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0}(账户)"
@@ -189,11 +193,11 @@ msgstr "{0} 作出了 {1} 反应"
msgid "{0} reacted {1} to {2}"
msgstr "{0} 对 {2} 作出了 {1} 反应"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0},由 {1} 提供的动态源,被 {2} 喜欢"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0},由 {1} 创建的列表"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural,other {# 位用户}}已加入!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, one {# 分钟} other {# 分钟}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# 条未读通知} other {# 条未读通知}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}、0><1>{1}1> 及{2, plural, one {其他 # } other {其他 # }}人已包含在你的新手包中"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {关注者} other {关注者}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {正在关注} other {正在关注}}"
@@ -580,6 +584,11 @@ msgstr "一张展示帖文收藏功能的屏幕截图,显示在分享按钮旁
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "一张个人主页的截图,显示“关注”按钮旁新增的提醒图标,用于介绍全新动态通知功能。"
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "再添加至少 {0} 个以继续"
msgid "Add {displayName} to starter pack"
msgstr "添加 {displayName} 至新手包"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "添加内容警告"
@@ -754,11 +763,11 @@ msgstr "添加替代文本(可选)"
msgid "Add another account"
msgstr "添加其他账户"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "添加另一则帖文"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "添加另一则帖文至帖文串"
@@ -776,12 +785,12 @@ msgstr "添加应用密码"
msgid "Add emoji reaction"
msgstr "添加表情符号反应"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "添加图片"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "添加媒体内容至帖文"
@@ -871,7 +880,7 @@ msgstr "补充说明(一千个字以内)"
msgid "Additional details (limit 300 characters)"
msgstr "补充说明(300 个字以内)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "色情"
@@ -879,10 +888,10 @@ msgstr "色情"
msgid "Adult content"
msgstr "成人内容"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "成人内容"
@@ -894,8 +903,8 @@ msgstr "仅可通过网页端(<0>bsky.app0>)启用成人内容显示。"
msgid "Adult content is disabled."
msgstr "成人内容显示已停用。"
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "成人内容标记"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "全部"
@@ -1017,7 +1026,7 @@ msgstr "已经有账户了?"
msgid "Already signed in as @{0}"
msgstr "已经以 @{0} 身份登录"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "替代文本"
msgid "Alt text"
msgstr "替代文本"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "替代文本"
@@ -1059,7 +1068,7 @@ msgstr "已发送一封电子邮件至 {0}。它包含你需要在下方输入
msgid "An error has occurred"
msgstr "发生错误"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "发生错误"
@@ -1067,7 +1076,7 @@ msgstr "发生错误"
msgid "An error occurred while compressing the video."
msgstr "压缩视频时发生错误。"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "获取建议的账户出错。"
@@ -1076,7 +1085,7 @@ msgstr "获取建议的账户出错。"
msgid "An error occurred while fetching the feed."
msgstr "载入动态源时发生错误。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "创建新手包时发生错误,要再试一次吗?"
@@ -1088,7 +1097,7 @@ msgstr "隐藏建议时发生错误。{0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "播放视频时发生错误,请重试。"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "播放视频时发生错误,请重试。"
@@ -1137,7 +1146,7 @@ msgstr "不在这些选项中的问题"
#: src/components/dms/dialogs/NewChatDialog.tsx:39
msgid "An issue occurred starting the chat"
-msgstr "开启新私信时出现问题"
+msgstr "发起私信时出现问题"
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:48
msgid "An issue occurred while trying to open the chat"
@@ -1181,7 +1190,7 @@ msgstr "动物福利"
msgid "Animals"
msgstr "动物"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF 动画"
@@ -1237,11 +1246,11 @@ msgstr "应用密码名称不得与现有的重复"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62
msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores"
-msgstr "应用密码只能包含字母、数字、空格、连字符(-)及下划线(_)"
+msgstr "应用密码名称只能包含字母、数字、空格、连字符(-)及下划线(_)"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80
msgid "App password names must be at least 4 characters long"
-msgstr "应用密码至少应包含 4 个字符"
+msgstr "应用密码名称至少应包含 4 个字符"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:71
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:74
@@ -1306,12 +1315,12 @@ msgstr "使用默认推荐的动态源"
msgid "Apply Pull Request"
msgstr "应用提交变更"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "自 {0} 起被归档"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "已归档帖文"
@@ -1332,11 +1341,11 @@ msgstr "你确定要删除此新手包吗?"
msgid "Are you sure you want to discard your changes?"
msgstr "你确定要放弃更改吗?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "你确定要离开这个对话吗?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "你确定要离开此对话吗?此操作将仅为你删除对话,而不会为其他参与者删除。"
@@ -1344,11 +1353,7 @@ msgstr "你确定要离开此对话吗?此操作将仅为你删除对话,而
msgid "Are you sure you want to remove this from your feeds?"
msgstr "你确定要将此从你的动态源中删除吗?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "你确定要舍弃这段草稿吗?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "你确定要放弃发布这则帖文吗?"
@@ -1364,7 +1369,7 @@ msgstr "你正在使用 <0>{suggestedLanguageName}0> 撰写吗?"
msgid "Art"
msgstr "艺术"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "带有艺术性或非色情的裸露。"
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "极光"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "自动播放视频及 GIF"
@@ -1404,11 +1409,13 @@ msgstr "可用"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "返回"
@@ -1578,7 +1585,7 @@ msgstr "博客"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky 无法确认帖文发布时间的真实性。"
@@ -1623,7 +1630,7 @@ msgstr "Bluesky 服务条款"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Bluesky 将你的联系人信息编码加密存储,若你删除联系人将会立即删除此数据。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky 将从你的关系网中选择一组推荐关注的账户。"
@@ -1664,20 +1671,20 @@ msgstr "违反站点规则"
msgid "Browse custom feeds"
msgstr "浏览自定义动态源"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "浏览更多账户"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "在探索页面浏览更多动态源"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "浏览更多建议"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "在探索页面浏览更多建议"
@@ -1770,8 +1777,8 @@ msgstr "相机"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "相机"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "取消搜索"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "无法与被屏蔽的用户进行互动"
@@ -1901,9 +1908,9 @@ msgstr "已保存更改"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "私信"
@@ -1989,7 +1996,7 @@ msgstr "选择验证域名的方式"
msgid "Choose Feeds"
msgstr "选择动态源"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "帮我选择"
@@ -2096,6 +2103,7 @@ msgstr "哒哒🐴哒哒🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "哒哒🐴哒哒🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,7 +2176,8 @@ msgstr "关闭 GIF 对话框"
msgid "Close image"
msgstr "关闭图片"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr "关闭图片查看器"
@@ -2190,7 +2199,7 @@ msgstr "关闭欢迎界面"
msgid "Closes password update alert"
msgstr "关闭密码更新警告"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "关闭编辑器并舍弃草稿"
@@ -2242,12 +2251,12 @@ msgstr "完成入门引导并开始使用你的账户"
msgid "Complete the challenge"
msgstr "完成验证"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "撰写新帖文"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "撰写最多 {0, plural,other {# 个字符}} 的帖文"
@@ -2255,7 +2264,11 @@ msgstr "撰写最多 {0, plural,other {# 个字符}} 的帖文"
msgid "Compose reply"
msgstr "撰写回复"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "正在压缩视频……"
@@ -2263,7 +2276,6 @@ msgstr "正在压缩视频……"
msgid "Configure content filtering setting for category: {name}"
msgstr "配置 {name} 类别的内容过滤设置"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "配置直播活动横幅"
@@ -2272,8 +2284,8 @@ msgstr "配置直播活动横幅"
msgid "Configured in <0>moderation settings0>."
msgstr "已在 <0>内容审核设置0> 中进行配置。"
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "已导入通讯录"
msgid "Contacts removed"
msgstr "已删除通讯录"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "内容与媒体"
@@ -2389,7 +2401,7 @@ msgstr "宣扬或提倡自残内容"
msgid "Content Warning"
msgstr "内容警告"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "内容警告"
@@ -2401,7 +2413,7 @@ msgstr "上下文菜单背景,点击以关闭菜单。"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "继续"
@@ -2420,7 +2432,7 @@ msgstr "加载更多帖文串……"
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "无法关注所有匹配的联系人。{0}"
msgid "Could not leave chat"
msgstr "无法离开对话"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "无法加载动态源"
@@ -2643,8 +2655,8 @@ msgstr "为新手包创建二维码"
msgid "Create a starter pack"
msgstr "创建新手包"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "创建新手包"
@@ -2654,12 +2666,12 @@ msgstr "为我创建新手包"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "再创建一个"
msgid "Create moderation list"
msgstr "创建内容审核列表"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "创建新的账户"
@@ -2772,7 +2784,7 @@ msgstr "出生日期"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "停用账户"
@@ -2871,7 +2883,7 @@ msgstr "删除我的账户"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "删除帖文"
@@ -2981,7 +2993,7 @@ msgstr "禁止其他人引用这则帖文"
msgid "Disable replies entirely"
msgstr "完全禁用回复"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "停用字幕"
@@ -2996,8 +3008,11 @@ msgstr "停用"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "舍弃"
@@ -3006,11 +3021,12 @@ msgstr "舍弃"
msgid "Discard changes?"
msgstr "要放弃更改吗?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "要舍弃草稿吗?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "要放弃发布吗?"
@@ -3035,9 +3051,9 @@ msgstr "跳过"
#: src/components/contacts/FindContactsBannerNUX.tsx:76
msgid "Dismiss banner"
-msgstr "关闭横幅提示"
+msgstr "忽略横幅提示"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "忽略错误"
@@ -3049,11 +3065,16 @@ msgstr "跳过入门指南"
msgid "Dismiss interests"
msgstr "忽略兴趣"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "关闭直播活动横幅"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "忽略此部分"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "忽略此建议"
@@ -3090,7 +3111,7 @@ msgstr "域名已通过验证!"
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:380
msgid "Don't have a code or need a new one? <0>Click here.0>"
-msgstr "没有验证码或需要重新请求一个?<0>点击这里。0>"
+msgstr "没有收到或需要新的验证码?<0>点击这里。0>"
#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37
msgid "Don't see an email? <0>Click here to resend.0>"
@@ -3121,8 +3142,8 @@ msgstr "别担心!你现有的对话及设置都已保存,只需验证你已
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "双击或长按私信以添加反应"
msgid "Double tap to close the dialog"
msgstr "双击以关闭对话框"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "双击以点赞"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "下载 Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "下载 CAR 文件"
msgid "Doxxing"
msgstr "人肉搜索"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "草稿"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "拖放以新增图片"
@@ -3285,13 +3313,13 @@ msgstr "编辑帖文互动选项"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "编辑个人资料"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "编辑个人资料"
@@ -3413,7 +3441,7 @@ msgstr "启用推送通知"
msgid "Enable quote posts of this post"
msgstr "允许其他人引用这则帖文"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "启用字幕"
@@ -3421,13 +3449,13 @@ msgstr "启用字幕"
msgid "Enable this source only"
msgstr "仅启用此来源"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "启用热门话题"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "在你的“Discover”动态源中启用热门视频"
@@ -3464,7 +3492,7 @@ msgstr "输入字词或标签"
msgid "Enter code"
msgstr "输入验证码"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "进入全屏模式"
@@ -3501,7 +3529,7 @@ msgstr "输入你的密码"
msgid "Enter your username and password"
msgstr "输入你的用户名和密码"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "进入全屏模式"
@@ -3509,7 +3537,7 @@ msgstr "进入全屏模式"
msgid "Entertainment"
msgstr "娱乐"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "错误"
@@ -3570,7 +3598,7 @@ msgstr "排除你已关注的用户"
msgid "Excludes users you follow"
msgstr "排除你已关注的用户"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "退出全屏模式"
@@ -3578,11 +3606,7 @@ msgstr "退出全屏模式"
msgid "Exits account deletion process"
msgstr "退出删除账户"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "退出图片查看器"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "展开替代文本"
@@ -3598,11 +3622,11 @@ msgstr "展开或折叠你正在回复的完整帖文"
msgid "Expand post text"
msgstr "展开帖文文本"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "展开或折叠帖文文本"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "URL 应解析为记录"
@@ -3639,7 +3663,7 @@ msgstr "露骨的色情图片。"
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "探索"
@@ -3657,8 +3681,8 @@ msgstr "导出账户数据"
msgid "Export My Data"
msgstr "导出账户数据"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "外部媒体"
@@ -3730,7 +3754,7 @@ msgstr "无法删除帖文,请重试"
msgid "Failed to delete starter pack"
msgstr "无法删除新手包"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "无法关注所有建议的账户,请重试"
@@ -3829,6 +3853,10 @@ msgstr "无法撤回认证"
msgid "Failed to resolve location. Please try again."
msgstr "无法获取位置信息,请重试。"
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "无法保存草稿"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "动态源"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "由 {0} 创建的动态源"
@@ -3941,7 +3970,7 @@ msgstr "动态源不可用"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "反馈"
@@ -3958,7 +3987,7 @@ msgstr "已提交反馈给动态源维护者"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "动态源"
@@ -4008,6 +4037,10 @@ msgstr "筛选你想接收的通知来源"
msgid "Finalizing"
msgstr "正在完成"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "终于来啦!收藏你感兴趣的帖文,以便能随时回来查看。"
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "寻找我的朋友"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "寻找一些人来关注"
@@ -4098,19 +4131,19 @@ msgstr "聚焦代码栏位"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "关注"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "关注 {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "关注 {handle}"
@@ -4133,7 +4166,7 @@ msgstr "关注账户"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "关注账户"
msgid "Follow all"
msgstr "全部关注"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "关注所有账户"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "回关"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "关注所有账户!"
@@ -4195,8 +4228,8 @@ msgstr "你认识的关注者"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "正在关注"
msgid "Following {0}"
msgstr "已关注 {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "已关注 {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "“Following”动态源偏好设置"
@@ -4264,7 +4297,7 @@ msgstr "出于安全原因,你将无法再次查看此应用密码。若你忘
msgid "For the best experience, we recommend using the theme font."
msgstr "我们建议你使用主题字体,以获得最佳使用体验。"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "为你推荐"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "来自 <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "创建一个新手包"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "获取帮助"
@@ -4376,10 +4409,15 @@ msgstr "当某人发帖时收到提醒"
msgid "Get started"
msgstr "开始吧"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "为你的个人资料选择头像"
@@ -4394,12 +4432,12 @@ msgstr "颂扬暴力"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "返回"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "你账户的直播功能已被停用"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "敏感/写实媒体"
@@ -4574,7 +4612,7 @@ msgstr "仇恨言论"
#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:317
msgid "Have a code? <0>Click here.0>"
-msgstr "拥有验证码?<0>点击这里。0>"
+msgstr "已经有验证码了?<0>点击这里。0>"
#: src/screens/Signup/StepInfo/index.tsx:330
msgid "Have we got your location wrong? <0>Tap here to confirm your location with GPS.0>"
@@ -4592,7 +4630,7 @@ msgstr "由 Bluesky 保留 7 天以防止滥用,并在之后删除"
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "帮助"
@@ -4632,9 +4670,9 @@ msgstr "隐藏列表"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "隐藏用户列表"
msgid "Hide verification badges"
msgstr "隐藏认证徽章"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "隐藏内容"
@@ -4760,9 +4798,9 @@ msgstr "请稍等!我们正在逐步开放上传视频的权限。你目前仍
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "主页"
@@ -4819,7 +4857,7 @@ msgstr "我了解"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "我在 Bluesky 的账户是 {0} —— 快来和我一起使用吧!https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "若替代文本过长,切换替代文本的展开状态"
@@ -4872,7 +4910,7 @@ msgstr "如果你想限制其他人接收你账户的动态提醒,可以转到
msgid "If you're a developer, you can host your own server."
msgstr "如果你是开发者,你可以自行托管服务器。"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "如果你想更改你的账户代码或电子邮箱,请记得在停用之前进行更改。"
@@ -4996,6 +5034,10 @@ msgstr "互动选项"
msgid "Introducing activity notifications"
msgstr "全新推出动态提醒"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "隆重介绍通过通讯录寻找朋友"
@@ -5089,7 +5131,7 @@ msgstr "现在新手包里只有<0>{0}0>!通过上面的搜索功能将更
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "现在只有你一个!通过上面的列表将更多人添加到你的新手包里面。"
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "作业 ID:{0}"
@@ -5122,20 +5164,20 @@ msgstr "保持联系"
msgid "KWS website"
msgstr "KWS 官网"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "由 {0} 标记。"
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "由发布者标记。"
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "标记"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "已添加标记"
@@ -5218,8 +5260,8 @@ msgstr "了解更多导入通讯录功能"
msgid "Learn more about self hosting your PDS."
msgstr "深入了解有关自行托管 PDS 的信息。"
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "深入了解有关应用于该内容的内容审核信息"
@@ -5231,7 +5273,7 @@ msgstr "要了解有关改动的更多资讯,以及如何与我们分享你的
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "你可以阅读我们的博客文章,了解有关改动的更多资讯,以及如何与我们分享你的想法。"
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "深入了解有关此警告的信息"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "在你的<0>账户设置0>了解详情"
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "了解详情。"
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "离开"
@@ -5286,7 +5328,7 @@ msgstr "离开 Bluesky"
msgid "left to go."
msgstr "个人排在你前面。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "自定义"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "喜欢"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "喜欢({0, plural, one {# 次喜欢} other {# 次喜欢}})"
@@ -5380,7 +5422,7 @@ msgstr "喜欢你转发的帖文"
msgid "Likes of your reposts notifications"
msgstr "喜欢你转发帖文的通知"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "这则帖文的喜欢数"
@@ -5474,7 +5516,7 @@ msgstr "已取消隐藏该列表"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "列表"
@@ -5496,10 +5538,20 @@ msgstr "直播"
msgid "Live event happening now: {0}"
msgstr "正在进行的直播活动:{0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "已隐藏直播活动"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "直播活动选项"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "已取消隐藏直播活动"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "每逢发生精彩活动时,我们会在这里及时呈现给你。你可以隐藏这则活动,或直接隐藏今后所有直播活动的显示。"
@@ -5524,11 +5576,11 @@ msgstr "加载更多"
msgid "Load more suggested feeds"
msgstr "加载更多建议的动态源"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "加载更多通知"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "网站标志由 @sawaratsuki.bsky.social 绘制"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "网站标志由 <0>@sawaratsuki.bsky.social0> 绘制"
@@ -5600,8 +5652,8 @@ msgstr "帮我选择"
msgid "Make sure this is where you intend to go!"
msgstr "请确认目标页面地址是否正确!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "管理已保存的动态源"
@@ -5638,7 +5690,16 @@ msgstr "之后再说"
msgid "Media"
msgstr "媒体"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "媒体文件已存储到{0}"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "媒体文件已存储到其他设备"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "可能会令部分受众不安或造成不适的媒体内容。"
@@ -5653,7 +5714,7 @@ msgstr "被提及的用户"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "提及"
@@ -5716,6 +5777,10 @@ msgstr "其他通知"
msgid "Misleading"
msgstr "误导"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "缺失媒体文件"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "更多语言……"
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "电影"
msgid "Music"
msgstr "音乐"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,14 +6005,14 @@ msgstr "转到新手包"
msgid "Navigates to the next screen"
msgstr "转到下一页"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "转到个人资料"
#: src/components/moderation/ReportDialog/index.tsx:327
#: src/components/moderation/ReportDialog/index.tsx:344
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
-msgstr "需要举报侵害版权、法律要求及合规性问题?"
+msgstr "需要举报侵害版权、法律要求及合规性问题吗?"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:583
msgid "Nevermind, create a handle for me"
@@ -5983,6 +6049,7 @@ msgstr "新的电子邮箱地址"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "新功能"
@@ -6018,12 +6085,12 @@ msgstr "新私信"
msgid "New password"
msgstr "新密码"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "新帖文"
@@ -6085,7 +6152,7 @@ msgstr "新闻"
msgid "Next"
msgstr "下一步"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "下一张图片"
@@ -6114,6 +6181,10 @@ msgstr "目前还没有自定义动态源"
msgid "No DNS Panel"
msgstr "没有 DNS 面板"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "目前还没有草稿"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "未设置到期时间"
@@ -6136,7 +6207,7 @@ msgstr "没有图片"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "目前还没有喜欢"
@@ -6150,7 +6221,7 @@ msgstr "没有列表"
msgid "No longer following {0}"
msgstr "已不再关注 {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "目前还没有媒体内容"
@@ -6195,7 +6266,7 @@ msgstr "目前还没有帖文"
msgid "No quotes yet"
msgstr "目前还没有引用"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "目前还没有回复"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "没有结果"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "没有结果"
@@ -6238,7 +6309,7 @@ msgstr "没有结果。"
msgid "No search results found for \"{search}\"."
msgstr "找不到符合“{search}”的搜索结果。"
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "目前还没有新手包"
@@ -6247,7 +6318,7 @@ msgstr "目前还没有新手包"
msgid "No thanks"
msgstr "不,谢谢"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "目前还没有视频帖文"
@@ -6298,6 +6369,10 @@ msgstr "没有任何你认识的人关注"
msgid "Not Found"
msgstr "找不到"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "分享注意事项"
@@ -6321,7 +6396,7 @@ msgstr "目前没有收藏内容"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "通知设置"
@@ -6349,10 +6424,10 @@ msgstr "通知提示音"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "通知"
@@ -6368,8 +6443,8 @@ msgstr "现在"
msgid "Now"
msgstr "现在"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "裸露"
@@ -6390,7 +6465,7 @@ msgstr "糟糕!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "好的"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "好的"
@@ -6417,23 +6492,23 @@ msgstr "于<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "重新开始入门引导"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "至少有一张 GIF 缺失了替代文本。"
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "至少有一张图片缺失了替代文本。"
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "你所选中的部分文件格式不被支持。"
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "你选中的部分太大,最大的文件大小为 100 MB。"
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "至少有一段视频缺失了替代文本。"
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "糟糕,出了点问题!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "糟糕!"
msgid "Open avatar creator"
msgstr "开启头像创建工具"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "开启相机"
@@ -6485,12 +6560,16 @@ msgstr "开启相机"
msgid "Open conversation options"
msgstr "开启对话选项"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "开启草稿"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "开启抽屉菜单"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "开启表情符号选择器"
@@ -6557,7 +6636,7 @@ msgstr "开启系统日志"
msgid "Opens {0} feed"
msgstr "开启 {0} 动态源"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "开启对话框以向你的帖文内容添加警告"
@@ -6589,25 +6668,25 @@ msgstr "开启更改账户代码对话框"
msgid "Opens composer"
msgstr "开启编辑器"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "开启设备相机"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "开启设备相册以选择最多 {MAX_IMAGES, plural, other {# 张图片}}、单段视频或一张 GIF。"
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "开启表情符号选择器"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "开启创建新 Bluesky 账户流程"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "开启登录到你现有的 Bluesky 账户流程"
@@ -6620,7 +6699,7 @@ msgstr "开启 GIF 选择对话框"
msgid "Opens helpdesk in browser"
msgstr "在浏览器中打开说明中心"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "开启图片选择器"
@@ -6640,10 +6719,14 @@ msgstr "开启密码重置申请"
msgid "Opens post language settings"
msgstr "开启帖文语言设置"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "开启帖文编辑器"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "在编辑器中开启这份草稿"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "OTA 状态:无可用"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "其他"
@@ -6763,13 +6846,13 @@ msgstr "已更新密码"
msgid "Password updated!"
msgstr "已更新密码!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "暂停"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "暂停视频"
@@ -6829,7 +6912,7 @@ msgstr "已验证电话号码"
msgid "Photography"
msgstr "摄影"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "不适合未成年人的图片。"
@@ -6874,9 +6957,9 @@ msgstr "已固定的动态源列表"
msgid "Pinned to your feeds"
msgstr "已固定到你的动态源中"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "播放"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "播放 {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "播放视频"
@@ -6893,11 +6976,11 @@ msgstr "播放视频"
msgid "Play Video"
msgstr "播放视频"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "播放或暂停 GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "播放或暂停视频"
@@ -6909,7 +6992,7 @@ msgstr "播放 GIF"
msgid "Plays the video"
msgstr "播放视频"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "请为你所发布的媒体内容添加适当的内容警告标签。"
@@ -7066,31 +7149,31 @@ msgstr "请在以下栏位填写你的信息:"
msgid "Politics"
msgstr "政治"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "色情"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "帖文"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "发布"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "发布一张图片"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "发布一段视频"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "全部发布"
@@ -7217,7 +7300,7 @@ msgstr "点按此处以查看同样关注该账户的关注者"
msgid "Preview"
msgstr "预览"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "上一张图片"
@@ -7257,8 +7340,8 @@ msgstr "隐私与安全设置"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "隐私政策"
@@ -7266,7 +7349,11 @@ msgstr "隐私政策"
msgid "Privacy violation of a minor"
msgstr "侵犯未成年隐私"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "正在处理视频……"
@@ -7280,10 +7367,10 @@ msgstr "处理中……"
msgid "profile"
msgstr "个人资料"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "个人资料"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "公开且可对外分享的列表,可用来批量隐藏或屏蔽账户。"
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "发布帖文"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "发布帖文"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "发布回复"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "发布回复"
@@ -7360,6 +7447,7 @@ msgstr "引用通知"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "引用帖文"
@@ -7385,7 +7473,7 @@ msgstr "已停用帖文引用"
msgid "Quotes"
msgstr "引用"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "引用这则帖文"
@@ -7424,11 +7512,11 @@ msgstr "阅读如何使用搜索过滤器"
msgid "Read blog post"
msgstr "阅读博客文章"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "查看更少"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "查看更多"
@@ -7720,13 +7808,13 @@ msgstr "已停用回复"
msgid "Replies to this post are disabled."
msgstr "这则帖文的回复已被停用。"
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "回复"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "回复({0, plural, one {# 则回复} other {# 则回复}})"
@@ -7892,7 +7980,7 @@ msgstr "你已转发"
msgid "Reposts"
msgstr "转发"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "转发这则帖文"
@@ -7996,14 +8084,14 @@ msgstr "重试上次出错的操作"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "返回上一页"
msgid "Returns to home page"
msgstr "返回主页"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "返回上一页"
@@ -8063,7 +8151,7 @@ msgstr "返回上一步"
msgid "Save"
msgstr "保存"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "保存"
@@ -8076,9 +8164,26 @@ msgstr "保存出生日期"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "保存更改"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "保存更改?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "保存草稿"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "保存草稿?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "保存到我的动态源"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "收藏"
@@ -8155,7 +8260,7 @@ msgstr "滚动到顶部"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "搜索"
@@ -8164,7 +8269,7 @@ msgstr "搜索"
msgid "Search @{0}'s posts"
msgstr "搜索 @{0} 的帖文"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "按名称或兴趣搜索"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "搜索动态源"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "搜索“{interestsDisplayName}”"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "搜索“{interestsDisplayName}“(已选中)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "搜索帖文"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "搜索个人资料"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "搜索……"
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "搜索个人资料"
@@ -8283,12 +8388,12 @@ msgstr "查看该用户包含 #{tag} 的帖文"
msgid "See jobs at Bluesky"
msgstr "查看 Bluesky 的工作职缺"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "浏览更多"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "查看更多建议的个人资料"
@@ -8456,7 +8561,7 @@ msgstr "选择你在订阅的动态源中翻译的目标语言。"
msgid "Select your preferred notification channels"
msgstr "自定义你的通知推送选项"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "不支持选择多种媒体类型。"
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "发送电子邮件"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "提交反馈"
@@ -8566,7 +8671,7 @@ msgstr "设置用于重置密码的电子邮箱"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "设置"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "已保存设置"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "性行为或色情裸露。"
@@ -8634,7 +8739,7 @@ msgstr "性暗示"
msgid "Share"
msgstr "分享"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "分享"
@@ -8712,13 +8817,13 @@ msgstr "分享你最喜欢的动态源吧!"
msgid "Shared Preferences Tester"
msgstr "共享偏好测试器"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "显示"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "显示替代文本"
@@ -8820,7 +8925,7 @@ msgstr "显示警告并从动态源中过滤"
msgid "Show when you’re live"
msgstr "显示直播状态"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "显示这则帖文的创建时间"
@@ -8828,8 +8933,8 @@ msgstr "显示这则帖文的创建时间"
msgid "Shows other accounts you can switch to"
msgstr "显示可供你切换的其他账户"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "显示内容"
@@ -8842,14 +8947,14 @@ msgstr "显示内容"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "需要登录"
msgid "Signed in as @{0}"
msgstr "以 @{0} 的身份登录"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "类似账户"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "跳过分享通讯录并继续使用应用程序"
msgid "Skip introduction and start using your account"
msgstr "跳过介绍并开始使用你的账户"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "跳至下一步"
@@ -8967,7 +9068,7 @@ msgstr "程序开发"
msgid "Some of your verifications are invalid."
msgstr "你当前被授予的部分认证无效。"
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "其他你可能喜欢的动态源"
@@ -8994,7 +9095,7 @@ msgstr "出了点问题"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "出了点问题,请重试"
@@ -9018,9 +9119,9 @@ msgstr "发生错误,请重试。"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:541
msgid "Something wrong? Let us know."
-msgstr "有点问题?请告诉我们。"
+msgstr "看起来有点问题?请告诉我们。"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "很抱歉,我们现在无法加载帐户建议。"
@@ -9061,7 +9162,7 @@ msgstr "运动"
#: src/components/PostControls/ShareMenu/RecentChats.tsx:207
msgid "Start a conversation, and it will appear here."
-msgstr "当你和其他人开启一段对话后,对话就会出现在这里。"
+msgstr "当你和其他人开始聊天后,对话就会出现在这里。"
#: src/components/dms/dialogs/NewChatDialog.tsx:75
msgid "Start a new chat"
@@ -9113,7 +9214,11 @@ msgstr "新手包"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "新手包能使你轻松与朋友分享你喜欢的用户和动态源。"
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "新手包能使你与朋友分享你喜欢的用户和动态源。"
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "新手包能使你与朋友分享你喜欢的动态源与人物。"
@@ -9181,11 +9286,11 @@ msgstr "订阅 @{0} 以使用这些标记:"
msgid "Subscribe to account activity"
msgstr "订阅账户动态"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "订阅标记者"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "订阅此标记者"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "推荐账户"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "为你推荐"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "性暗示"
@@ -9354,8 +9459,8 @@ msgstr "条款"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "服务条款"
@@ -9403,12 +9508,12 @@ msgstr "该用户名已被占用"
msgid "That's all, folks!"
msgstr "就这些,完毕!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "就这些了!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "取消屏蔽后,该账户将重新能够与你互动。"
@@ -9447,7 +9552,7 @@ msgstr "“Discover”动态源"
msgid "The Discover feed now knows what you like"
msgstr "现在“Discover”动态源了解你的喜好内容了"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "使用 App 的体验会更好。现在下载 Bluesky,我们将从你离开的的地方继续。"
@@ -9527,7 +9632,7 @@ msgstr "主题"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "更改出生日期的频率有限制,你可能需要额外等待一天或两天时间才能再次更新。"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "停用账户没有时间限制,你可以随时决定重新回来。"
@@ -9711,13 +9816,17 @@ msgstr "该内容需要登录 Bluesky 账户方可查看。"
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "此对话的参与者已停用或删除账户,点击以获取更多详情"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "这份草稿将被永久删除。"
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "此电子邮箱已与你的账户关联。"
#: src/screens/Settings/ActivityPrivacySettings.tsx:55
msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?"
-msgstr "此功能可让其他用户在你发布新帖或回复时收到提醒,你希望允许谁接收你的动态提醒?"
+msgstr "此功能可让其他用户在你发布新帖或回复时收到提醒,你希望允许哪些人接收提醒?"
#: src/screens/Settings/components/ExportCarDialog.tsx:96
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "此动态源为空。可能你需要先关注更多用户,或检查你的语言设置。"
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "此动态源为空。"
@@ -9798,7 +9907,7 @@ msgstr "此列表为空。"
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "该内容审核提供服务不可用,请查看下方获取更多详情。如果问题持续存在,请联系我们。"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "这则帖文声称发布于 <0>{0}0>,但首次出现在 Bluesky 的时间为 <1>{1}1>。"
@@ -9818,7 +9927,7 @@ msgstr "这则帖文已被发布者删除"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "这则帖文将从动态源和讨论串中隐藏。注意:此操作无法撤消。"
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "这则帖文的发布者已停用引用帖文。"
@@ -9834,7 +9943,7 @@ msgstr "这则回复将被折叠到你讨论串底部的隐藏部分,并且会
msgid "This service has not provided terms of service or a privacy policy."
msgstr "该服务没有提供服务条款或隐私政策。"
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "直播功能仍处于测试阶段,此服务暂不可用。可用的服务包括:{formatted}。"
@@ -9900,8 +10009,8 @@ msgstr "你的帖文将从这则引用中删除,并替换为一个占位符。
msgid "Thread options"
msgstr "讨论串选项"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "讨论串偏好设置"
@@ -9951,7 +10060,7 @@ msgstr "今天"
msgid "Toggle to enable or disable adult content"
msgstr "切换以启用或停用成人内容"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "切换音量状态"
@@ -9988,8 +10097,8 @@ msgstr "话题"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "翻译"
@@ -10091,15 +10200,15 @@ msgstr "动态源信息不可用"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "取消屏蔽"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "取消屏蔽"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "取消屏蔽账户"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "要取消屏蔽账户吗?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "撤消"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "撤消"
@@ -10142,7 +10255,7 @@ msgstr "取消转发"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "取消转发({0, plural, one {# 次转发} other {# 次转发}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "取消关注 {0}"
@@ -10151,7 +10264,7 @@ msgstr "取消关注 {0}"
msgid "Unfollow account"
msgstr "取消关注账户"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "取消关注用户"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "取消喜欢"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "取消喜欢({0, plural, one {# 次喜欢} other {# 次喜欢}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "取消隐藏列表"
msgid "Unmute thread"
msgstr "取消隐藏讨论串"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "取消隐藏视频"
@@ -10276,7 +10389,7 @@ msgstr "已取消固定列表"
msgid "Unsnooze email reminder"
msgstr "取消暂停邮件提醒"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "取消订阅"
@@ -10285,7 +10398,7 @@ msgstr "取消订阅"
msgid "Unsubscribe from list"
msgstr "从列表取消订阅"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "取消订阅此标记者"
@@ -10293,7 +10406,7 @@ msgstr "取消订阅此标记者"
msgid "Unsubscribed from list"
msgstr "已从列表中取消订阅"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "不支持的视频类型:{mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "从文件上传"
msgid "Upload from Library"
msgstr "从照片图库上传"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "正在上传图片……"
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "正在上传链接缩略图……"
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "正在上传视频……"
@@ -10389,8 +10506,8 @@ msgstr "使用默认提供商"
msgid "Use in-app browser"
msgstr "使用应用内浏览器"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "使用应用内浏览器开启链接"
@@ -10445,6 +10562,10 @@ msgstr "该用户屏蔽了你"
msgid "User list by {0}"
msgstr "{0} 的用户列表"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr "{0} 的用户列表"
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "你的用户列表"
@@ -10597,8 +10718,8 @@ msgstr "正在验证……"
msgid "Version {0}"
msgstr "版本号 {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "视频"
@@ -10612,22 +10733,26 @@ msgstr "视频动态源"
#: src/components/VideoPostCard.tsx:122
msgid "Video from {0}: {text}"
-msgstr "视频来自{0}:{text}"
+msgstr "来自 {0} 的视频:{text}"
+
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "来自 {0} 的视频。点击以播放或暂停视频"
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "电子游戏"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "视频已暂停"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "视频正在播放"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "无法找到视频。"
@@ -10635,11 +10760,11 @@ msgstr "无法找到视频。"
msgid "Video settings"
msgstr "视频设置"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "已上传视频"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "视频:{0}"
@@ -10647,23 +10772,23 @@ msgstr "视频:{0}"
msgid "Videos"
msgstr "视频"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "视频长度不得超过 3 分钟。"
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "查看"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "查看 {0} 的头像"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "查看 {0} 的个人资料"
@@ -10708,7 +10833,7 @@ msgstr "查看更多"
msgid "View more trending videos"
msgstr "浏览更多热门视频"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "查看帖文"
@@ -10788,7 +10913,7 @@ msgstr "暴力或威胁性内容"
msgid "Visit site"
msgstr "访问站点"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "访问你的通知设置"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "我们在初始化年龄验证流程时遇到了问题,请<0>联系支持0>以获取帮助。"
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "我们遇到了网络问题,请再试一次"
@@ -10968,7 +11093,7 @@ msgstr "很抱歉,我们无法加载你的隐藏字词列表。请重试。"
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "很抱歉,无法完成你的搜索。请重试。"
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "很抱歉!你回复的帖文已被删除。"
@@ -10977,7 +11102,7 @@ msgstr "很抱歉!你回复的帖文已被删除。"
msgid "We're sorry! We can't find the page you were looking for."
msgstr "很抱歉!我们找不到你正在寻找的页面。"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "很抱歉!你目前只能订阅 20 个标记者,你已达到上限。"
@@ -11018,10 +11143,9 @@ msgstr "你感兴趣的是什么?"
msgid "What do you want to call your starter pack?"
msgstr "你希望如何命名你的新手包?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "发生了什么新鲜事?"
@@ -11097,6 +11221,14 @@ msgstr "此用户为何需要受到审核?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "需要屏蔽该用户、删除整个对话,或两者一并执行吗?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "在查看其他草稿之前,需要先保存现有内容吗?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "需要把现有内容保存为草稿,以便日后编辑吗?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "撰写私信"
msgid "Write a post"
msgstr "撰写一篇帖文"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "撰写帖文"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "撰写你的回复"
@@ -11133,8 +11265,8 @@ msgstr "www.mylivestream.tv"
msgid "Yes"
msgstr "是"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "确定停用"
@@ -11188,7 +11320,7 @@ msgstr "你已在等待名单中。"
msgid "You are Live"
msgstr "你已开始直播"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "你已停止直播"
@@ -11200,7 +11332,7 @@ msgstr "你目前无法上传视频。"
msgid "You are not following anyone yet"
msgstr "你还没有关注任何账户"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "你正在直播中!"
@@ -11255,11 +11387,11 @@ msgstr "你可以在其他人发帖时收到提醒了。如果你不希望错过
msgid "You can now sign in with your new password."
msgstr "你现在可以使用新密码登录。"
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "你一次只能选择一个 GIF。"
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "你一次只能选择一个视频。"
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "你可以继续登录以重新启用你的账户,其他用户将能够重新看到你的个人资料和帖文。"
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "你最多只能选择 {MAX_IMAGES, plural, other {# 张图片}}。"
@@ -11281,7 +11413,7 @@ msgstr "你可以随时在设置里重新更改。"
#: src/lib/hooks/useCleanError.ts:55
#: src/lib/strings/errors.ts:28
msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate."
-msgstr "当使用应用程序密码登录时,无法更新出生日期信息,请改用主密码登录以更新你的出生日期。"
+msgstr "使用应用密码登录时,无法更改出生日期,请改用主密码登录以更改你的出生日期。"
#: src/screens/Profile/KnownFollowers.tsx:112
msgid "You don't follow any users who follow @{name}."
@@ -11317,7 +11449,7 @@ msgstr "你已屏蔽该用户"
msgid "You have blocked this user. You cannot view their content."
msgstr "你已屏蔽该用户,无法查看其内容。"
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "你已完全禁用了回复、引用及提及通知,因此此选项卡将不再更新。要调整此功能,请访问 <0>通知设置0>。"
@@ -11376,6 +11508,14 @@ msgstr "你已成功验证电子邮箱地址,现在你可以关闭此对话框
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "你已暂时达到视频上传的限制。请稍后再试。"
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "你有未保存的更改,需要保存吗?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "你有未保存的更改。在查看其他草稿前,需要先保存现有内容吗?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "你还没有创建任何新手包!"
@@ -11437,7 +11577,7 @@ msgstr "你必须年满 {MIN_ACCESS_AGE} 岁才能注册账户。"
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "你必须年满13周岁才能使用 Bluesky,阅读我们的<0>服务条款0>以获取更多资讯。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "你必须至少关注 7 个人以创建新手包。"
@@ -11449,7 +11589,7 @@ msgstr "要访问此页面,你必须首先完成年龄验证。"
msgid "You must grant access to your photo library to save a QR code"
msgstr "你必须授权访问照片图库以保存二维码"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "你必须授予权限以访问媒体内容。"
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "轮到你了"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "你正在使用应用密码登录账户,请改用你的主密码登录以继续停用你的账户。"
@@ -11589,7 +11729,7 @@ msgstr "你已达到每日上传视频上限(文件太大)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "你已达到每日上传视频上限(数量太多)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "你已经看完了所有视频,或许是时候休息一下?"
@@ -11625,7 +11765,7 @@ msgstr "已提交申诉。如果申诉成功,我们会通过电子邮件通知
msgid "Your birth date"
msgstr "你的出生日期"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "你的浏览器不支持此视频格式,请试试其他浏览器。"
@@ -11692,8 +11832,8 @@ msgstr "你的完整账户代码将修改为 <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "你的兴趣"
@@ -11731,11 +11871,11 @@ msgstr "已成功更改你的密码!请你今后使用你的新密码登录 Bl
msgid "Your password must be at least 8 characters long."
msgstr "你输入的密码至少应包含 8 个字符。"
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "已发布你的帖文"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "已发布你的帖文"
@@ -11752,11 +11892,11 @@ msgstr "你的头像"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "你的头像周围环绕着许多其他人的头像"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "其他 Bluesky 用户将无法看到你的个人资料、帖文、列表与其他相关个人信息。你可以随时登录以重新启用你的账户。"
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "已发布你的回复"
diff --git a/src/locale/locales/zh-HK/messages.po b/src/locale/locales/zh-HK/messages.po
index 1884231121..f8b5aa634f 100644
--- a/src/locale/locales/zh-HK/messages.po
+++ b/src/locale/locales/zh-HK/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional, Hong Kong\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# 次轉發} other {# 次轉發}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# 秒鐘} other {# 秒鐘}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# 條未讀} other {# 條未讀}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# 條未讀} other {# 條未讀}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# 個月前} other {# 個月前}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, other {仲有 # 條帖文}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {擁躉} other {擁躉}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {跟緊} other {跟緊}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {讚佢} other {讚佢}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {讚佢} other {讚佢}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {帖文} other {帖文}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {引用} other {引用}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {轉發} other {轉發}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {個收藏} other {個收藏}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{1} · {0}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0}(帳號)"
@@ -189,11 +193,11 @@ msgstr "{0} 畀咗個 {1} 反應"
msgid "{0} reacted {1} to {2}"
msgstr "{0} 向 {2} 畀咗個 {1} 反應"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0},嚟自 {1} 嘅動態源,{2} 讚過佢"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0},嚟自 {1} 清單"
@@ -432,7 +436,7 @@ msgstr "{joinedAllTimeCount, plural, other {# 個用戶}}已加入!"
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, other {# 分鐘}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# 條未讀} other {# 條未讀}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}、0><1>{1}1> 同{2, plural, one {另外 # } other {另外 # }}人經已喺你嘅新手包度"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {個擁躉} other {個擁躉}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {個跟緊} other {個跟緊}}"
@@ -580,6 +584,11 @@ msgstr "呢張係帖文收藏功能嘅截圖,見到喺「分享」掣隔籬多
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "呢張係個人檔案頁面嘅截圖,「跟佢」掣隔籬有隻鐘仔圖標,用於介紹全新嘅動態通知功能。"
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -686,7 +695,7 @@ msgstr "已唔再靜音帳號"
#: src/components/verification/VerifierDialog.tsx:98
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
-msgstr "帶有圓齒藍色剔號嘅帳號<0><1/>0>可以授權驗證其他帳號。呢啲受信任嘅驗證者係由 Bluesky 官方所揀。"
+msgstr "帶有圓齒藍色剔號徽章嘅帳號<0><1/>0>可以授權驗證其他帳號。呢啲受信任嘅驗證者係由 Bluesky 官方所揀。"
#: src/lib/hooks/useNotificationHandler.ts:185
#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102
@@ -714,14 +723,14 @@ msgstr "加多至少 {0} 個繼續"
msgid "Add {displayName} to starter pack"
msgstr "加 {displayName} 到新手包"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "新增內容警告"
#: src/components/live/GoLiveDialog.tsx:106
msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
-msgstr "喺你嘅個人檔案度加入暫時嘅直播狀態,喺人撳開你嘅頭像嗰陣,佢哋就會睇到你相關嘅直播活動資訊。"
+msgstr "喺你嘅個人檔案度加入臨時直播狀態,喺人撳開你嘅頭像嗰陣,佢哋就會睇到你相關嘅直播活動資訊喇。"
#: src/screens/ProfileList/AboutSection.tsx:63
#: src/screens/ProfileList/AboutSection.tsx:81
@@ -754,11 +763,11 @@ msgstr "新增替代文字(可選)"
msgid "Add another account"
msgstr "加多個帳號"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "加多另一條帖文"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "加多另一條帖文到討論串"
@@ -776,12 +785,12 @@ msgstr "新增應用程式專用密碼"
msgid "Add emoji reaction"
msgstr "加入 Emoji 反應"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "加入圖片"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "加入媒體到帖文"
@@ -871,7 +880,7 @@ msgstr "補充資訊(1000 個字元以內)"
msgid "Additional details (limit 300 characters)"
msgstr "補充資訊(300 個字元以內)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "色情"
@@ -879,10 +888,10 @@ msgstr "色情"
msgid "Adult content"
msgstr "成人內容"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "成人內容"
@@ -894,8 +903,8 @@ msgstr "淨係可以喺網頁版 (<0>bsky.app0>) 啓用成人內容顯示。"
msgid "Adult content is disabled."
msgstr "已停用成人內容。"
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "成人內容標記"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "所有"
@@ -1017,7 +1026,7 @@ msgstr "有咗帳號?"
msgid "Already signed in as @{0}"
msgstr "用咗 @{0} 身分登入"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "替代文字"
msgid "Alt text"
msgstr "替代文字"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "替代文字"
@@ -1059,7 +1068,7 @@ msgstr "電郵送咗去 {0} 度。你可以抄低郵件度個驗證碼跟住喺
msgid "An error has occurred"
msgstr "發生錯誤"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "發生錯誤"
@@ -1067,7 +1076,7 @@ msgstr "發生錯誤"
msgid "An error occurred while compressing the video."
msgstr "壓縮影片嗰陣發生錯誤。"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "攞緊建議帳號嗰陣發生錯誤。"
@@ -1076,7 +1085,7 @@ msgstr "攞緊建議帳號嗰陣發生錯誤。"
msgid "An error occurred while fetching the feed."
msgstr "攞緊動態源嗰陣發生錯誤。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "幫手砌緊你嘅新手包嗰陣發生錯誤。使唔使試多次?"
@@ -1088,7 +1097,7 @@ msgstr "隱藏建議嗰陣發生錯誤。{0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "撈緊影片嗰陣發生錯誤。唔該遲啲試多次。"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "撈緊影片嗰陣發生錯誤。唔該試多次。"
@@ -1129,7 +1138,7 @@ msgstr "Bluesky 嘅幾條帖文嘅插圖,旁邊仲有轉發、讚好同留言
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:85
#: src/components/verification/VerifierDialog.tsx:87
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
-msgstr "呢張圖解說明 Bluesky 所揀受信任嘅驗證者,兼由受信任嘅驗證者授權驗證個別嘅帳號。"
+msgstr "呢張插圖說明 Bluesky 所揀受信任嘅驗證者,兼由受信任嘅驗證者授權驗證個別嘅帳號。"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
@@ -1181,7 +1190,7 @@ msgstr "虐待動物"
msgid "Animals"
msgstr "動物"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF 動畫"
@@ -1306,12 +1315,12 @@ msgstr "使用預設嘅推薦動態源"
msgid "Apply Pull Request"
msgstr "套用 Pull Request"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "封存於 {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "封存咗嘅帖文"
@@ -1332,11 +1341,11 @@ msgstr "你確定要刪咗個新手包?"
msgid "Are you sure you want to discard your changes?"
msgstr "你確定要放棄你嘅變更?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "你確定要離開呢個對話?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "你確定要離開呢個對話?你嘅訊息會喺你嗰邊刪除,但係其他參與者仲係睇到。"
@@ -1344,11 +1353,7 @@ msgstr "你確定要離開呢個對話?你嘅訊息會喺你嗰邊刪除,但
msgid "Are you sure you want to remove this from your feeds?"
msgstr "你確定要喺你嘅動態源度刪除呢個?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "你確定要棄置呢份草稿?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "你確定要放棄發布呢條帖文?"
@@ -1364,7 +1369,7 @@ msgstr "你係咪用緊 <0>{suggestedLanguageName}0> 寫嘢呀?"
msgid "Art"
msgstr "藝術"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "藝術或非情色嘅裸體。"
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "極光"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "自動播放影片同 GIF"
@@ -1404,11 +1409,13 @@ msgstr "用到"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "返去"
@@ -1578,7 +1585,7 @@ msgstr "網誌"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky 無法確認貼文發布日期嘅真實性。"
@@ -1623,7 +1630,7 @@ msgstr "Bluesky Social 服務條款"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Bluesky 將你嘅聯絡人儲存成加密資訊,刪除聯絡人亦都會即刻刪除此資訊。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky 將會喺你社交網絡度揀一啲推薦嘅帳號。"
@@ -1664,20 +1671,20 @@ msgstr "違反網站規定"
msgid "Browse custom feeds"
msgstr "瀏覽自訂動態源"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "瀏覽更多帳號"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "喺探索頁面瀏覽更多動態源"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "瀏覽更多建議"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "喺探索頁面瀏覽更多建議"
@@ -1770,8 +1777,8 @@ msgstr "相機"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "相機"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "唔再搵嘢"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "唔得同被封鎖嘅用戶互動"
@@ -1901,9 +1908,9 @@ msgstr "已儲存變更"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "傾偈"
@@ -1989,7 +1996,7 @@ msgstr "揀選網域驗證方法"
msgid "Choose Feeds"
msgstr "揀選動態源"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "幫我揀"
@@ -2096,6 +2103,7 @@ msgstr "Clip 🐴 clop 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "Clip 🐴 clop 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,7 +2176,8 @@ msgstr "閂咗 GIF 對話框"
msgid "Close image"
msgstr "閂咗圖片"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr "閂咗圖片檢視器"
@@ -2190,7 +2199,7 @@ msgstr "刪咗歡迎介面"
msgid "Closes password update alert"
msgstr "閂咗密碼更新警示"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "閂咗帖文編輯器兼棄置草稿"
@@ -2242,12 +2251,12 @@ msgstr "攪掂入門指導跟住開始使用你嘅帳號"
msgid "Complete the challenge"
msgstr "完成呢個挑戰"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "撰寫新帖文"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "撰寫最多 {0, plural,other {# 個字元}}嘅帖文"
@@ -2255,7 +2264,11 @@ msgstr "撰寫最多 {0, plural,other {# 個字元}}嘅帖文"
msgid "Compose reply"
msgstr "撰寫回覆"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "壓縮緊條片……"
@@ -2263,7 +2276,6 @@ msgstr "壓縮緊條片……"
msgid "Configure content filtering setting for category: {name}"
msgstr "設定 {name} 類別嘅內容篩選"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "設定直播活動 Banner"
@@ -2272,8 +2284,8 @@ msgstr "設定直播活動 Banner"
msgid "Configured in <0>moderation settings0>."
msgstr "已喺 <0>內容審覈設定0> 度設定。"
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2307,7 +2319,7 @@ msgstr "驗證碼"
#: src/screens/Login/LoginForm.tsx:340
msgid "Connecting..."
-msgstr "連緊線……"
+msgstr "連線緊……"
#: src/ageAssurance/components/RedirectOverlay.tsx:296
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:208
@@ -2343,7 +2355,7 @@ msgstr "已匯入聯絡人"
msgid "Contacts removed"
msgstr "已刪除聯絡人"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "內容同媒體"
@@ -2389,7 +2401,7 @@ msgstr "鼓吹或提倡自殘內容"
msgid "Content Warning"
msgstr "內容警告"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "內容警告"
@@ -2401,7 +2413,7 @@ msgstr "內容選單背景,撳低去閂咗選單。"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "繼續"
@@ -2420,7 +2432,7 @@ msgstr "繼續撈啲討論串……"
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "跟唔到所有確認嘅聯絡人。{0}"
msgid "Could not leave chat"
msgstr "離開唔到傾偈"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "撈唔到動態源"
@@ -2643,8 +2655,8 @@ msgstr "幫新手包建立 QR Code"
msgid "Create a starter pack"
msgstr "建立一個新手包"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "建立新手包"
@@ -2654,12 +2666,12 @@ msgstr "幫我建立一個新手包"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "建立多一個"
msgid "Create moderation list"
msgstr "建立內容審覈清單"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "建立新帳號"
@@ -2772,7 +2784,7 @@ msgstr "出世日期"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "停用帳號"
@@ -2871,7 +2883,7 @@ msgstr "刪除我嘅帳號"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "刪除帖文"
@@ -2981,7 +2993,7 @@ msgstr "拒絕其他人引用呢條帖文"
msgid "Disable replies entirely"
msgstr "徹底關閉回覆"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "停用字幕"
@@ -2996,8 +3008,11 @@ msgstr "停用"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "棄置"
@@ -3006,11 +3021,12 @@ msgstr "棄置"
msgid "Discard changes?"
msgstr "係咪要放棄變更?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "係咪要棄置份草稿?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "係咪要放棄發布?"
@@ -3037,7 +3053,7 @@ msgstr "跳過"
msgid "Dismiss banner"
msgstr "忽略提示"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "跳過錯誤"
@@ -3049,11 +3065,16 @@ msgstr "跳過入門指南"
msgid "Dismiss interests"
msgstr "唔啱心水"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "閂咗直播活動 Banner"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "忽略此部分"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "忽略此建議"
@@ -3121,8 +3142,8 @@ msgstr "唔使驚!你所有現存嘅訊息同設定經已儲存,只要驗證
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "撳兩吓或撳住訊息去加入反應"
msgid "Double tap to close the dialog"
msgstr "撳兩吓閂咗呢個對話框"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "撳兩吓讚佢"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "下載 Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "下載 CAR 檔案"
msgid "Doxxing"
msgstr "網上起底"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "草稿"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "拖放即可加入圖片"
@@ -3285,13 +3313,13 @@ msgstr "編輯帖文互動設定"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "編輯個人檔案"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "編輯個人檔案"
@@ -3413,7 +3441,7 @@ msgstr "啓用推播通知"
msgid "Enable quote posts of this post"
msgstr "允許其他人引用呢條帖文"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "啓用字幕"
@@ -3421,13 +3449,13 @@ msgstr "啓用字幕"
msgid "Enable this source only"
msgstr "只啓用呢個來源"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "啓用時興話題"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "喺你「Discover」動態源度啓用時興影片"
@@ -3464,7 +3492,7 @@ msgstr "輸入字詞或標籤"
msgid "Enter code"
msgstr "輸入代碼"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "進入全螢幕"
@@ -3501,7 +3529,7 @@ msgstr "輸入你嘅密碼"
msgid "Enter your username and password"
msgstr "輸入你嘅用戶名稱同密碼"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "進入全螢幕"
@@ -3509,7 +3537,7 @@ msgstr "進入全螢幕"
msgid "Entertainment"
msgstr "娛樂"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "錯誤"
@@ -3570,7 +3598,7 @@ msgstr "排除你跟嘅用戶"
msgid "Excludes users you follow"
msgstr "排除你跟嘅用戶"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "離開全螢幕"
@@ -3578,11 +3606,7 @@ msgstr "離開全螢幕"
msgid "Exits account deletion process"
msgstr "離開帳號刪除流程"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "離開圖片檢視"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "展開替代文字"
@@ -3598,11 +3622,11 @@ msgstr "展開或摺疊你覆緊嘅完整帖文"
msgid "Expand post text"
msgstr "展開帖文文字"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "展開或摺疊帖文文字"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "URI 應解析爲記錄"
@@ -3639,7 +3663,7 @@ msgstr "打大赤肋嘅鹹溼相。"
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "探索"
@@ -3657,8 +3681,8 @@ msgstr "匯出我嘅數據"
msgid "Export My Data"
msgstr "匯出我嘅數據"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "外部媒體"
@@ -3730,7 +3754,7 @@ msgstr "刪唔到帖文,唔該試多次"
msgid "Failed to delete starter pack"
msgstr "刪唔到新手包"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "跟唔到所有建議嘅帳號,唔該試多次"
@@ -3829,6 +3853,10 @@ msgstr "撤回唔到認證"
msgid "Failed to resolve location. Please try again."
msgstr "取用唔到位置資訊,唔該試多次。"
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "存儲唔到草稿"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "動態源"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "{0} 建立嘅動態源"
@@ -3941,7 +3970,7 @@ msgstr "動態源用唔到"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "意見"
@@ -3958,7 +3987,7 @@ msgstr "已提交意見到動態源維護者"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "動態源"
@@ -4008,6 +4037,10 @@ msgstr "篩選你想接收嘅通知來源"
msgid "Finalizing"
msgstr "幫緊你幫緊你"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "卒之嚟喇!mark 低你嘅心水帖文,收藏佢哋方便隨時重溫。"
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "尋找我嘅朋友"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "睇吓跟啲乜人好"
@@ -4068,7 +4101,7 @@ msgstr "搵到同聲同氣嘅人"
#: src/components/contacts/screens/GetContacts.tsx:280
msgid "Finding friends..."
-msgstr "尋找緊朋友……"
+msgstr "搵緊朋友……"
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Finish"
@@ -4098,19 +4131,19 @@ msgstr "聚焦代碼欄位"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "跟佢"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "跟 {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "跟 {handle}"
@@ -4133,7 +4166,7 @@ msgstr "跟佢"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "跟佢"
msgid "Follow all"
msgstr "跟晒佢哋"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "跟晒所有帳號"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "跟返佢"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "跟晒所有帳號!"
@@ -4195,8 +4228,8 @@ msgstr "你識嘅擁躉"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "跟緊"
msgid "Following {0}"
msgstr "跟緊 {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "跟緊 {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "「Following」動態源偏好設定"
@@ -4264,7 +4297,7 @@ msgstr "基於保安理由,你唔可以再睇返呢個密碼。若然你真係
msgid "For the best experience, we recommend using the theme font."
msgstr "爲咗有最佳體驗,我哋建議使用主題字型。"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "估你心水"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "嚟自 <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "生成一個新手包"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "尋求協助"
@@ -4376,10 +4409,15 @@ msgstr "喺有人出新帖嗰陣收到通知"
msgid "Get started"
msgstr "開始啦"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "整張相喺你嘅 profile 嗰度先啦"
@@ -4394,12 +4432,12 @@ msgstr "歌頌暴力"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "返去"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "你帳號嘅直播功能已被停用"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "敏感媒體"
@@ -4592,7 +4630,7 @@ msgstr "由 Bluesky 保留 7 天以防濫用,隨後刪除"
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "協助"
@@ -4632,9 +4670,9 @@ msgstr "隱藏清單"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "隱藏用戶清單"
msgid "Hide verification badges"
msgstr "隱藏認證標記"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "隱藏內容"
@@ -4760,9 +4798,9 @@ msgstr "幫緊你幫緊你!我哋而家逐步開放影片功能,而你仲喺
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "首頁"
@@ -4819,7 +4857,7 @@ msgstr "我明"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "我喺 Bluesky 嘅帳號係 {0} - 快啲陪我一齊玩啦!https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "若然替代文字太長,就會切換替代文字展開狀態"
@@ -4872,7 +4910,7 @@ msgstr "若然你想限制邊個可以收到你帳號嘅動態通知,可去到
msgid "If you're a developer, you can host your own server."
msgstr "若然你係開發人員,你可以自己托管伺服器。"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "喺停用帳號前,記得確認你係咪需要變更你嘅帳號代碼或電郵。"
@@ -4996,6 +5034,10 @@ msgstr "互動設定"
msgid "Introducing activity notifications"
msgstr "同你介紹動態通知"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "同你介紹透過聯絡人尋找朋友"
@@ -5089,7 +5131,7 @@ msgstr "而家新手包只有 <0>{0}0>!用上高嘅搵嘢功能,將更多
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "而家淨係得你一個人!用上高搵嘢功能將更加多人擺到落你嘅新手包度。"
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "作業 ID:{0}"
@@ -5122,20 +5164,20 @@ msgstr "有新動態嗰陣通知我"
msgid "KWS website"
msgstr "KWS 網站"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "{0} 所標記。"
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "發布者所標記。"
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "標記"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "已加入標記"
@@ -5218,8 +5260,8 @@ msgstr "想知多啲匯入聯絡人功能"
msgid "Learn more about self hosting your PDS."
msgstr "想知多啲點樣自行架設 PDS。"
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "想知多啲呢個內容所套用嘅內容審覈措施"
@@ -5231,7 +5273,7 @@ msgstr "想知多啲呢啲變化資訊以及點樣同我哋分享你嘅睇法,
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "想知多啲呢啲變化資訊以及點樣同我哋分享你嘅睇法,可以閱讀我哋嘅網誌文章。"
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "想知多啲呢個警告"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "想知多啲去你嘅<0>帳號設定。0>"
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "想知多啲。"
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "離開"
@@ -5286,7 +5328,7 @@ msgstr "離開 Bluesky"
msgid "left to go."
msgstr "個人排喺你前面。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "等我自己揀"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "讚佢"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "讚佢({0, plural, one {# 人讚佢} other {# 人讚佢}})"
@@ -5380,7 +5422,7 @@ msgstr "讚好你轉發嘅帖文"
msgid "Likes of your reposts notifications"
msgstr "讚好你轉發嘅帖文之通知"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "呢條帖文嘅讚數"
@@ -5474,7 +5516,7 @@ msgstr "已唔再靜音清單"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "清單"
@@ -5484,7 +5526,7 @@ msgstr "清單可以畀你彙集至愛嘅人內容。"
#: src/components/dms/BlockedByListDialog.tsx:39
msgid "Lists blocking this user:"
-msgstr "封鎖緊呢個用戶嘅清單:"
+msgstr "封鎖呢個用戶嘅清單:"
#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
#: src/components/live/LiveIndicator.tsx:46
@@ -5496,10 +5538,20 @@ msgstr "直播"
msgid "Live event happening now: {0}"
msgstr "進行緊嘅直播活動:{0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "已隱藏直播活動"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "直播活動選項"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "已唔再隱藏直播活動"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "有咩精彩嘢發生嗰陣,平臺會間唔中顯示直播活動。你可以隱藏呢個活動,抑或隱藏晒之後所有直播活動。"
@@ -5524,11 +5576,11 @@ msgstr "再撈啲"
msgid "Load more suggested feeds"
msgstr "再撈啲建議動態源"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "撈吓新嘅通知"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "LOGO 由 @sawaratsuki.bsky.social 所繪製"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "LOGO 由 <0>@sawaratsuki.bsky.social0> 所繪製"
@@ -5600,8 +5652,8 @@ msgstr "幫我整一個"
msgid "Make sure this is where you intend to go!"
msgstr "睇清楚呢度係咪你真係想去嘅網站!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "管理儲存咗嘅動態源"
@@ -5638,7 +5690,16 @@ msgstr "遲啲先啦"
msgid "Media"
msgstr "媒體"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "媒體已儲存到 {0}"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "媒體已儲存到其他裝置"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "可能會令某啲受眾感到不安或造成不適嘅媒體內容。"
@@ -5653,7 +5714,7 @@ msgstr "提到嘅用戶"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "提及"
@@ -5716,6 +5777,10 @@ msgstr "其他通知"
msgid "Misleading"
msgstr "誤導"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "缺失媒體檔案"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "更多語言……"
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "電影"
msgid "Music"
msgstr "音樂"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "去到新手包"
msgid "Navigates to the next screen"
msgstr "去到下一個畫面"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "去到你嘅個人檔案"
@@ -5983,6 +6049,7 @@ msgstr "新嘅電郵地址"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "新功能"
@@ -6018,12 +6085,12 @@ msgstr "新訊息"
msgid "New password"
msgstr "新密碼"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "新帖文"
@@ -6085,7 +6152,7 @@ msgstr "新聞"
msgid "Next"
msgstr "下一步"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "下一張圖片"
@@ -6114,6 +6181,10 @@ msgstr "而家仲未有自訂動態源"
msgid "No DNS Panel"
msgstr "冇 DNS 控制台"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "而家仲未有草稿"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "未有設定過期時間"
@@ -6136,7 +6207,7 @@ msgstr "冇圖片"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "而家仲未有人讚"
@@ -6150,7 +6221,7 @@ msgstr "仲未有清單"
msgid "No longer following {0}"
msgstr "已唔再跟随 {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "而家仲未有媒體內容"
@@ -6195,7 +6266,7 @@ msgstr "而家仲未有帖文"
msgid "No quotes yet"
msgstr "而家仲未有人引用"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "而家仲未有人回覆"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "冇嘢到"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "冇嘢到"
@@ -6238,7 +6309,7 @@ msgstr "冇嘢到。"
msgid "No search results found for \"{search}\"."
msgstr "搵唔到「{search}」嘅搵嘢結果。"
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "而家仲未有新手包"
@@ -6247,7 +6318,7 @@ msgstr "而家仲未有新手包"
msgid "No thanks"
msgstr "唔使,多謝"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "而家仲未有包含影片帖文"
@@ -6298,6 +6369,10 @@ msgstr "冇任何你識得嘅人跟緊佢"
msgid "Not Found"
msgstr "搵唔到"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "關於分享嘅注意事項"
@@ -6321,7 +6396,7 @@ msgstr "而家仲未有收藏內容"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "通知設定"
@@ -6349,10 +6424,10 @@ msgstr "通知音效"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "通知"
@@ -6368,8 +6443,8 @@ msgstr "而家"
msgid "Now"
msgstr "而家"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "裸體"
@@ -6390,7 +6465,7 @@ msgstr "大鑊!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "好嘅"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "好嘅"
@@ -6417,23 +6492,23 @@ msgstr "喺<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "重新開始引導流程"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "一張或多張 GIF 圖片冇咗替代文字。"
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "一張或多張圖片冇咗替代文字。"
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "你所揀選嘅部分檔案格式唔支援。"
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "你所揀選嘅部分檔案過大。最大檔案大細係 100 MB。"
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "一條或多條影片冇咗替代文字。"
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "弊,出咗問題!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "大鑊!"
msgid "Open avatar creator"
msgstr "打開頭像製作器"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "打開相機"
@@ -6485,12 +6560,16 @@ msgstr "打開相機"
msgid "Open conversation options"
msgstr "打開對話選項"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "打開草稿"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "打開櫃桶選單"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "打開 Emoji 選擇器"
@@ -6557,7 +6636,7 @@ msgstr "打開系統日誌"
msgid "Opens {0} feed"
msgstr "打開 {0} 動態源"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "打開對話框嚟喺你嘅帖文度加入內容警告"
@@ -6589,25 +6668,25 @@ msgstr "打開變更帳號代碼對話框"
msgid "Opens composer"
msgstr "打開帖文編輯器"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "打開裝置相機"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "開啓裝置相片圖庫去揀選最多 {MAX_IMAGES, plural, other {# 張圖片}}、1 條影片或 1 張 GIF。"
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "打開 Emoji 選擇器"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "打開流程去建立一個新嘅 Bluesky 帳號"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "打開流程去登入你現有嘅 Bluesky 帳號"
@@ -6620,7 +6699,7 @@ msgstr "打開揀選 GIF 對話框"
msgid "Opens helpdesk in browser"
msgstr "喺瀏覽器度打開說明中心"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "打開圖片選擇器"
@@ -6640,10 +6719,14 @@ msgstr "打開密碼重設表單"
msgid "Opens post language settings"
msgstr "打開帖文語言設定"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "打開帖文編輯器"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "喺編輯器度打開呢份草稿"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "OTA狀態:冇更新"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "其他"
@@ -6763,13 +6846,13 @@ msgstr "已更新密碼"
msgid "Password updated!"
msgstr "已更新密碼!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "暫停"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "暫停影片"
@@ -6829,7 +6912,7 @@ msgstr "已驗證電話號碼"
msgid "Photography"
msgstr "攝影"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "圖片唔啱細路睇。"
@@ -6874,9 +6957,9 @@ msgstr "固定咗嘅動態源"
msgid "Pinned to your feeds"
msgstr "固定喺你嘅動態源"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "播放"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "播放 {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "播放影片"
@@ -6893,11 +6976,11 @@ msgstr "播放影片"
msgid "Play Video"
msgstr "播放影片"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "播放或暫停 GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "播放或暫停影片"
@@ -6909,7 +6992,7 @@ msgstr "播放 GIF"
msgid "Plays the video"
msgstr "播放影片"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "請喺你發布媒體內容度加入適當嘅內容警告標記。"
@@ -7066,31 +7149,31 @@ msgstr "請喺下低寫低你嘅訊息:"
msgid "Politics"
msgstr "政治"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "色情"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "帖文"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "發布"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "發布一張相片"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "發布一條影片"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "發晒佢哋"
@@ -7217,7 +7300,7 @@ msgstr "撳低去睇吓有邊啲你識嘅人跟咗呢個帳號"
msgid "Preview"
msgstr "預覽"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "上一張圖片"
@@ -7257,8 +7340,8 @@ msgstr "私隱同保安設定"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "私隱政策"
@@ -7266,7 +7349,11 @@ msgstr "私隱政策"
msgid "Privacy violation of a minor"
msgstr "侵犯未成年人私隱"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "處理緊條片……"
@@ -7280,10 +7367,10 @@ msgstr "幫緊你……"
msgid "profile"
msgstr "個人檔案"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "個人檔案"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "公開、可分享嘅清單,可以用嚟批量靜音或封鎖帳號。"
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "發布帖文"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "發布帖文"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "發布回覆"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "發布回覆"
@@ -7360,6 +7447,7 @@ msgstr "引用通知"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "引用帖文"
@@ -7385,7 +7473,7 @@ msgstr "已拒絕引用帖文"
msgid "Quotes"
msgstr "引用"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "引用呢條篇帖文"
@@ -7424,11 +7512,11 @@ msgstr "閱讀點樣使用搵嘢篩選器"
msgid "Read blog post"
msgstr "閱讀網誌文章"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "睇少啲"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "睇多啲"
@@ -7720,13 +7808,13 @@ msgstr "已關閉回覆"
msgid "Replies to this post are disabled."
msgstr "呢條帖文嘅回覆經已關閉。"
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "回覆"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "回覆({0, plural, one {# 個回覆} other {# 個回覆}})"
@@ -7892,7 +7980,7 @@ msgstr "你所轉發"
msgid "Reposts"
msgstr "轉發"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "轉發呢條帖文"
@@ -7996,14 +8084,14 @@ msgstr "試多次執行上一個出錯誤嘅動作"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "返去上一頁"
msgid "Returns to home page"
msgstr "返去首頁"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "返去上一頁"
@@ -8063,7 +8151,7 @@ msgstr "返去上一步"
msgid "Save"
msgstr "儲存"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "儲存"
@@ -8076,9 +8164,26 @@ msgstr "儲存出世日期"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "儲存變更"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "係咪要儲存變更?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "儲存草稿"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "係咪要儲存草稿?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "儲存到我嘅動態源度"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "收藏"
@@ -8155,7 +8260,7 @@ msgstr "轆到去頂部"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "搵嘢"
@@ -8164,7 +8269,7 @@ msgstr "搵嘢"
msgid "Search @{0}'s posts"
msgstr "搵 @{0} 嘅帖文"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "用名稱或興趣去搵"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "搵動態源"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "搵「{interestsDisplayName}」"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "搵「{interestsDisplayName}」(已揀選)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "搵帖文"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "搵個人檔案"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "搵……"
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "搵個人檔案"
@@ -8283,12 +8388,12 @@ msgstr "睇吓呢位用戶包含 #{tag} 嘅帖文"
msgid "See jobs at Bluesky"
msgstr "喺 Bluesky 度搵工"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "睇多啲"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "睇多啲建議個人檔案"
@@ -8456,7 +8561,7 @@ msgstr "揀選你喺訂閱嘅動態源度要翻譯嘅目標語言"
msgid "Select your preferred notification channels"
msgstr "揀選你想要嘅通知類型"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "唔支援揀選多種媒體類型。"
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "傳送電郵"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "提交意見"
@@ -8521,7 +8626,7 @@ msgstr "傳送驗證電郵"
#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:104
#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:110
msgid "Send via direct message"
-msgstr "將呢件嘢同人傾偈單獨講"
+msgstr "透過私人訊息傳送"
#: src/view/com/modals/DeleteAccount.tsx:147
msgid "Sends email with confirmation code for account deletion"
@@ -8566,7 +8671,7 @@ msgstr "設定電郵嚟重設密碼"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "設定"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "已儲存設定"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "性行爲或色情裸體。"
@@ -8634,7 +8739,7 @@ msgstr "性暗示"
msgid "Share"
msgstr "分享"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "分享"
@@ -8712,13 +8817,13 @@ msgstr "分享你至鍾意嘅動態源!"
msgid "Shared Preferences Tester"
msgstr "共用偏好測試器"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "顯示"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "顯示替代文字"
@@ -8820,7 +8925,7 @@ msgstr "顯示警告兼且喺動態源度篩選"
msgid "Show when you’re live"
msgstr "顯示直播狀態"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "顯示關於呢條帖文嘅建立時間資訊"
@@ -8828,8 +8933,8 @@ msgstr "顯示關於呢條帖文嘅建立時間資訊"
msgid "Shows other accounts you can switch to"
msgstr "顯示其他你切換得到嘅帳號"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "顯示內容"
@@ -8842,14 +8947,14 @@ msgstr "顯示內容"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "需要登入"
msgid "Signed in as @{0}"
msgstr "用 @{0} 身份登入"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "類似帳號"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "跳過分享聯絡人兼繼續使用應用程式"
msgid "Skip introduction and start using your account"
msgstr "跳過介紹直接開始使用你嘅帳號"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "跳到下一步"
@@ -8967,7 +9068,7 @@ msgstr "軟件開發"
msgid "Some of your verifications are invalid."
msgstr "你目前被授予嘅部分驗證無效。"
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "其他可能都會啱你心水嘅動態源"
@@ -8994,7 +9095,7 @@ msgstr "出咗問題"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "出咗問題,唔該試多次"
@@ -9020,7 +9121,7 @@ msgstr "出咗問題,唔該試多次。"
msgid "Something wrong? Let us know."
msgstr "有輘輷?話畀我哋知。"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "對唔住,我哋而家撈唔到帳號建議。"
@@ -9113,7 +9214,11 @@ msgstr "新手包"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "新手包可以幫你好輕鬆噉同你嘅朋友分享你最鍾意嘅動態源同用戶。"
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "新手包可以幫你同朋友分享你至愛嘅動態源同人。"
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "新手包可以幫你同朋友分享你至愛嘅動態源同人。"
@@ -9142,7 +9247,7 @@ msgstr "故仔書"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:180
msgid "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream."
-msgstr "喺 Twitch 開緊 Live?去 Bluesky 設定你嘅直播狀態,你個頭像就會顯示直播徽章。撳一下就可以直入你個台。"
+msgstr "喺 Twitch 開緊 Live?去 Bluesky 設定你嘅直播狀態,你頭像嗰度就會顯示直播徽章,同時一撳就可以直入你個直播台喇。"
#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:119
#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:125
@@ -9181,11 +9286,11 @@ msgstr "訂閱 @ {0} 去用呢啲標記:"
msgid "Subscribe to account activity"
msgstr "訂閱帳號動態"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "訂閱標記服務"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "訂閱呢個標記服務"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "建議帳號"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "估你心水"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "性暗示"
@@ -9354,8 +9459,8 @@ msgstr "條款"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "服務條款"
@@ -9403,12 +9508,12 @@ msgstr "呢個用戶名稱俾人用咗"
msgid "That's all, folks!"
msgstr "就噉先,咁多位!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "就係咁多喇!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "解除封鎖之後,呢個帳號就可以同你互動。"
@@ -9447,7 +9552,7 @@ msgstr "「Discover」動態源"
msgid "The Discover feed now knows what you like"
msgstr "「Discover」動態源而家明你鍾意啲咩喇"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "用應用程式嘅話體驗會更加好。即刻下載 Bluesky ,我哋會喺你離開嘅地方繼續。"
@@ -9465,7 +9570,7 @@ msgstr "以下標記經已套用到你嘅內容度。"
#: src/components/live/GoLiveDialog.tsx:160
msgid "The following services are enabled for your account: {allowedServices}"
-msgstr "你嘅帳號啓用咗以下服務:{allowedServices}"
+msgstr "你嘅帳號可使用以下服務:{allowedServices}"
#: src/screens/ModerationInteractionSettings/index.tsx:42
msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer."
@@ -9527,7 +9632,7 @@ msgstr "主題"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "受變更出世日期次數限制,你可能需要等一兩日先可以再次更新。"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "帳號停用冇時間限制,幾時用返你話事。"
@@ -9642,7 +9747,7 @@ msgstr "{screenDescription} 已被標記:"
#: src/components/verification/VerificationsDialog.tsx:88
msgid "This account has a checkmark because it's been verified by trusted sources."
-msgstr "呢個帳號擁有驗證標記,事關佢經已俾受信任嘅驗證者授予驗證。"
+msgstr "呢個帳號擁有驗證徽章,因爲佢經已由受信任嘅驗證者授予驗證。"
#: src/components/verification/VerificationsDialog.tsx:93
msgid "This account has one or more attempted verifications, but it is not currently verified."
@@ -9711,6 +9816,10 @@ msgstr "呢個內容要你有 Bluesky 帳號先至睇到。"
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "同你對話嗰個人經已停用或刪除帳號,撳低去檢視選項"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "呢份草稿將會永久刪除。"
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "呢個電郵經已綁定咗你嘅帳號。"
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "呢個動態源度得個吉!你可能需要跟更多用戶,或檢查你嘅語言設定。"
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "呢個動態源度得個吉。"
@@ -9798,7 +9907,7 @@ msgstr "呢份清單度得個吉。"
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "呢個內容審覈服務用唔到,留意下低瞭解更多資訊。若然呢個問題仲係持續發生,請聯絡我哋。"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "呢條帖文話係話喺 <0>{0}0> 發布嘅,但係最先出現喺 Bluesky 嘅時間係喺 <1>{1}1>。"
@@ -9818,7 +9927,7 @@ msgstr "呢條帖文經已俾發布者刪除"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "呢條帖文將會喺討論串同動態源度隱藏,呢個操作冇得取消。"
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "呢條帖文嘅發布者唔俾人引用。"
@@ -9834,9 +9943,9 @@ msgstr "呢個回覆會摺疊到你討論串下底嘅隱藏部分,兼且會爲
msgid "This service has not provided terms of service or a privacy policy."
msgstr "呢個服務未有提供服務條款或私隱政策。"
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
-msgstr "事緣直播功能處於測試階段,未支援呢個服務。允許使用嘅服務:{formatted}。"
+msgstr "事緣直播功能處於測試階段,未支援呢個服務。可使用嘅服務:{formatted}。"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:467
msgid "This should create a domain record at:"
@@ -9900,8 +10009,8 @@ msgstr "你嘅帖文會喺呢篇引用嘅帖文度刪除,兼且將佢換成一
msgid "Thread options"
msgstr "討論串選項"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "討論串偏好設定"
@@ -9951,7 +10060,7 @@ msgstr "今日"
msgid "Toggle to enable or disable adult content"
msgstr "切換控制啓用或停用成人內容"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "切換聲音"
@@ -9988,8 +10097,8 @@ msgstr "話題"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "翻譯"
@@ -10091,15 +10200,15 @@ msgstr "取用唔到動態源資訊"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "解除封鎖"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "解除封鎖"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "解除封鎖帳號"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "係咪要解除封鎖帳號?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "咪喇"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "咪喇"
@@ -10142,7 +10255,7 @@ msgstr "唔再轉發"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "唔再轉發({0, plural, one {# 次轉發} other {# 次轉發}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "唔再跟 {0}"
@@ -10151,7 +10264,7 @@ msgstr "唔再跟 {0}"
msgid "Unfollow account"
msgstr "唔再跟佢"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "唔再跟呢位用戶"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "唔再讚佢"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "唔再讚佢({0, plural, one {# 人讚佢} other {# 人讚佢}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "唔再靜音清單"
msgid "Unmute thread"
msgstr "唔再靜音討論串"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "唔再靜音影片"
@@ -10276,7 +10389,7 @@ msgstr "經已唔再固定清單"
msgid "Unsnooze email reminder"
msgstr "唔再暫停電郵提醒"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "唔再訂閱"
@@ -10285,7 +10398,7 @@ msgstr "唔再訂閱"
msgid "Unsubscribe from list"
msgstr "唔再訂閱清單"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "唔再訂閱呢個標記服務"
@@ -10293,7 +10406,7 @@ msgstr "唔再訂閱呢個標記服務"
msgid "Unsubscribed from list"
msgstr "經已喺清單度唔再訂閱"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "唔支援嘅影片類型:{mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "喺檔案度上載"
msgid "Upload from Library"
msgstr "喺相片圖庫度上載"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "上載緊圖片……"
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "上載緊連結縮圖……"
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "上載緊條片……"
@@ -10389,8 +10506,8 @@ msgstr "使用預設服務提供者"
msgid "Use in-app browser"
msgstr "使用內建瀏覽器"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "使用內建瀏覽器打開連結"
@@ -10445,6 +10562,10 @@ msgstr "用戶封鎖咗你"
msgid "User list by {0}"
msgstr "{0} 嘅用戶清單"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr "{0} 嘅用戶清單"
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "你嘅用戶清單"
@@ -10597,8 +10718,8 @@ msgstr "驗證緊……"
msgid "Version {0}"
msgstr "版本 {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "影片"
@@ -10614,20 +10735,24 @@ msgstr "影片動態源"
msgid "Video from {0}: {text}"
msgstr "影片嚟自 {0}:{text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "影片嚟自{0}。撳一吓去播放或暫停影片"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "電子遊戲"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "條片經已暫停"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "條片播緊"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "搵唔到條片。"
@@ -10635,11 +10760,11 @@ msgstr "搵唔到條片。"
msgid "Video settings"
msgstr "影片設定"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "影片上載成功"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "影片:{0}"
@@ -10647,23 +10772,23 @@ msgstr "影片:{0}"
msgid "Videos"
msgstr "影片"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "影片長度唔得超過 3 分鐘。"
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "睇吓"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "睇吓 {0} 嘅頭像"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "睇吓 {0} 嘅個人檔案"
@@ -10708,7 +10833,7 @@ msgstr "睇晒佢哋"
msgid "View more trending videos"
msgstr "睇多啲時興影片"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "睇吓帖文"
@@ -10788,7 +10913,7 @@ msgstr "暴力或威嚇性內容"
msgid "Visit site"
msgstr "訪問網站"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "去到你嘅通知設定"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "我哋喺請求開始你嘅帳號年齡驗證流程遇着問題。請<0>聯絡支援0>以取得協助。"
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "我哋遇到網絡問題,唔該試多次"
@@ -10968,7 +11093,7 @@ msgstr "對唔住,我哋而家撈唔到你啲靜音字詞。唔該試多次。
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "對唔住,你嘅搵嘢任務未攪得掂。唔該等多幾分鐘試吓。"
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "對唔住!你覆緊嘅帖文經已俾人刪咗。"
@@ -10977,7 +11102,7 @@ msgstr "對唔住!你覆緊嘅帖文經已俾人刪咗。"
msgid "We're sorry! We can't find the page you were looking for."
msgstr "對唔住!我哋搵唔到你要搵嘅頁面。"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "對唔住!你淨係可以訂閱 20 個標記服務,而你經已達到上限。"
@@ -11018,10 +11143,9 @@ msgstr "邊啲啱你心水?"
msgid "What do you want to call your starter pack?"
msgstr "你諗住點嗌你嘅新手包?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "有咩大件事?"
@@ -11097,6 +11221,14 @@ msgstr "點解要審查呢個用戶?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "需要封鎖呢個用戶或刪除呢個對話,定一齊執行?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "睇其他草稿之前,你使唔使儲存現有內容先?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "你使唔使儲存現有內容做草稿,留返遲啲再編輯?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "撰寫訊息"
msgid "Write a post"
msgstr "撰寫一條帖文"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "撰寫帖文"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "寫低你嘅回覆"
@@ -11133,8 +11265,8 @@ msgstr "www.mylivestream.tv"
msgid "Yes"
msgstr "係"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "係,停用佢"
@@ -11188,7 +11320,7 @@ msgstr "你而家喺等待名單度。"
msgid "You are Live"
msgstr "你已開始直播"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "你已停止直播"
@@ -11200,7 +11332,7 @@ msgstr "你唔得上載影片。"
msgid "You are not following anyone yet"
msgstr "你而家仲未跟過任何人"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "你而家開咗直播喇!"
@@ -11255,11 +11387,11 @@ msgstr "你而家可以揀喺邊個人出新帖嗰陣收到通知喇。若然你
msgid "You can now sign in with your new password."
msgstr "你而家可以用你嘅新密碼登入。"
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "你一次淨係揀得一張 GIF。"
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "你一次淨係揀得一條片。"
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "你可以重新啓用你嘅帳號嚟繼續登入,你嘅個人檔案同帖文會畀返其他用戶睇到。"
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "你最多只能揀選 {MAX_IMAGES, plural, other {# 張圖片}}。"
@@ -11317,7 +11449,7 @@ msgstr "你經已封鎖呢個用戶"
msgid "You have blocked this user. You cannot view their content."
msgstr "你經已封鎖咗呢個用戶,你冇得睇佢哋嘅內容。"
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "你經已停用晒回覆、引用同提及嘅通知,因此呢個頁面將唔會再更新。要校返嘅話,請去到你嘅<0>通知設定0>。"
@@ -11376,6 +11508,14 @@ msgstr "你經已成功驗證電郵地址。你而家可以閂咗呢個對話框
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "你暫時經已達到上載影片嘅上限,唔該遲啲試多次。"
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "你呢份草稿有未儲存嘅變更,使唔使儲存咗先?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "你有未儲存嘅變更。睇其他草稿之前,使唔使儲存咗先?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "你而家仲未建立任何新手包!"
@@ -11437,7 +11577,7 @@ msgstr "你必須年滿 {MIN_ACCESS_AGE} 歲先可以建立帳號。"
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "您必須年滿 13 歲先可以使用 Bluesky。閱讀我哋嘅<0>服務條款0>知多啲。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "你必須跟住至少 7 個人先至可以生成新手套裝。"
@@ -11449,7 +11589,7 @@ msgstr "你必須通過年齡驗證以取用呢個畫面。"
msgid "You must grant access to your photo library to save a QR code"
msgstr "你必須授予相片圖庫取用權限先至可以儲存 QR code"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "你必須允許取用你嘅媒體內容。"
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "輪到你喇"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "你而家用緊應用程式專用密碼去登入,請用返你嘅主要密碼登入去繼續停用你嘅帳號。"
@@ -11589,7 +11729,7 @@ msgstr "你經已達到每日上載影片嘅上限(總計影片大細過大)
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "你經已達到每日上載影片嘅上限(影片數量過多)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "你睇晒所有嘢喇。可能係時候要唞陣先?"
@@ -11625,7 +11765,7 @@ msgstr "你嘅申訴經已提交。若然判決上訴得直我哋會透過電郵
msgid "Your birth date"
msgstr "你嘅出世日期"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "你個瀏覽器唔支援呢種影片格式,請試吓用唔同嘅瀏覽器。"
@@ -11692,8 +11832,8 @@ msgstr "你嘅完整帳號代碼會係 <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "你嘅心水主題"
@@ -11731,13 +11871,13 @@ msgstr "你嘅密碼經已變更成功!由而家開始請使用你新嘅密碼
msgid "Your password must be at least 8 characters long."
msgstr "你輸入嘅密碼必須至少要 8 個字元。"
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
-msgstr "你嘅帖文經已發布"
+msgstr "已發布你嘅帖文"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
-msgstr "你嘅帖文經已發布"
+msgstr "已發布你嘅帖文"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:288
msgid "Your preferred language"
@@ -11752,11 +11892,11 @@ msgstr "你嘅頭像"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "你嘅頭像俾其他用戶嘅頭像一圈圈噉圍住"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "你嘅個人檔案、帖文、動態源同埋清單唔會再畀其他 Bluesky 用戶睇到。你幾時都可以登入重新啓用你嘅帳號。"
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "已發布你嘅回覆"
diff --git a/src/locale/locales/zh-TW/messages.po b/src/locale/locales/zh-TW/messages.po
index 31f32d462f..aa77e15136 100644
--- a/src/locale/locales/zh-TW/messages.po
+++ b/src/locale/locales/zh-TW/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-01-22 23:01\n"
+"PO-Revision-Date: 2026-02-04 18:40\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -83,9 +83,9 @@ msgstr "{0, plural, one {# 則轉發} other {# 則轉發}}"
msgid "{0, plural, one {# second} other {# seconds}}"
msgstr "{0, plural, one {# 秒} other {# 秒}}"
-#: src/view/shell/bottom-bar/BottomBar.tsx:222
-#: src/view/shell/bottom-bar/BottomBar.tsx:254
-#: src/view/shell/Drawer.tsx:498
+#: src/view/shell/bottom-bar/BottomBar.tsx:223
+#: src/view/shell/bottom-bar/BottomBar.tsx:255
+#: src/view/shell/Drawer.tsx:500
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# 則未讀} other {# 則未讀}}"
@@ -94,6 +94,10 @@ msgstr "{0, plural, one {# 則未讀} other {# 則未讀}}"
msgid "{0, plural, one {#mo} other {#mo}}"
msgstr "{0, plural, one {# 個月前} other {# 個月前}}"
+#: src/view/com/composer/drafts/DraftItem.tsx:140
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr "{0, plural, other {還有 # 則貼文}}"
+
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/screens/Profile/Header/Metrics.tsx:22
msgid "{0, plural, one {follower} other {followers}}"
@@ -104,7 +108,7 @@ msgstr "{0, plural, one {個跟隨者} other {個跟隨者}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {個跟隨中} other {個跟隨中}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:491
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {個喜歡} other {個喜歡}}"
@@ -112,15 +116,15 @@ msgstr "{0, plural, one {個喜歡} other {個喜歡}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {則貼文} other {則貼文}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:475
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:476
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {次引用} other {次引用}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:457
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:458
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {則轉發} other {則轉發}}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:502
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:503
msgid "{0, plural, one {save} other {saves}}"
msgstr "{0, plural, one {個收藏} other {個收藏}}"
@@ -142,7 +146,7 @@ msgctxt "date and time formatted like this: [time] · [date]"
msgid "{0} · {1}"
msgstr "{0} · {1}"
-#: src/components/moderation/ContentHider.tsx:89
+#: src/components/moderation/ContentHider.tsx:99
msgid "{0} (Account)"
msgstr "{0}(帳號)"
@@ -189,11 +193,11 @@ msgstr "{0} 做出了 {1} 反應"
msgid "{0} reacted {1} to {2}"
msgstr "{0} 對 {2} 做出了 {1} 反應"
-#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:188
msgid "{0}, a feed by {1}, liked by {2}"
msgstr "{0},來自 {1} 的動態源,{2} 對此表示喜歡"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
+#: src/view/com/feeds/FeedSourceCard.tsx:191
msgid "{0}, a list by {1}"
msgstr "{0},來自 {1} 的列表"
@@ -432,7 +436,7 @@ msgstr "已有 {joinedAllTimeCount, plural, other {# 個用戶}}加入了行列
msgid "{minutes, plural, one {# minute} other {# minutes}}"
msgstr "{minutes, plural, other {# 分鐘}}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:277
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:299
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# 則未讀通知} other {# 則未讀通知}}"
@@ -486,11 +490,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}、0><1>{1}1> 和{2, plural, one {其他 # } other {其他 # }}人已包含在您的新手包中"
-#: src/view/shell/Drawer.tsx:117
+#: src/view/shell/Drawer.tsx:119
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {個跟隨者} other {個跟隨者}}"
-#: src/view/shell/Drawer.tsx:128
+#: src/view/shell/Drawer.tsx:130
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {個跟隨中} other {個跟隨中}}"
@@ -580,6 +584,11 @@ msgstr "一張展示貼文收藏功能的螢幕截圖,該按鈕位於分享按
msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature."
msgstr "一張個人檔案頁面的截圖,顯示跟隨按鈕旁邊新增的鈴鐺圖示,用於介紹全新的動態通知功能。"
+#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English.
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:97
+msgid "A screenshot of a the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now???\"."
+msgstr ""
+
#: src/Navigation.tsx:535
#: src/screens/Settings/AboutSettings.tsx:73
#: src/screens/Settings/Settings.tsx:260
@@ -714,8 +723,8 @@ msgstr "再新增至少 {0} 個以繼續"
msgid "Add {displayName} to starter pack"
msgstr "新增 {displayName} 至新手包"
-#: src/view/com/composer/labels/LabelsBtn.tsx:102
-#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:106
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
msgid "Add a content warning"
msgstr "新增內容警告"
@@ -754,11 +763,11 @@ msgstr "新增替代文字(選填)"
msgid "Add another account"
msgstr "新增其他帳號"
-#: src/view/com/composer/Composer.tsx:858
+#: src/view/com/composer/Composer.tsx:1241
msgid "Add another post"
msgstr "加入另一則貼文"
-#: src/view/com/composer/Composer.tsx:1498
+#: src/view/com/composer/Composer.tsx:1900
msgid "Add another post to thread"
msgstr "新增另一則貼文至討論串"
@@ -776,12 +785,12 @@ msgstr "新增應用程式專用密碼"
msgid "Add emoji reaction"
msgstr "加入表情符號反應"
-#: src/view/com/feeds/ComposerPrompt.tsx:222
+#: src/view/com/feeds/ComposerPrompt.tsx:223
msgid "Add image"
msgstr "新增圖片"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:481
+#: src/view/com/composer/SelectMediaButton.tsx:499
msgid "Add media to post"
msgstr "加入媒體到貼文"
@@ -871,7 +880,7 @@ msgstr "補充資訊(1000 個字元以內)"
msgid "Additional details (limit 300 characters)"
msgstr "補充資訊(300 個字元以內)"
-#: src/view/com/composer/labels/LabelsBtn.tsx:154
+#: src/view/com/composer/labels/LabelsBtn.tsx:158
msgid "Adult"
msgstr "色情"
@@ -879,10 +888,10 @@ msgstr "色情"
msgid "Adult content"
msgstr "成人內容"
-#: src/components/moderation/ContentHider.tsx:120
+#: src/components/moderation/ContentHider.tsx:130
#: src/lib/moderation/useGlobalLabelStrings.ts:34
#: src/lib/moderation/useModerationCauseDescription.ts:149
-#: src/view/com/composer/labels/LabelsBtn.tsx:122
+#: src/view/com/composer/labels/LabelsBtn.tsx:126
msgid "Adult Content"
msgstr "成人內容"
@@ -894,8 +903,8 @@ msgstr "成人內容只能透過網頁版 (<0>bsky.app0>) 啟用。"
msgid "Adult content is disabled."
msgstr "已停用成人內容。"
-#: src/view/com/composer/labels/LabelsBtn.tsx:133
-#: src/view/com/composer/labels/LabelsBtn.tsx:191
+#: src/view/com/composer/labels/LabelsBtn.tsx:137
+#: src/view/com/composer/labels/LabelsBtn.tsx:195
msgid "Adult Content labels"
msgstr "成人內容標記"
@@ -930,8 +939,8 @@ msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:171
-#: src/view/screens/Notifications.tsx:88
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+#: src/view/screens/Notifications.tsx:87
msgid "All"
msgstr "全部"
@@ -1017,7 +1026,7 @@ msgstr "已經有帳號了?"
msgid "Already signed in as @{0}"
msgstr "已經以 @{0} 的身分登入"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:89
#: src/view/com/composer/GifAltText.tsx:100
#: src/view/com/composer/photos/Gallery.tsx:188
msgid "ALT"
@@ -1033,7 +1042,7 @@ msgstr "替代文字"
msgid "Alt text"
msgstr "替代文字"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:95
msgid "Alt Text"
msgstr "替代文字"
@@ -1059,7 +1068,7 @@ msgstr "一封電子郵件已傳送至 {0}。請查看郵件並在下方輸入
msgid "An error has occurred"
msgstr "發生錯誤"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:438
msgid "An error occurred"
msgstr "發生錯誤"
@@ -1067,7 +1076,7 @@ msgstr "發生錯誤"
msgid "An error occurred while compressing the video."
msgstr "壓縮影片時發生錯誤。"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:193
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68
msgid "An error occurred while fetching suggested accounts."
msgstr "取得建議帳號時發生錯誤。"
@@ -1076,7 +1085,7 @@ msgstr "取得建議帳號時發生錯誤。"
msgid "An error occurred while fetching the feed."
msgstr "載入動態源時發生錯誤。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:371
+#: src/components/StarterPack/ProfileStarterPacks.tsx:373
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "產生您的新手包時發生錯誤。要再試一次嗎?"
@@ -1088,7 +1097,7 @@ msgstr "隱藏建議時發生錯誤。{0}"
msgid "An error occurred while loading the video. Please try again later."
msgstr "載入影片時發生錯誤。請稍後再試。"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:226
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
msgid "An error occurred while loading the video. Please try again."
msgstr "載入影片時發生錯誤。請稍後再試。"
@@ -1181,7 +1190,7 @@ msgstr "虐待動物"
msgid "Animals"
msgstr "動物"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:95
msgid "Animated GIF"
msgstr "GIF 動畫"
@@ -1306,12 +1315,12 @@ msgstr "使用預設推薦的動態源"
msgid "Apply Pull Request"
msgstr "套用拉取請求 (Pull Request)"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:673
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:674
msgid "Archived from {0}"
msgstr "封存於 {0}"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:681
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:643
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:683
msgid "Archived post"
msgstr "已封存的貼文"
@@ -1332,11 +1341,11 @@ msgstr "您確定要刪除這個新手包嗎?"
msgid "Are you sure you want to discard your changes?"
msgstr "您確定要放棄變更嗎?"
-#: src/components/dms/LeaveConvoPrompt.tsx:46
+#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation?"
msgstr "您確定要離開這個對話嗎?"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:46
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "您確定要離開這段對話嗎?訊息將為您刪除,但不會為其他參與者刪除。"
@@ -1344,11 +1353,7 @@ msgstr "您確定要離開這段對話嗎?訊息將為您刪除,但不會為
msgid "Are you sure you want to remove this from your feeds?"
msgstr "您確定要將此從您的動態源中移除嗎?"
-#: src/view/com/composer/Composer.tsx:807
-msgid "Are you sure you'd like to discard this draft?"
-msgstr "您確定要捨棄這份草稿嗎?"
-
-#: src/view/com/composer/Composer.tsx:997
+#: src/view/com/composer/Composer.tsx:1380
msgid "Are you sure you'd like to discard this post?"
msgstr "您確定要放棄發布這則貼文嗎?"
@@ -1364,7 +1369,7 @@ msgstr "您正在使用 <0>{suggestedLanguageName}0> 撰寫嗎?"
msgid "Art"
msgstr "藝術"
-#: src/view/com/composer/labels/LabelsBtn.tsx:166
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
msgid "Artistic or non-erotic nudity."
msgstr "帶有藝術性或非色情的裸體。"
@@ -1382,8 +1387,8 @@ msgctxt "Name of app icon variant"
msgid "Aurora"
msgstr "極光"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+#: src/screens/Settings/ContentAndMediaSettings.tsx:117
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
msgid "Autoplay videos and GIFs"
msgstr "自動播放影片和 GIF"
@@ -1404,11 +1409,13 @@ msgstr "可用"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Messages/components/ChatDisabled.tsx:145
#: src/screens/Messages/components/ChatDisabled.tsx:146
-#: src/screens/Profile/Header/Shell.tsx:178
+#: src/screens/Profile/Header/Shell.tsx:179
#: src/screens/Settings/components/ChangePasswordDialog.tsx:272
#: src/screens/Settings/components/ChangePasswordDialog.tsx:281
#: src/screens/Signup/BackNextButtons.tsx:41
#: src/screens/StarterPack/Wizard/index.tsx:324
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:85
msgid "Back"
msgstr "返回"
@@ -1578,7 +1585,7 @@ msgstr "部落格"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:703
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:699
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky 無法確認貼文發布日期的真實性。"
@@ -1623,7 +1630,7 @@ msgstr "Bluesky Social 服務條款"
msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
msgstr "Bluesky 會把您的聯絡人以編碼加密形式儲存。刪除聯絡人也會立即刪除此資訊。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:338
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky 將從您的個人社群網路中選擇一組推薦的帳號。"
@@ -1664,20 +1671,20 @@ msgstr "違反網站規定"
msgid "Browse custom feeds"
msgstr "瀏覽自訂動態源"
-#: src/components/FeedInterstitials.tsx:771
+#: src/components/FeedInterstitials.tsx:748
msgid "Browse more accounts"
msgstr "瀏覽更多帳號"
-#: src/components/FeedInterstitials.tsx:901
+#: src/components/FeedInterstitials.tsx:878
msgid "Browse more feeds on the Explore page"
msgstr "在探索頁面瀏覽更多動態源"
-#: src/components/FeedInterstitials.tsx:882
-#: src/components/FeedInterstitials.tsx:885
+#: src/components/FeedInterstitials.tsx:859
+#: src/components/FeedInterstitials.tsx:862
msgid "Browse more suggestions"
msgstr "瀏覽更多建議"
-#: src/components/FeedInterstitials.tsx:910
+#: src/components/FeedInterstitials.tsx:887
msgid "Browse more suggestions on the Explore page"
msgstr "在探索頁面瀏覽更多建議"
@@ -1770,8 +1777,8 @@ msgstr "相機"
#: src/components/live/GoLiveDialog.tsx:252
#: src/components/Menu/index.tsx:352
#: src/components/PostControls/RepostButton.tsx:209
-#: src/components/Prompt.tsx:144
-#: src/components/Prompt.tsx:146
+#: src/components/Prompt.tsx:130
+#: src/components/Prompt.tsx:132
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156
#: src/lib/media/picker.tsx:38
@@ -1788,8 +1795,8 @@ msgstr "相機"
#: src/screens/Settings/Settings.tsx:305
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1052
-#: src/view/com/composer/Composer.tsx:1063
+#: src/view/com/composer/Composer.tsx:1449
+#: src/view/com/composer/Composer.tsx:1461
#: src/view/com/composer/photos/EditImageDialog.web.tsx:43
#: src/view/com/composer/photos/EditImageDialog.web.tsx:52
#: src/view/shell/desktop/LeftNav.tsx:213
@@ -1822,7 +1829,7 @@ msgstr "放棄搜尋"
#: src/components/PostControls/index.tsx:108
#: src/components/PostControls/index.tsx:139
#: src/components/PostControls/index.tsx:167
-#: src/state/shell/composer/index.tsx:95
+#: src/state/shell/composer/index.tsx:104
msgid "Cannot interact with a blocked user"
msgstr "無法與被封鎖的用戶進行互動"
@@ -1901,9 +1908,9 @@ msgstr "成功儲存變更"
#: src/lib/hooks/useNotificationHandler.ts:102
#: src/Navigation.tsx:560
-#: src/view/shell/bottom-bar/BottomBar.tsx:218
+#: src/view/shell/bottom-bar/BottomBar.tsx:219
#: src/view/shell/desktop/LeftNav.tsx:608
-#: src/view/shell/Drawer.tsx:466
+#: src/view/shell/Drawer.tsx:468
msgid "Chat"
msgstr "對話"
@@ -1989,7 +1996,7 @@ msgstr "選擇網域驗證方式"
msgid "Choose Feeds"
msgstr "選擇動態源"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:346
+#: src/components/StarterPack/ProfileStarterPacks.tsx:348
msgid "Choose for me"
msgstr "為我挑選"
@@ -2096,6 +2103,7 @@ msgstr "達達的馬蹄 🐴 是美麗的錯誤 🐴"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:138
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:175
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:184
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:190
@@ -2111,8 +2119,8 @@ msgstr "達達的馬蹄 🐴 是美麗的錯誤 🐴"
#: src/components/live/EditLiveDialog.tsx:221
#: src/components/NewskieDialog.tsx:167
#: src/components/NewskieDialog.tsx:173
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208
-#: src/components/ProgressGuide/FollowDialog.tsx:442
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:102
+#: src/components/ProgressGuide/FollowDialog.tsx:447
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124
#: src/components/verification/VerificationsDialog.tsx:145
@@ -2168,7 +2176,8 @@ msgstr "關閉 GIF 對話框"
msgid "Close image"
msgstr "關閉圖片"
-#: src/view/com/lightbox/Lightbox.web.tsx:110
+#: src/view/com/lightbox/Lightbox.web.tsx:66
+#: src/view/com/lightbox/Lightbox.web.tsx:219
msgid "Close image viewer"
msgstr "關閉圖片檢視器"
@@ -2190,7 +2199,7 @@ msgstr "關閉歡迎畫面"
msgid "Closes password update alert"
msgstr "關閉密碼更新警告"
-#: src/view/com/composer/Composer.tsx:1060
+#: src/view/com/composer/Composer.tsx:1458
msgid "Closes post composer and discards post draft"
msgstr "關閉貼文編輯器並捨棄草稿"
@@ -2242,12 +2251,12 @@ msgstr "完成入門引導以開始使用您的帳號"
msgid "Complete the challenge"
msgstr "完成驗證"
-#: src/view/com/feeds/ComposerPrompt.tsx:145
+#: src/view/com/feeds/ComposerPrompt.tsx:146
#: src/view/shell/desktop/LeftNav.tsx:573
msgid "Compose new post"
msgstr "撰寫新貼文"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1344
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "撰寫最多 {0, plural,other {# 個字元}}的貼文"
@@ -2255,7 +2264,11 @@ msgstr "撰寫最多 {0, plural,other {# 個字元}}的貼文"
msgid "Compose reply"
msgstr "撰寫回覆"
-#: src/view/com/composer/Composer.tsx:1893
+#: src/view/com/composer/Composer.tsx:2298
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2300
msgid "Compressing video..."
msgstr "正在壓縮影片……"
@@ -2263,7 +2276,6 @@ msgstr "正在壓縮影片……"
msgid "Configure content filtering setting for category: {name}"
msgstr "設定 {name} 類別的內容篩選"
-#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36
msgid "Configure live event banner"
msgstr "設定直播活動橫幅"
@@ -2272,8 +2284,8 @@ msgstr "設定直播活動橫幅"
msgid "Configured in <0>moderation settings0>."
msgstr "在 <0>內容篩選0> 中設定。"
-#: src/components/Prompt.tsx:187
-#: src/components/Prompt.tsx:190
+#: src/components/Prompt.tsx:171
+#: src/components/Prompt.tsx:174
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
msgid "Confirm"
@@ -2343,7 +2355,7 @@ msgstr "已匯入聯絡人"
msgid "Contacts removed"
msgstr "已刪除聯絡人"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+#: src/screens/Settings/ContentAndMediaSettings.tsx:52
msgid "Content & Media"
msgstr "內容與媒體"
@@ -2389,7 +2401,7 @@ msgstr "宣揚或提倡自殘內容"
msgid "Content Warning"
msgstr "內容警告"
-#: src/view/com/composer/labels/LabelsBtn.tsx:60
+#: src/view/com/composer/labels/LabelsBtn.tsx:64
msgid "Content warnings"
msgstr "內容警告"
@@ -2401,7 +2413,7 @@ msgstr "內容選單背景,點一下以關閉選單。"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170
#: src/screens/Onboarding/StepInterests/index.tsx:92
#: src/screens/Onboarding/StepProfile/index.tsx:287
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:285
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116
msgid "Continue"
msgstr "繼續"
@@ -2420,7 +2432,7 @@ msgstr "繼續載入討論串……"
#: src/screens/Onboarding/StepInterests/index.tsx:89
#: src/screens/Onboarding/StepProfile/index.tsx:284
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:270
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:282
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113
#: src/screens/Signup/BackNextButtons.tsx:60
msgid "Continue to next step"
@@ -2582,7 +2594,7 @@ msgstr "無法跟隨所有確認的聯絡人。{0}"
msgid "Could not leave chat"
msgstr "無法離開對話"
-#: src/screens/Profile/ProfileFeed/index.tsx:84
+#: src/screens/Profile/ProfileFeed/index.tsx:86
msgid "Could not load feed"
msgstr "無法載入動態"
@@ -2643,8 +2655,8 @@ msgstr "為新手包建立 QR Code"
msgid "Create a starter pack"
msgstr "建立一個新手包"
-#: src/view/screens/Profile.tsx:560
-#: src/view/screens/Profile.tsx:561
+#: src/view/screens/Profile.tsx:563
+#: src/view/screens/Profile.tsx:564
msgid "Create a Starter Pack"
msgstr "建立新手包"
@@ -2654,12 +2666,12 @@ msgstr "為我產生一個新手包"
#: src/components/WelcomeModal.tsx:157
#: src/components/WelcomeModal.tsx:165
-#: src/view/com/auth/SplashScreen.tsx:72
+#: src/view/com/auth/SplashScreen.tsx:106
#: src/view/com/auth/SplashScreen.web.tsx:121
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:201
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
+#: src/view/shell/bottom-bar/BottomBar.tsx:322
+#: src/view/shell/bottom-bar/BottomBar.tsx:327
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:220
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:225
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
@@ -2693,7 +2705,7 @@ msgstr "再建立一個"
msgid "Create moderation list"
msgstr "建立內容管理列表"
-#: src/view/com/auth/SplashScreen.tsx:64
+#: src/view/com/auth/SplashScreen.tsx:99
#: src/view/com/auth/SplashScreen.web.tsx:113
msgid "Create new account"
msgstr "建立新帳號"
@@ -2772,7 +2784,7 @@ msgstr "出生日期"
#: src/screens/Settings/AccountSettings.tsx:161
#: src/screens/Settings/AccountSettings.tsx:166
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:72
msgid "Deactivate account"
msgstr "停用帳號"
@@ -2871,7 +2883,7 @@ msgstr "刪除我的帳號"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:746
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:748
-#: src/view/com/composer/Composer.tsx:971
+#: src/view/com/composer/Composer.tsx:1354
msgid "Delete post"
msgstr "刪除貼文"
@@ -2981,7 +2993,7 @@ msgstr "拒絕其他人引用這則貼文"
msgid "Disable replies entirely"
msgstr "完全關閉回覆"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:404
msgid "Disable subtitles"
msgstr "關閉字幕"
@@ -2996,8 +3008,11 @@ msgstr "停用"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92
#: src/screens/Profile/Header/EditProfileDialog.tsx:82
-#: src/view/com/composer/Composer.tsx:809
-#: src/view/com/composer/Composer.tsx:1004
+#: src/view/com/composer/Composer.tsx:1149
+#: src/view/com/composer/Composer.tsx:1187
+#: src/view/com/composer/Composer.tsx:1387
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:112
msgid "Discard"
msgstr "捨棄"
@@ -3006,11 +3021,12 @@ msgstr "捨棄"
msgid "Discard changes?"
msgstr "要放棄變更嗎?"
-#: src/view/com/composer/Composer.tsx:806
+#: src/view/com/composer/Composer.tsx:1147
+#: src/view/com/composer/drafts/DraftItem.tsx:236
msgid "Discard draft?"
msgstr "要捨棄草稿嗎?"
-#: src/view/com/composer/Composer.tsx:996
+#: src/view/com/composer/Composer.tsx:1379
msgid "Discard post?"
msgstr "要放棄發布嗎?"
@@ -3035,9 +3051,9 @@ msgstr "跳過"
#: src/components/contacts/FindContactsBannerNUX.tsx:76
msgid "Dismiss banner"
-msgstr "忽略提示"
+msgstr "關閉提示橫幅"
-#: src/view/com/composer/Composer.tsx:1817
+#: src/view/com/composer/Composer.tsx:2219
msgid "Dismiss error"
msgstr "跳過錯誤"
@@ -3049,11 +3065,16 @@ msgstr "跳過入門指南"
msgid "Dismiss interests"
msgstr "忽略興趣"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:81
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:63
+msgid "Dismiss live event banner"
+msgstr "關閉直播活動橫幅"
+
#: src/components/interstitials/TrendingVideos.tsx:89
msgid "Dismiss this section"
msgstr "忽略此部分"
-#: src/components/FeedInterstitials.tsx:581
+#: src/components/FeedInterstitials.tsx:560
msgid "Dismiss this suggestion"
msgstr "忽略此建議"
@@ -3121,8 +3142,8 @@ msgstr "不用擔心!您現有的訊息和設定都已儲存,只需驗證您
#: src/screens/Onboarding/StepProfile/index.tsx:340
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
-#: src/view/com/composer/labels/LabelsBtn.tsx:218
-#: src/view/com/composer/labels/LabelsBtn.tsx:225
+#: src/view/com/composer/labels/LabelsBtn.tsx:222
+#: src/view/com/composer/labels/LabelsBtn.tsx:229
#: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303
#: src/view/com/composer/videos/SubtitleDialog.tsx:188
#: src/view/com/composer/videos/SubtitleDialog.tsx:199
@@ -3147,11 +3168,11 @@ msgstr "點兩下或長按訊息以加入反應"
msgid "Double tap to close the dialog"
msgstr "點兩下以關閉對話框"
-#: src/screens/VideoFeed/index.tsx:1117
+#: src/screens/VideoFeed/index.tsx:1118
msgid "Double tap to like"
msgstr "點兩下以表示喜歡"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:330
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:331
msgid "Download Bluesky"
msgstr "下載 Bluesky"
@@ -3164,6 +3185,13 @@ msgstr "下載 CAR 檔案"
msgid "Doxxing"
msgstr "人肉搜尋"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:118
+#: src/view/com/composer/drafts/DraftsButton.tsx:65
+#: src/view/com/composer/drafts/DraftsButton.tsx:74
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:111
+msgid "Drafts"
+msgstr "草稿"
+
#: src/view/com/composer/text-input/TextInput.web.tsx:375
msgid "Drop to add images"
msgstr "拖放即可新增圖片"
@@ -3285,13 +3313,13 @@ msgstr "編輯貼文互動設定"
#: src/screens/Profile/Header/EditProfileDialog.tsx:268
#: src/screens/Profile/Header/EditProfileDialog.tsx:274
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:293
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:324
msgid "Edit profile"
msgstr "編輯個人檔案"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326
msgid "Edit Profile"
msgstr "編輯個人檔案"
@@ -3413,7 +3441,7 @@ msgstr "啟用推播通知"
msgid "Enable quote posts of this post"
msgstr "允許其他人引用這則貼文"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enable subtitles"
msgstr "開啟字幕"
@@ -3421,13 +3449,13 @@ msgstr "開啟字幕"
msgid "Enable this source only"
msgstr "僅啟用此來源"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:134
-#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+#: src/screens/Settings/ContentAndMediaSettings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:147
msgid "Enable trending topics"
msgstr "啟用流行趨勢"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:156
-#: src/screens/Settings/ContentAndMediaSettings.tsx:170
+#: src/screens/Settings/ContentAndMediaSettings.tsx:154
+#: src/screens/Settings/ContentAndMediaSettings.tsx:168
msgid "Enable trending videos in your Discover feed"
msgstr "在您的「Discover」動態源中啟用熱門影片"
@@ -3464,7 +3492,7 @@ msgstr "輸入字詞或標籤"
msgid "Enter code"
msgstr "輸入驗證碼"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:423
msgid "Enter fullscreen"
msgstr "進入全螢幕"
@@ -3501,7 +3529,7 @@ msgstr "輸入您的密碼"
msgid "Enter your username and password"
msgstr "輸入您的用戶名稱和密碼"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:146
msgid "Enters full screen"
msgstr "進入全螢幕"
@@ -3509,7 +3537,7 @@ msgstr "進入全螢幕"
msgid "Entertainment"
msgstr "娛樂"
-#: src/view/com/composer/Composer.tsx:1902
+#: src/view/com/composer/Composer.tsx:2318
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "錯誤"
@@ -3570,7 +3598,7 @@ msgstr "排除已跟隨的用戶"
msgid "Excludes users you follow"
msgstr "排除已跟隨的用戶"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:422
msgid "Exit fullscreen"
msgstr "退出全螢幕"
@@ -3578,11 +3606,7 @@ msgstr "退出全螢幕"
msgid "Exits account deletion process"
msgstr "離開刪除帳號流程"
-#: src/view/com/lightbox/Lightbox.web.tsx:111
-msgid "Exits image view"
-msgstr "離開圖片檢視器"
-
-#: src/view/com/lightbox/Lightbox.web.tsx:185
+#: src/view/com/lightbox/Lightbox.web.tsx:192
msgid "Expand alt text"
msgstr "展開替代文字"
@@ -3598,11 +3622,11 @@ msgstr "展開或摺疊您正在回覆的完整貼文"
msgid "Expand post text"
msgstr "展開貼文文字"
-#: src/screens/VideoFeed/index.tsx:989
+#: src/screens/VideoFeed/index.tsx:990
msgid "Expands or collapses post text"
msgstr "展開或摺疊貼文文字"
-#: src/lib/api/index.ts:418
+#: src/lib/api/index.ts:420
msgid "Expected uri to resolve to a record"
msgstr "URI 應解析為記錄"
@@ -3639,7 +3663,7 @@ msgstr "露骨的色情圖片。"
#: src/Navigation.tsx:789
#: src/screens/Search/Shell.tsx:327
#: src/view/shell/desktop/LeftNav.tsx:687
-#: src/view/shell/Drawer.tsx:414
+#: src/view/shell/Drawer.tsx:416
msgid "Explore"
msgstr "探索"
@@ -3657,8 +3681,8 @@ msgstr "匯出我的資料"
msgid "Export My Data"
msgstr "匯出我的資料"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:86
-#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:88
msgid "External media"
msgstr "外部媒體"
@@ -3730,7 +3754,7 @@ msgstr "刪除貼文時發生問題,請再試一次"
msgid "Failed to delete starter pack"
msgstr "刪除新手包時發生問題"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:122
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:133
msgid "Failed to follow all suggested accounts, please try again"
msgstr "跟隨所有建議帳號時發生問題,請再試一次"
@@ -3829,6 +3853,10 @@ msgstr "撤回驗證時發生問題"
msgid "Failed to resolve location. Please try again."
msgstr "存取位置資訊時發生問題,請再試一次。"
+#: src/view/com/composer/Composer.tsx:572
+msgid "Failed to save draft"
+msgstr "儲存草稿時發生問題"
+
#: src/lib/media/save-image.ios.ts:27
#: src/lib/media/save-image.ts:31
msgid "Failed to save image: {0}"
@@ -3915,6 +3943,7 @@ msgid "Feed"
msgstr "動態源"
#: src/components/FeedCard.tsx:171
+#: src/state/queries/feed.ts:121
#: src/view/com/feeds/FeedSourceCard.tsx:150
msgid "Feed by {0}"
msgstr "來自 {0} 的動態源"
@@ -3941,7 +3970,7 @@ msgstr "動態源目前無法使用"
#: src/view/shell/desktop/RightNav.tsx:107
#: src/view/shell/desktop/RightNav.tsx:108
-#: src/view/shell/Drawer.tsx:368
+#: src/view/shell/Drawer.tsx:370
msgid "Feedback"
msgstr "意見回饋"
@@ -3958,7 +3987,7 @@ msgstr "意見已提交給動態源維護者"
#: src/view/screens/Feeds.tsx:511
#: src/view/screens/Profile.tsx:239
#: src/view/shell/desktop/LeftNav.tsx:725
-#: src/view/shell/Drawer.tsx:530
+#: src/view/shell/Drawer.tsx:532
msgid "Feeds"
msgstr "動態源"
@@ -4008,6 +4037,10 @@ msgstr "篩選您想接收的通知來源"
msgid "Finalizing"
msgstr "正在完成"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:144
+msgid "Finally!"
+msgstr ""
+
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "終於來了!收藏您感興趣的貼文,以便隨時回來查看。"
@@ -4042,9 +4075,9 @@ msgid "Find my friends"
msgstr "尋找我的朋友"
#. Starter packs suggested to the user for them to follow
-#: src/components/ProgressGuide/FollowDialog.tsx:78
-#: src/components/ProgressGuide/FollowDialog.tsx:86
-#: src/components/ProgressGuide/FollowDialog.tsx:428
+#: src/components/ProgressGuide/FollowDialog.tsx:79
+#: src/components/ProgressGuide/FollowDialog.tsx:87
+#: src/components/ProgressGuide/FollowDialog.tsx:433
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42
msgid "Find people to follow"
msgstr "尋找一些人來跟隨"
@@ -4098,19 +4131,19 @@ msgstr "聚焦代碼欄位"
#: src/components/ProfileHoverCard/index.web.tsx:497
#: src/components/ProfileHoverCard/index.web.tsx:508
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:152
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378
-#: src/screens/VideoFeed/index.tsx:873
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381
+#: src/screens/VideoFeed/index.tsx:874
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow"
msgstr "跟隨"
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:139
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369
msgid "Follow {0}"
msgstr "跟隨 {0}"
-#: src/screens/VideoFeed/index.tsx:850
+#: src/screens/VideoFeed/index.tsx:851
msgid "Follow {handle}"
msgstr "跟隨 {handle}"
@@ -4133,7 +4166,7 @@ msgstr "跟隨帳號"
#: src/components/contacts/screens/ViewMatches.tsx:275
#: src/components/contacts/screens/ViewMatches.tsx:290
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:274
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:158
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:165
#: src/screens/Settings/FindContactsSettings.tsx:443
@@ -4143,20 +4176,20 @@ msgstr "跟隨帳號"
msgid "Follow all"
msgstr "全部跟隨"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:259
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
msgid "Follow all accounts"
msgstr "跟隨所有帳號"
#. User is not following this account, click to follow back
#: src/components/ProfileCard.tsx:553
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:150
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:379
#: src/view/com/notifications/NotificationFeedItem.tsx:841
#: src/view/com/notifications/NotificationFeedItem.tsx:848
msgid "Follow back"
msgstr "回跟"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:117
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:128
msgid "Followed all accounts!"
msgstr "跟隨所有帳號!"
@@ -4195,8 +4228,8 @@ msgstr "您也認識的跟隨者"
#: src/components/ProfileHoverCard/index.web.tsx:496
#: src/components/ProfileHoverCard/index.web.tsx:507
#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374
-#: src/screens/VideoFeed/index.tsx:871
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:377
+#: src/screens/VideoFeed/index.tsx:872
#: src/view/com/notifications/NotificationFeedItem.tsx:819
#: src/view/com/notifications/NotificationFeedItem.tsx:836
msgid "Following"
@@ -4214,12 +4247,12 @@ msgstr "跟隨中"
msgid "Following {0}"
msgstr "成功跟隨 {0}"
-#: src/screens/VideoFeed/index.tsx:849
+#: src/screens/VideoFeed/index.tsx:850
msgid "Following {handle}"
msgstr "成功跟隨 {handle}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:78
-#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:80
msgid "Following feed preferences"
msgstr "「Following」(跟隨中)動態源選項"
@@ -4264,7 +4297,7 @@ msgstr "為了確保您的帳號安全,將無法再次查看此密碼。如果
msgid "For the best experience, we recommend using the theme font."
msgstr "我們建議使用主題字型,以享有最佳體驗。"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:329
#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
msgid "For You"
msgstr "為您推薦"
@@ -4307,11 +4340,11 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr "來自 <0/>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
msgid "Generate a starter pack"
msgstr "產生一個新手包"
-#: src/view/shell/Drawer.tsx:372
+#: src/view/shell/Drawer.tsx:374
msgid "Get help"
msgstr "取得幫助"
@@ -4376,10 +4409,15 @@ msgstr "在某人發布貼文時收到通知"
msgid "Get started"
msgstr "開始吧"
-#: src/components/MediaPreview.tsx:114
+#: src/components/MediaPreview.tsx:136
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:64
msgid "GIF"
msgstr "GIF"
+#: src/view/com/composer/Composer.tsx:2323
+msgid "GIF uploaded"
+msgstr ""
+
#: src/screens/Onboarding/StepProfile/index.tsx:242
msgid "Give your profile a face"
msgstr "為您的個人檔案選擇大頭貼照"
@@ -4394,12 +4432,12 @@ msgstr "美化暴力"
#: src/components/moderation/ScreenHider.tsx:160
#: src/components/moderation/ScreenHider.tsx:169
#: src/screens/Messages/Inbox.tsx:251
-#: src/screens/Profile/ProfileFeed/index.tsx:93
+#: src/screens/Profile/ProfileFeed/index.tsx:95
#: src/screens/ProfileList/components/ErrorScreen.tsx:34
#: src/screens/ProfileList/components/ErrorScreen.tsx:40
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1178
-#: src/screens/VideoFeed/index.tsx:1182
+#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1183
#: src/view/com/auth/LoggedOut.tsx:73
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
@@ -4411,7 +4449,7 @@ msgstr "返回"
#: src/screens/List/ListHiddenScreen.tsx:224
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:98
+#: src/screens/Profile/ProfileFeed/index.tsx:100
#: src/screens/StarterPack/StarterPackScreen.tsx:780
#: src/view/screens/NotFound.tsx:56
msgid "Go Back"
@@ -4498,8 +4536,8 @@ msgstr "您帳號的直播功能已被停用"
#: src/lib/moderation/useGlobalLabelStrings.ts:46
#: src/lib/moderation/useGlobalLabelStrings.ts:50
-#: src/view/com/composer/labels/LabelsBtn.tsx:196
-#: src/view/com/composer/labels/LabelsBtn.tsx:199
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+#: src/view/com/composer/labels/LabelsBtn.tsx:203
msgid "Graphic Media"
msgstr "敏感/寫實媒體"
@@ -4592,7 +4630,7 @@ msgstr "由 Bluesky 保留 7 天以防止濫用,並在之後刪除"
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/RightNav.tsx:128
#: src/view/shell/desktop/RightNav.tsx:131
-#: src/view/shell/Drawer.tsx:381
+#: src/view/shell/Drawer.tsx:383
msgid "Help"
msgstr "幫助"
@@ -4632,9 +4670,9 @@ msgstr "隱藏列表"
#: src/components/interstitials/Trending.tsx:133
#: src/components/interstitials/TrendingVideos.tsx:138
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:140
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:776
#: src/lib/moderation/useLabelBehaviorDescription.ts:18
#: src/lib/moderation/useLabelBehaviorDescription.ts:23
@@ -4717,8 +4755,8 @@ msgstr "隱藏用戶列表"
msgid "Hide verification badges"
msgstr "隱藏驗證標記"
-#: src/components/moderation/ContentHider.tsx:159
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:170
+#: src/components/moderation/PostHider.tsx:93
msgid "Hides the content"
msgstr "隱藏內容"
@@ -4760,9 +4798,9 @@ msgstr "等一下!我們正在逐步開放上傳影片功能。您還在等候
#: src/Navigation.tsx:784
#: src/Navigation.tsx:804
-#: src/view/shell/bottom-bar/BottomBar.tsx:175
+#: src/view/shell/bottom-bar/BottomBar.tsx:176
#: src/view/shell/desktop/LeftNav.tsx:669
-#: src/view/shell/Drawer.tsx:440
+#: src/view/shell/Drawer.tsx:442
msgid "Home"
msgstr "首頁"
@@ -4819,7 +4857,7 @@ msgstr "我瞭解"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "我在 Bluesky 上的帳號是 {0} - 快來加入我的行列吧! https://bsky.app/download"
-#: src/view/com/lightbox/Lightbox.web.tsx:187
+#: src/view/com/lightbox/Lightbox.web.tsx:194
msgid "If alt text is long, toggles alt text expanded state"
msgstr "替代文字過長時,切換替代文字的展開狀態"
@@ -4872,7 +4910,7 @@ msgstr "如果您想限制其他人接收您帳號的動態通知,可以前往
msgid "If you're a developer, you can host your own server."
msgstr "如果您是開發人員,也可以架設自己的伺服器。"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:91
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "在停用帳號前,記得確認您是否需要變更帳號代碼或電子信箱。"
@@ -4996,6 +5034,10 @@ msgstr "互動設定"
msgid "Introducing activity notifications"
msgstr "為您介紹動態通知"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:48
+msgid "Introducing drafts"
+msgstr ""
+
#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55
msgid "Introducing finding friends via contacts"
msgstr "為您介紹透過聯絡人尋找朋友"
@@ -5089,7 +5131,7 @@ msgstr "現在新手包裡只有 <0>{0}0>!使用上面的搜尋功能,將
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "現在新手包裡只有您一個人!使用上面的搜尋功能,將更多人新增到您的新手包中。"
-#: src/view/com/composer/Composer.tsx:1836
+#: src/view/com/composer/Composer.tsx:2238
msgid "Job ID: {0}"
msgstr "作業 ID:{0}"
@@ -5122,20 +5164,20 @@ msgstr "有新動態時通知我"
msgid "KWS website"
msgstr "KWS 網站"
-#: src/components/moderation/ContentHider.tsx:239
+#: src/components/moderation/ContentHider.tsx:250
msgid "Labeled by {0}."
msgstr "由 {0} 標記。"
-#: src/components/moderation/ContentHider.tsx:237
+#: src/components/moderation/ContentHider.tsx:248
msgid "Labeled by the author."
msgstr "由發布者標記。"
-#: src/view/com/composer/labels/LabelsBtn.tsx:69
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
#: src/view/screens/Profile.tsx:232
msgid "Labels"
msgstr "標記"
-#: src/view/com/composer/labels/LabelsBtn.tsx:67
+#: src/view/com/composer/labels/LabelsBtn.tsx:71
msgid "Labels added"
msgstr "已加入標記"
@@ -5218,8 +5260,8 @@ msgstr "深入瞭解匯入聯絡人功能"
msgid "Learn more about self hosting your PDS."
msgstr "深入瞭解如何自行架設 PDS。"
-#: src/components/moderation/ContentHider.tsx:157
-#: src/components/moderation/ContentHider.tsx:223
+#: src/components/moderation/ContentHider.tsx:168
+#: src/components/moderation/ContentHider.tsx:234
msgid "Learn more about the moderation applied to this content"
msgstr "深入瞭解對這項內容套用的審核措施"
@@ -5231,7 +5273,7 @@ msgstr "您可以<0>閱讀我們的部落格文章0>,瞭解有關這些變
msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post."
msgstr "您可以閱讀我們的部落格文章,瞭解有關這些變化的更多資訊,以及如何與我們分享您的想法。"
-#: src/components/moderation/PostHider.tsx:113
+#: src/components/moderation/PostHider.tsx:115
#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "深入瞭解這個警告"
@@ -5252,11 +5294,11 @@ msgid "Learn more in your <0>account settings.0>"
msgstr "在您的<0>帳號設定0>瞭解詳情。"
#: src/components/dialogs/ServerInput.tsx:225
-#: src/components/moderation/ContentHider.tsx:247
+#: src/components/moderation/ContentHider.tsx:258
msgid "Learn more."
msgstr "瞭解詳情。"
-#: src/components/dms/LeaveConvoPrompt.tsx:48
+#: src/components/dms/LeaveConvoPrompt.tsx:50
msgid "Leave"
msgstr "離開"
@@ -5286,7 +5328,7 @@ msgstr "離開 Bluesky"
msgid "left to go."
msgstr "個人在排在您前面。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:351
+#: src/components/StarterPack/ProfileStarterPacks.tsx:353
msgid "Let me choose"
msgstr "讓我自己選擇"
@@ -5315,7 +5357,7 @@ msgid "Like"
msgstr "喜歡"
#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:288
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "喜歡({0, plural, other {# 個喜歡}})"
@@ -5380,7 +5422,7 @@ msgstr "喜歡您轉發的貼文"
msgid "Likes of your reposts notifications"
msgstr "喜歡您轉發貼文的通知"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:484
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:485
msgid "Likes on this post"
msgstr "這則貼文的喜歡數"
@@ -5474,7 +5516,7 @@ msgstr "成功取消靜音列表"
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
#: src/view/shell/desktop/LeftNav.tsx:743
-#: src/view/shell/Drawer.tsx:545
+#: src/view/shell/Drawer.tsx:547
msgid "Lists"
msgstr "列表"
@@ -5496,10 +5538,20 @@ msgstr "直播"
msgid "Live event happening now: {0}"
msgstr "正在進行的直播活動:{0}"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:32
+msgid "Live event hidden"
+msgstr "已隱藏直播活動"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105
msgid "Live event options"
msgstr "直播活動選項"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:52
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:34
+msgid "Live event unhidden"
+msgstr "已取消隱藏直播活動"
+
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109
msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface."
msgstr "每逢精彩活動開播時,我們會在這裡及時呈現給您。您可以僅隱藏這則或今後所有的直播活動提醒。"
@@ -5524,11 +5576,11 @@ msgstr "載入更多"
msgid "Load more suggested feeds"
msgstr "載入更多建議動態源"
-#: src/view/screens/Notifications.tsx:278
+#: src/view/screens/Notifications.tsx:277
msgid "Load new notifications"
msgstr "載入更多通知"
-#: src/screens/Profile/ProfileFeed/index.tsx:231
+#: src/screens/Profile/ProfileFeed/index.tsx:233
#: src/screens/Profile/Sections/Feed.tsx:116
#: src/screens/ProfileList/FeedSection.tsx:112
#: src/view/com/feeds/FeedPage.tsx:170
@@ -5564,7 +5616,7 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "網站標誌由 @sawaratsuki.bsky.social 繪製"
#: src/view/shell/desktop/RightNav.tsx:137
-#: src/view/shell/Drawer.tsx:709
+#: src/view/shell/Drawer.tsx:711
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "網站標誌由 <0>@sawaratsuki.bsky.social0> 繪製"
@@ -5600,8 +5652,8 @@ msgstr "為我製作一個"
msgid "Make sure this is where you intend to go!"
msgstr "請確認這是您想前往的網站!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:62
-#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:64
msgid "Manage saved feeds"
msgstr "管理儲存的動態源"
@@ -5638,7 +5690,16 @@ msgstr "之後再說"
msgid "Media"
msgstr "媒體"
-#: src/view/com/composer/labels/LabelsBtn.tsx:205
+#. Example: "Media stored on John's iPhone"
+#: src/view/com/composer/drafts/DraftItem.tsx:116
+msgid "Media stored on {0}"
+msgstr "媒體儲存於 {0}"
+
+#: src/view/com/composer/drafts/DraftItem.tsx:114
+msgid "Media stored on another device"
+msgstr "媒體儲存於其他裝置"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:209
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "可能會使部分受眾感到不安或造成不適的媒體內容。"
@@ -5653,7 +5714,7 @@ msgstr "被提及的用戶"
#: src/lib/hooks/useNotificationHandler.ts:150
#: src/screens/Settings/NotificationSettings/index.tsx:159
#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
-#: src/view/screens/Notifications.tsx:101
+#: src/view/screens/Notifications.tsx:100
msgid "Mentions"
msgstr "提及"
@@ -5716,6 +5777,10 @@ msgstr "其他通知"
msgid "Misleading"
msgstr "誤導"
+#: src/view/com/composer/drafts/DraftItem.tsx:128
+msgid "Missing media"
+msgstr "缺失媒體檔案"
+
#: src/Navigation.tsx:180
#: src/screens/Moderation/index.tsx:99
#: src/screens/Settings/Settings.tsx:192
@@ -5788,6 +5853,7 @@ msgid "More languages..."
msgstr "更多語言……"
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143
+#: src/view/com/composer/drafts/DraftItem.tsx:187
#: src/view/com/profile/ProfileMenu.tsx:242
#: src/view/com/profile/ProfileMenu.tsx:249
msgid "More options"
@@ -5809,7 +5875,7 @@ msgstr "電影"
msgid "Music"
msgstr "音樂"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:167
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
msgctxt "video"
msgid "Mute"
@@ -5939,7 +6005,7 @@ msgstr "前往新手包"
msgid "Navigates to the next screen"
msgstr "前往下一個畫面"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:80
msgid "Navigates to your profile"
msgstr "前往您的個人檔案"
@@ -5983,6 +6049,7 @@ msgstr "新的電子郵件地址"
#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74
#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:84
#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:64
msgid "New Feature"
msgstr "新功能"
@@ -6018,12 +6085,12 @@ msgstr "新訊息"
msgid "New password"
msgstr "新密碼"
-#: src/screens/Profile/ProfileFeed/index.tsx:248
+#: src/screens/Profile/ProfileFeed/index.tsx:250
#: src/screens/ProfileList/index.tsx:246
#: src/screens/ProfileList/index.tsx:284
#: src/view/screens/Feeds.tsx:552
-#: src/view/screens/Notifications.tsx:167
-#: src/view/screens/Profile.tsx:591
+#: src/view/screens/Notifications.tsx:166
+#: src/view/screens/Profile.tsx:594
msgid "New post"
msgstr "新貼文"
@@ -6085,7 +6152,7 @@ msgstr "新聞"
msgid "Next"
msgstr "下一步"
-#: src/view/com/lightbox/Lightbox.web.tsx:170
+#: src/view/com/lightbox/Lightbox.web.tsx:179
msgid "Next image"
msgstr "下一張圖片"
@@ -6114,6 +6181,10 @@ msgstr "目前還沒有自訂動態源"
msgid "No DNS Panel"
msgstr "無 DNS 控制台"
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:135
+msgid "No drafts yet"
+msgstr "目前還沒有草稿"
+
#: src/components/live/EditLiveDialog.tsx:139
msgid "No expiry set"
msgstr "沒有設定過期時間"
@@ -6136,7 +6207,7 @@ msgstr "沒有圖片"
#: src/components/LikedByList.tsx:84
#: src/view/com/post-thread/PostLikedBy.tsx:84
-#: src/view/screens/Profile.tsx:523
+#: src/view/screens/Profile.tsx:526
msgid "No likes yet"
msgstr "目前還沒有喜歡"
@@ -6150,7 +6221,7 @@ msgstr "沒有列表"
msgid "No longer following {0}"
msgstr "成功取消跟隨 {0}"
-#: src/view/screens/Profile.tsx:471
+#: src/view/screens/Profile.tsx:472
msgid "No media yet"
msgstr "目前還沒有任何媒體內容"
@@ -6195,7 +6266,7 @@ msgstr "目前還沒有任何貼文"
msgid "No quotes yet"
msgstr "目前還沒有引用"
-#: src/view/screens/Profile.tsx:456
+#: src/view/screens/Profile.tsx:457
msgid "No replies yet"
msgstr "目前還沒有任何回覆"
@@ -6209,7 +6280,7 @@ msgid "No result"
msgstr "沒有結果"
#: src/components/dialogs/SearchablePeopleList.tsx:223
-#: src/components/ProgressGuide/FollowDialog.tsx:230
+#: src/components/ProgressGuide/FollowDialog.tsx:217
msgid "No results"
msgstr "沒有結果"
@@ -6238,7 +6309,7 @@ msgstr "沒有結果。"
msgid "No search results found for \"{search}\"."
msgstr "找不到符合「{search}」的搜尋結果。"
-#: src/view/screens/Profile.tsx:555
+#: src/view/screens/Profile.tsx:558
msgid "No Starter Packs yet"
msgstr "目前還沒有新手包"
@@ -6247,7 +6318,7 @@ msgstr "目前還沒有新手包"
msgid "No thanks"
msgstr "不用了,謝謝"
-#: src/view/screens/Profile.tsx:497
+#: src/view/screens/Profile.tsx:499
msgid "No video posts yet"
msgstr "目前還沒有任何影片貼文"
@@ -6298,6 +6369,10 @@ msgstr "沒有被任何您認識的人跟隨"
msgid "Not Found"
msgstr "找不到"
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:129
+msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
+msgstr ""
+
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Note about sharing"
msgstr "關於分享的注意事項"
@@ -6321,7 +6396,7 @@ msgstr "還沒有收藏任何內容"
#: src/Navigation.tsx:433
#: src/Navigation.tsx:580
-#: src/view/screens/Notifications.tsx:136
+#: src/view/screens/Notifications.tsx:135
msgid "Notification settings"
msgstr "通知設定"
@@ -6349,10 +6424,10 @@ msgstr "通知音效"
#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
#: src/screens/Settings/Settings.tsx:200
#: src/screens/Settings/Settings.tsx:203
-#: src/view/screens/Notifications.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:249
+#: src/view/screens/Notifications.tsx:129
+#: src/view/shell/bottom-bar/BottomBar.tsx:250
#: src/view/shell/desktop/LeftNav.tsx:706
-#: src/view/shell/Drawer.tsx:493
+#: src/view/shell/Drawer.tsx:495
msgid "Notifications"
msgstr "通知"
@@ -6368,8 +6443,8 @@ msgstr "剛剛"
msgid "Now"
msgstr "剛剛"
-#: src/view/com/composer/labels/LabelsBtn.tsx:145
-#: src/view/com/composer/labels/LabelsBtn.tsx:148
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
msgid "Nudity"
msgstr "裸露"
@@ -6390,7 +6465,7 @@ msgstr "糟糕!"
#. Confirm button text.
#: src/components/contacts/screens/GetContacts.tsx:316
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225
#: src/screens/Search/modules/ExploreInterestsCard.tsx:48
#: src/screens/Settings/AppIconSettings/index.tsx:45
#: src/screens/Settings/AppIconSettings/index.tsx:231
@@ -6398,7 +6473,7 @@ msgid "OK"
msgstr "好的"
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:708
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:705
msgid "Okay"
msgstr "好的"
@@ -6417,23 +6492,23 @@ msgstr "在<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "重新開始入門引導"
-#: src/view/com/composer/Composer.tsx:399
+#: src/view/com/composer/Composer.tsx:707
msgid "One or more GIFs is missing alt text."
msgstr "至少有一張 GIF 缺少了替代文字。"
-#: src/view/com/composer/Composer.tsx:396
+#: src/view/com/composer/Composer.tsx:704
msgid "One or more images is missing alt text."
msgstr "至少有一張圖片缺少了替代文字。"
-#: src/view/com/composer/SelectMediaButton.tsx:393
+#: src/view/com/composer/SelectMediaButton.tsx:411
msgid "One or more of your selected files are not supported."
msgstr "至少有一個選擇的檔案為不支援的格式。"
-#: src/view/com/composer/SelectMediaButton.tsx:416
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "One or more of your selected files are too large. Maximum size is 100 MB."
msgstr "至少有一個選擇的檔案太大了。最大檔案尺寸為 100 MB。"
-#: src/view/com/composer/Composer.tsx:406
+#: src/view/com/composer/Composer.tsx:714
msgid "One or more videos is missing alt text."
msgstr "至少有一段影片缺少了替代文字。"
@@ -6464,8 +6539,8 @@ msgid "Oops, something went wrong!"
msgstr "糟糕,發生錯誤!"
#: src/components/Lists.tsx:183
-#: src/components/StarterPack/ProfileStarterPacks.tsx:360
-#: src/components/StarterPack/ProfileStarterPacks.tsx:369
+#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:371
#: src/screens/Settings/AppPasswords.tsx:58
#: src/screens/Settings/components/ChangeHandleDialog.tsx:106
#: src/view/screens/Profile.tsx:132
@@ -6476,7 +6551,7 @@ msgstr "糟糕!"
msgid "Open avatar creator"
msgstr "開啟大頭貼照建立工具"
-#: src/view/com/feeds/ComposerPrompt.tsx:200
+#: src/view/com/feeds/ComposerPrompt.tsx:201
msgid "Open camera"
msgstr "開啟相機"
@@ -6485,12 +6560,16 @@ msgstr "開啟相機"
msgid "Open conversation options"
msgstr "開啟對話選項"
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr "開啟草稿"
+
#: src/components/Layout/Header/index.tsx:160
msgid "Open drawer menu"
msgstr "開啟側邊選單"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1483
+#: src/view/com/composer/Composer.tsx:1885
msgid "Open emoji picker"
msgstr "開啟表情符號選擇器"
@@ -6557,7 +6636,7 @@ msgstr "開啟系統記錄"
msgid "Opens {0} feed"
msgstr "開啟 {0} 動態源"
-#: src/view/com/composer/labels/LabelsBtn.tsx:62
+#: src/view/com/composer/labels/LabelsBtn.tsx:66
msgid "Opens a dialog to add a content warning to your post"
msgstr "開啟對話框來向您的貼文加入內容警告"
@@ -6589,25 +6668,25 @@ msgstr "開啟變更帳號代碼對話框"
msgid "Opens composer"
msgstr "開啟編輯器"
-#: src/view/com/feeds/ComposerPrompt.tsx:201
+#: src/view/com/feeds/ComposerPrompt.tsx:202
msgid "Opens device camera"
msgstr "開啟裝置相機"
#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:487
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr "開啟裝置相簿以選擇最多 {MAX_IMAGES, plural, other {# 張圖片}}、1 段影片或 1 張 GIF。"
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1886
msgid "Opens emoji picker"
msgstr "開啟表情符號選擇器"
-#: src/view/com/auth/SplashScreen.tsx:66
+#: src/view/com/auth/SplashScreen.tsx:101
#: src/view/com/auth/SplashScreen.web.tsx:115
msgid "Opens flow to create a new Bluesky account"
msgstr "開啟建立新的 Bluesky 帳號的流程"
-#: src/view/com/auth/SplashScreen.tsx:83
+#: src/view/com/auth/SplashScreen.tsx:119
#: src/view/com/auth/SplashScreen.web.tsx:129
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "開啟登入現有 Bluesky 帳號的流程"
@@ -6620,7 +6699,7 @@ msgstr "開啟 GIF 選擇對話框"
msgid "Opens helpdesk in browser"
msgstr "在瀏覽器中開啟說明中心"
-#: src/view/com/feeds/ComposerPrompt.tsx:223
+#: src/view/com/feeds/ComposerPrompt.tsx:224
msgid "Opens image picker"
msgstr "開啟圖片選擇器"
@@ -6640,10 +6719,14 @@ msgstr "開啟密碼重設表單"
msgid "Opens post language settings"
msgstr "開啟貼文語言設定"
-#: src/view/com/feeds/ComposerPrompt.tsx:146
+#: src/view/com/feeds/ComposerPrompt.tsx:147
msgid "Opens the post composer"
msgstr "開啟貼文編輯器"
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr "在編輯器開啟這份草稿"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:1027
#: src/view/com/util/UserAvatar.tsx:597
msgid "Opens this profile"
@@ -6679,7 +6762,7 @@ msgstr "OTA 狀態:沒有更新"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
-#: src/view/com/composer/labels/LabelsBtn.tsx:180
+#: src/view/com/composer/labels/LabelsBtn.tsx:184
msgid "Other"
msgstr "其他"
@@ -6763,13 +6846,13 @@ msgstr "已更新密碼"
msgid "Password updated!"
msgstr "成功更新密碼!"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:385
msgid "Pause"
msgstr "暫停"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:336
msgid "Pause video"
msgstr "暫停影片"
@@ -6829,7 +6912,7 @@ msgstr "已驗證電話號碼"
msgid "Photography"
msgstr "攝影"
-#: src/view/com/composer/labels/LabelsBtn.tsx:164
+#: src/view/com/composer/labels/LabelsBtn.tsx:168
msgid "Pictures meant for adults."
msgstr "可能會引發性聯想的內容。"
@@ -6874,9 +6957,9 @@ msgstr "釘選中的動態源"
msgid "Pinned to your feeds"
msgstr "成功釘選到您的動態源"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:151
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:386
msgid "Play"
msgstr "播放"
@@ -6885,7 +6968,7 @@ msgid "Play {0}"
msgstr "播放 {0}"
#: src/components/Post/Embed/VideoEmbed/index.tsx:115
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:337
msgid "Play video"
msgstr "播放影片"
@@ -6893,11 +6976,11 @@ msgstr "播放影片"
msgid "Play Video"
msgstr "播放影片"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:31
msgid "Plays or pauses the GIF"
msgstr "播放或暫停 GIF"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
msgid "Plays or pauses the video"
msgstr "播放或暫停影片"
@@ -6909,7 +6992,7 @@ msgstr "播放 GIF"
msgid "Plays the video"
msgstr "播放影片"
-#: src/view/com/composer/labels/LabelsBtn.tsx:110
+#: src/view/com/composer/labels/LabelsBtn.tsx:114
msgid "Please add any content warning labels that are applicable for the media you are posting."
msgstr "請為您所發布的媒體內容上加入適當的內容警告標記。"
@@ -7066,31 +7149,31 @@ msgstr "請在下列欄位填寫您的訊息:"
msgid "Politics"
msgstr "政治"
-#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
msgid "Porn"
msgstr "色情"
-#: src/screens/PostThread/index.tsx:528
+#: src/screens/PostThread/index.tsx:529
msgctxt "description"
msgid "Post"
msgstr "貼文"
-#: src/view/com/composer/Composer.tsx:1123
+#: src/view/com/composer/Composer.tsx:1532
msgctxt "action"
msgid "Post"
msgstr "發布"
-#: src/view/screens/Profile.tsx:475
#: src/view/screens/Profile.tsx:476
+#: src/view/screens/Profile.tsx:477
msgid "Post a photo"
msgstr "發布一張照片"
-#: src/view/screens/Profile.tsx:501
-#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+#: src/view/screens/Profile.tsx:504
msgid "Post a video"
msgstr "發布一段影片"
-#: src/view/com/composer/Composer.tsx:1121
+#: src/view/com/composer/Composer.tsx:1530
msgctxt "action"
msgid "Post All"
msgstr "全部發布"
@@ -7217,7 +7300,7 @@ msgstr "點此以檢視哪些您認識的人也跟隨了此帳號"
msgid "Preview"
msgstr "預覽"
-#: src/view/com/lightbox/Lightbox.web.tsx:151
+#: src/view/com/lightbox/Lightbox.web.tsx:158
msgid "Previous image"
msgstr "上一張圖片"
@@ -7257,8 +7340,8 @@ msgstr "隱私與安全設定"
#: src/screens/Settings/AboutSettings.tsx:90
#: src/screens/Settings/AboutSettings.tsx:93
#: src/view/screens/PrivacyPolicy.tsx:34
-#: src/view/shell/Drawer.tsx:704
-#: src/view/shell/Drawer.tsx:705
+#: src/view/shell/Drawer.tsx:706
+#: src/view/shell/Drawer.tsx:707
msgid "Privacy Policy"
msgstr "隱私權政策"
@@ -7266,7 +7349,11 @@ msgstr "隱私權政策"
msgid "Privacy violation of a minor"
msgstr "侵犯未成年者隱私"
-#: src/view/com/composer/Composer.tsx:1899
+#: src/view/com/composer/Composer.tsx:2312
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2314
msgid "Processing video..."
msgstr "正在處理影片……"
@@ -7280,10 +7367,10 @@ msgstr "處理中……"
msgid "profile"
msgstr "個人檔案"
-#: src/view/shell/bottom-bar/BottomBar.tsx:313
+#: src/view/shell/bottom-bar/BottomBar.tsx:293
#: src/view/shell/desktop/LeftNav.tsx:784
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:596
+#: src/view/shell/Drawer.tsx:79
+#: src/view/shell/Drawer.tsx:598
msgid "Profile"
msgstr "個人檔案"
@@ -7305,22 +7392,22 @@ msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "公開、可分享的列表,可用來批次靜音或封鎖帳號。"
#. Accessibility label for button to publish a single post
-#: src/view/com/composer/Composer.tsx:1103
+#: src/view/com/composer/Composer.tsx:1515
msgid "Publish post"
msgstr "發布貼文"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1096
+#: src/view/com/composer/Composer.tsx:1508
msgid "Publish posts"
msgstr "發布貼文"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1081
+#: src/view/com/composer/Composer.tsx:1493
msgid "Publish replies"
msgstr "發布回覆"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1088
+#: src/view/com/composer/Composer.tsx:1500
msgid "Publish reply"
msgstr "發布回覆"
@@ -7360,6 +7447,7 @@ msgstr "引用通知"
#: src/components/PostControls/RepostButton.tsx:198
#: src/components/PostControls/RepostButton.web.tsx:85
#: src/components/PostControls/RepostButton.web.tsx:92
+#: src/view/com/composer/drafts/DraftItem.tsx:134
msgid "Quote post"
msgstr "引用貼文"
@@ -7385,7 +7473,7 @@ msgstr "已拒絕引用貼文"
msgid "Quotes"
msgstr "引用"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:468
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469
msgid "Quotes of this post"
msgstr "引用這則貼文"
@@ -7424,11 +7512,11 @@ msgstr "閱讀如何使用搜尋篩選器"
msgid "Read blog post"
msgstr "閱讀部落格文章"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read less"
msgstr "閱讀較少"
-#: src/screens/VideoFeed/index.tsx:990
+#: src/screens/VideoFeed/index.tsx:991
msgid "Read more"
msgstr "閱讀更多"
@@ -7720,13 +7808,13 @@ msgstr "已關閉回覆"
msgid "Replies to this post are disabled."
msgstr "這則貼文的回覆已關閉。"
-#: src/view/com/composer/Composer.tsx:1119
+#: src/view/com/composer/Composer.tsx:1528
msgctxt "action"
msgid "Reply"
msgstr "回覆"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
-#: src/components/PostControls/index.tsx:241
+#: src/components/PostControls/index.tsx:242
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "回覆({0, plural, other {# 則回覆}})"
@@ -7892,7 +7980,7 @@ msgstr "由您轉發"
msgid "Reposts"
msgstr "轉發"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:451
msgid "Reposts of this post"
msgstr "轉發這則貼文"
@@ -7996,14 +8084,14 @@ msgstr "重新執行上一個出現錯誤的動作"
#: src/components/moderation/ReportDialog/index.tsx:281
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58
-#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+#: src/components/StarterPack/ProfileStarterPacks.tsx:376
#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/LoginForm.tsx:333
#: src/screens/Messages/ChatList.tsx:292
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Messages/Inbox.tsx:219
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:236
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:248
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:251
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94
#: src/screens/PostThread/components/ThreadError.tsx:80
@@ -8030,10 +8118,10 @@ msgstr "返回上一頁"
msgid "Returns to home page"
msgstr "返回首頁"
-#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/Profile/ProfileFeed/index.tsx:96
#: src/screens/ProfileList/components/ErrorScreen.tsx:35
#: src/screens/Settings/components/ChangeHandleDialog.tsx:575
-#: src/screens/VideoFeed/index.tsx:1179
+#: src/screens/VideoFeed/index.tsx:1180
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "返回上一頁"
@@ -8063,7 +8151,7 @@ msgstr "返回上一步"
msgid "Save"
msgstr "儲存"
-#: src/view/com/lightbox/ImageViewing/index.tsx:614
+#: src/view/com/lightbox/ImageViewing/index.tsx:612
msgctxt "action"
msgid "Save"
msgstr "儲存"
@@ -8076,9 +8164,26 @@ msgstr "儲存出生日期"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:200
#: src/screens/SavedFeeds.tsx:116
#: src/screens/SavedFeeds.tsx:120
+#: src/view/com/composer/Composer.tsx:1180
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
msgid "Save changes"
msgstr "儲存變更"
+#: src/view/com/composer/Composer.tsx:1158
+#: src/view/com/composer/drafts/DraftsButton.tsx:87
+msgid "Save changes?"
+msgstr "儲存變更?"
+
+#: src/view/com/composer/Composer.tsx:1181
+#: src/view/com/composer/drafts/DraftsButton.tsx:107
+msgid "Save draft"
+msgstr "儲存草稿"
+
+#: src/view/com/composer/Composer.tsx:1160
+#: src/view/com/composer/drafts/DraftsButton.tsx:89
+msgid "Save draft?"
+msgstr "儲存草稿?"
+
#: src/components/StarterPack/ShareDialog.tsx:143
#: src/components/StarterPack/ShareDialog.tsx:149
msgid "Save image"
@@ -8103,7 +8208,7 @@ msgid "Save to my feeds"
msgstr "儲存到我的動態源"
#: src/view/shell/desktop/LeftNav.tsx:762
-#: src/view/shell/Drawer.tsx:571
+#: src/view/shell/Drawer.tsx:573
msgctxt "link to bookmarks screen"
msgid "Saved"
msgstr "收藏"
@@ -8155,7 +8260,7 @@ msgstr "捲動到頂部"
#: src/components/forms/SearchInput.tsx:36
#: src/screens/Search/Shell.tsx:327
#: src/screens/Search/Shell.tsx:514
-#: src/view/shell/bottom-bar/BottomBar.tsx:195
+#: src/view/shell/bottom-bar/BottomBar.tsx:196
msgid "Search"
msgstr "搜尋"
@@ -8164,7 +8269,7 @@ msgstr "搜尋"
msgid "Search @{0}'s posts"
msgstr "搜尋 @{0} 的貼文"
-#: src/components/ProgressGuide/FollowDialog.tsx:659
+#: src/components/ProgressGuide/FollowDialog.tsx:664
msgid "Search by name or interest"
msgstr "按名稱或興趣搜尋"
@@ -8177,12 +8282,12 @@ msgid "Search feeds"
msgstr "搜尋動態源"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:488
+#: src/components/ProgressGuide/FollowDialog.tsx:493
msgid "Search for \"{interestsDisplayName}\""
msgstr "搜尋「{interestsDisplayName}」"
#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected.
-#: src/components/ProgressGuide/FollowDialog.tsx:481
+#: src/components/ProgressGuide/FollowDialog.tsx:486
msgid "Search for \"{interestsDisplayName}\" (active)"
msgstr "搜尋「{interestsDisplayName}」(已選取)"
@@ -8234,7 +8339,7 @@ msgid "Search posts"
msgstr "搜尋貼文"
#: src/components/dialogs/SearchablePeopleList.tsx:534
-#: src/components/ProgressGuide/FollowDialog.tsx:678
+#: src/components/ProgressGuide/FollowDialog.tsx:683
msgid "Search profiles"
msgstr "搜尋用戶"
@@ -8247,7 +8352,7 @@ msgid "Search..."
msgstr "搜尋……"
#: src/components/dialogs/SearchablePeopleList.tsx:535
-#: src/components/ProgressGuide/FollowDialog.tsx:679
+#: src/components/ProgressGuide/FollowDialog.tsx:684
msgid "Searches for profiles"
msgstr "搜尋個人檔案"
@@ -8283,12 +8388,12 @@ msgstr "檢視此用戶包含 #{tag} 的貼文"
msgid "See jobs at Bluesky"
msgstr "瀏覽在 Bluesky 的工作機會"
-#: src/components/FeedInterstitials.tsx:724
-#: src/components/FeedInterstitials.tsx:785
+#: src/components/FeedInterstitials.tsx:699
+#: src/components/FeedInterstitials.tsx:762
msgid "See more"
msgstr "檢視更多"
-#: src/components/FeedInterstitials.tsx:706
+#: src/components/FeedInterstitials.tsx:681
msgid "See more suggested profiles"
msgstr "檢視更多建議個人檔案"
@@ -8456,7 +8561,7 @@ msgstr "選擇您在動態中翻譯的偏好目標語言。"
msgid "Select your preferred notification channels"
msgstr "選擇您偏好的通知類型"
-#: src/view/com/composer/SelectMediaButton.tsx:396
+#: src/view/com/composer/SelectMediaButton.tsx:414
msgid "Selecting multiple media types is not supported."
msgstr "不支援選擇多種媒體類型。"
@@ -8485,7 +8590,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "傳送電子郵件"
-#: src/view/shell/Drawer.tsx:361
+#: src/view/shell/Drawer.tsx:363
msgid "Send feedback"
msgstr "提交意見"
@@ -8566,7 +8671,7 @@ msgstr "設定用於重設密碼的電子郵件"
#: src/Navigation.tsx:216
#: src/screens/Settings/Settings.tsx:103
#: src/view/shell/desktop/LeftNav.tsx:802
-#: src/view/shell/Drawer.tsx:609
+#: src/view/shell/Drawer.tsx:611
msgid "Settings"
msgstr "設定"
@@ -8619,7 +8724,7 @@ msgctxt "toast"
msgid "Settings saved"
msgstr "成功儲存設定"
-#: src/view/com/composer/labels/LabelsBtn.tsx:168
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
msgid "Sexual activity or erotic nudity."
msgstr "明確的性行為或色情裸體。"
@@ -8634,7 +8739,7 @@ msgstr "性暗示"
msgid "Share"
msgstr "分享"
-#: src/view/com/lightbox/ImageViewing/index.tsx:623
+#: src/view/com/lightbox/ImageViewing/index.tsx:621
msgctxt "action"
msgid "Share"
msgstr "分享"
@@ -8712,13 +8817,13 @@ msgstr "分享您喜愛的動態源!"
msgid "Shared Preferences Tester"
msgstr "共用偏好測試器"
-#: src/components/moderation/ContentHider.tsx:208
+#: src/components/moderation/ContentHider.tsx:219
#: src/components/moderation/LabelPreference.tsx:142
-#: src/components/moderation/PostHider.tsx:137
+#: src/components/moderation/PostHider.tsx:139
msgid "Show"
msgstr "顯示"
-#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:81
msgid "Show alt text"
msgstr "顯示替代文字"
@@ -8820,7 +8925,7 @@ msgstr "顯示警告,並從動態中排除內容"
msgid "Show when you’re live"
msgstr "顯示直播狀態"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645
msgid "Shows information about when this post was created"
msgstr "顯示有關此貼文建立時間的資訊"
@@ -8828,8 +8933,8 @@ msgstr "顯示有關此貼文建立時間的資訊"
msgid "Shows other accounts you can switch to"
msgstr "顯示其他您可以切換的帳號"
-#: src/components/moderation/ContentHider.tsx:160
-#: src/components/moderation/PostHider.tsx:91
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:93
msgid "Shows the content"
msgstr "顯示內容"
@@ -8842,14 +8947,14 @@ msgstr "顯示內容"
#: src/screens/Login/index.tsx:158
#: src/screens/Login/LoginForm.tsx:181
#: src/screens/Search/SearchResults.tsx:296
-#: src/view/com/auth/SplashScreen.tsx:81
-#: src/view/com/auth/SplashScreen.tsx:89
+#: src/view/com/auth/SplashScreen.tsx:117
+#: src/view/com/auth/SplashScreen.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:127
#: src/view/com/auth/SplashScreen.web.tsx:135
-#: src/view/shell/bottom-bar/BottomBar.tsx:352
-#: src/view/shell/bottom-bar/BottomBar.tsx:357
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:211
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:216
+#: src/view/shell/bottom-bar/BottomBar.tsx:332
+#: src/view/shell/bottom-bar/BottomBar.tsx:337
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:230
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -8916,17 +9021,13 @@ msgstr "需要登入"
msgid "Signed in as @{0}"
msgstr "以 @{0} 的身分登入"
-#: src/components/FeedInterstitials.tsx:701
-msgid "Similar accounts"
-msgstr "類似帳號"
-
#: src/components/contacts/screens/PhoneInput.tsx:162
#: src/components/contacts/screens/VerifyNumber.tsx:204
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:85
#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:89
#: src/screens/Onboarding/StepFinished/index.tsx:291
#: src/screens/Onboarding/StepFinished/index.tsx:313
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:261
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:219
msgid "Skip"
@@ -8942,7 +9043,7 @@ msgstr "略過分享聯絡人並繼續使用應用程式"
msgid "Skip introduction and start using your account"
msgstr "跳過介紹並開始使用您的帳號"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:258
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101
msgid "Skip to next step"
msgstr "略過此步驟"
@@ -8967,7 +9068,7 @@ msgstr "軟體開發"
msgid "Some of your verifications are invalid."
msgstr "您目前被授予的部分驗證無效。"
-#: src/components/FeedInterstitials.tsx:864
+#: src/components/FeedInterstitials.tsx:841
msgid "Some other feeds you might like"
msgstr "其他您可能喜歡的動態源"
@@ -8994,7 +9095,7 @@ msgstr "發生錯誤"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138
#: src/components/moderation/ReportDialog/index.tsx:273
#: src/screens/Deactivated.tsx:85
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:58
#: src/view/screens/Storybook/Admonitions.tsx:55
msgid "Something went wrong, please try again"
msgstr "發生錯誤,請再試一次"
@@ -9020,7 +9121,7 @@ msgstr "發生錯誤,請再試一次。"
msgid "Something wrong? Let us know."
msgstr "看起來有點問題?讓我們知道。"
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
msgid "Sorry, we're unable to load account suggestions at this time."
msgstr "很抱歉,我們目前無法載入帳號建議。"
@@ -9113,7 +9214,11 @@ msgstr "新手包"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "新手包能讓您輕鬆地與朋友分享喜愛的動態源與人物。"
-#: src/view/screens/Profile.tsx:553
+#: src/components/StarterPack/ProfileStarterPacks.tsx:104
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr "新手包可以助您與朋友分享喜愛的動態源與人物。"
+
+#: src/view/screens/Profile.tsx:556
msgid "Starter Packs let you share your favorite feeds and people with your friends."
msgstr "新手包可以助您與朋友分享喜愛的動態源與人物。"
@@ -9181,11 +9286,11 @@ msgstr "訂閱 @{0} 以使用這些標記:"
msgid "Subscribe to account activity"
msgstr "訂閱帳號動態"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "Subscribe to Labeler"
msgstr "訂閱標記服務"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:310
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
msgid "Subscribe to this labeler"
msgstr "訂閱這個標記服務"
@@ -9212,13 +9317,13 @@ msgid "Suggested Accounts"
msgstr "建議帳號"
#. Accounts suggested to the user for them to follow
-#: src/components/FeedInterstitials.tsx:699
-#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:152
+#: src/components/FeedInterstitials.tsx:677
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:163
msgid "Suggested for you"
msgstr "為您推薦"
-#: src/view/com/composer/labels/LabelsBtn.tsx:139
-#: src/view/com/composer/labels/LabelsBtn.tsx:142
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
msgid "Suggestive"
msgstr "性暗示"
@@ -9354,8 +9459,8 @@ msgstr "條款"
#: src/screens/Settings/AboutSettings.tsx:82
#: src/screens/Settings/AboutSettings.tsx:85
#: src/view/screens/TermsOfService.tsx:34
-#: src/view/shell/Drawer.tsx:697
#: src/view/shell/Drawer.tsx:699
+#: src/view/shell/Drawer.tsx:701
msgid "Terms of Service"
msgstr "服務條款"
@@ -9403,12 +9508,12 @@ msgstr "這個用戶名稱已被佔用"
msgid "That's all, folks!"
msgstr "就這些,報告完畢!"
-#: src/screens/VideoFeed/index.tsx:1151
+#: src/screens/VideoFeed/index.tsx:1152
msgid "That's everything!"
msgstr "就這些了!"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
#: src/view/com/profile/ProfileMenu.tsx:539
msgid "The account will be able to interact with you after unblocking."
msgstr "解除封鎖後,該帳號將能夠重新與您進行互動。"
@@ -9447,7 +9552,7 @@ msgstr "Discover 動態源"
msgid "The Discover feed now knows what you like"
msgstr "現在「Discover」動態源瞭解您喜歡的內容了"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:333
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "使用應用程式的體驗會更好。現在就下載 Bluesky,我們將從您離開的地方繼續。"
@@ -9527,7 +9632,7 @@ msgstr "主題"
msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again."
msgstr "變更出生日期的頻率有限制,您可能需要等待一兩天才能再次變更。"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:85
msgid "There is no time limit for account deactivation, come back any time."
msgstr "停用帳號沒有時間限制,隨時歡迎您回來看看。"
@@ -9711,6 +9816,10 @@ msgstr "這項內容需要登入 Bluesky 帳號才能檢視。"
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "此對話的參與者已停用或刪除帳號。點此以檢視選項"
+#: src/view/com/composer/drafts/DraftItem.tsx:237
+msgid "This draft will be permanently deleted."
+msgstr "這份草稿將被永久刪除。"
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:156
msgid "This email is already associated with your account."
msgstr "這個電子信箱已經綁定於您的帳號。"
@@ -9740,7 +9849,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "這個動態源沒有任何動靜。您可能需要再跟隨一些用戶,或檢查您的語言設定。"
#: src/components/StarterPack/Main/PostsList.tsx:41
-#: src/screens/Profile/ProfileFeed/index.tsx:197
+#: src/screens/Profile/ProfileFeed/index.tsx:199
#: src/screens/ProfileList/FeedSection.tsx:77
msgid "This feed is empty."
msgstr "這個動態源空空如也。"
@@ -9798,7 +9907,7 @@ msgstr "這個列表是空的。"
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "這項內容管理服務目前無法使用,更多資訊請參見下方。如果問題持續發生,請聯絡我們。"
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:684
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:686
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "這則貼文宣告的發布時間為 <0>{0}0>,但首次出現在 Bluesky 的時間是 <1>{1}1>。"
@@ -9818,7 +9927,7 @@ msgstr "這則貼文已被發布者刪除"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "這則貼文將會從動態及討論串中隱藏,之後將無法取消。"
-#: src/view/com/composer/Composer.tsx:515
+#: src/view/com/composer/Composer.tsx:823
msgid "This post's author has disabled quote posts."
msgstr "這則貼文的發布者拒絕引用貼文。"
@@ -9834,7 +9943,7 @@ msgstr "這則回覆將被折疊到您討論串底部的隱藏部分,並將為
msgid "This service has not provided terms of service or a privacy policy."
msgstr "這個服務尚未提供服務條款或隱私權政策。"
-#: src/components/live/queries.ts:38
+#: src/components/live/queries.ts:40
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr "直播功能仍處於測試階段,尚不支援此服務。目前可使用的服務:{formatted}。"
@@ -9900,8 +10009,8 @@ msgstr "您的貼文將從這則引用貼文中刪除,並取代為一個佔位
msgid "Thread options"
msgstr "討論串選項"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:70
-#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:72
msgid "Thread preferences"
msgstr "討論串選項"
@@ -9951,7 +10060,7 @@ msgstr "今天"
msgid "Toggle to enable or disable adult content"
msgstr "切換以啟用或停用成人內容"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169
msgid "Toggles the sound"
msgstr "切換聲音"
@@ -9988,8 +10097,8 @@ msgstr "話題"
#: src/components/dms/MessageContextMenu.tsx:138
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:505
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:507
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606
-#: src/screens/PostThread/components/ThreadItemAnchor.tsx:609
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:607
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610
msgid "Translate"
msgstr "翻譯"
@@ -10091,15 +10200,15 @@ msgstr "無法取得動態源資訊"
#: src/components/dms/MessagesListBlockedFooter.tsx:112
#: src/components/dms/MessagesListBlockedFooter.tsx:119
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:337
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397
#: src/screens/ProfileList/components/Header.tsx:165
#: src/screens/ProfileList/components/Header.tsx:172
#: src/view/com/profile/ProfileMenu.tsx:551
msgid "Unblock"
msgstr "解除封鎖"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:341
msgctxt "action"
msgid "Unblock"
msgstr "解除封鎖"
@@ -10112,7 +10221,7 @@ msgid "Unblock account"
msgstr "解除封鎖帳號"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:392
#: src/view/com/profile/ProfileMenu.tsx:533
msgid "Unblock Account?"
msgstr "要解除封鎖嗎?"
@@ -10127,8 +10236,12 @@ msgctxt "Button label to undo saving/removing a post from saved posts."
msgid "Undo"
msgstr "取消"
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:57
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:63
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:39
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:45
msgid "Undo"
msgstr "取消"
@@ -10142,7 +10255,7 @@ msgstr "取消轉發"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "取消轉發({0, plural, other {# 則轉發}})"
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368
msgid "Unfollow {0}"
msgstr "取消跟隨 {0}"
@@ -10151,7 +10264,7 @@ msgstr "取消跟隨 {0}"
msgid "Unfollow account"
msgstr "取消跟隨帳號"
-#: src/screens/VideoFeed/index.tsx:854
+#: src/screens/VideoFeed/index.tsx:855
msgid "Unfollows the user"
msgstr "取消跟隨用戶"
@@ -10184,11 +10297,11 @@ msgid "Unlike"
msgstr "取消喜歡"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
-#: src/components/PostControls/index.tsx:277
+#: src/components/PostControls/index.tsx:278
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "取消喜歡({0, plural, other {# 個喜歡}})"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:166
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
msgctxt "video"
msgid "Unmute"
@@ -10225,7 +10338,7 @@ msgstr "取消靜音列表"
msgid "Unmute thread"
msgstr "取消靜音討論串"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:334
msgid "Unmute video"
msgstr "取消靜音影片"
@@ -10276,7 +10389,7 @@ msgstr "成功取消釘選列表"
msgid "Unsnooze email reminder"
msgstr "取消暫停電子郵件提醒"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:342
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344
msgid "Unsubscribe"
msgstr "取消訂閱"
@@ -10285,7 +10398,7 @@ msgstr "取消訂閱"
msgid "Unsubscribe from list"
msgstr "取消套用這個列表"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311
msgid "Unsubscribe from this labeler"
msgstr "取消訂閱這個標記服務"
@@ -10293,7 +10406,7 @@ msgstr "取消訂閱這個標記服務"
msgid "Unsubscribed from list"
msgstr "成功取消套用列表"
-#: src/view/com/composer/Composer.tsx:899
+#: src/view/com/composer/Composer.tsx:1282
msgid "Unsupported video type: {mimeType}"
msgstr "不支援的影片類型:{mimeType}"
@@ -10363,16 +10476,20 @@ msgstr "從檔案上傳"
msgid "Upload from Library"
msgstr "從相簿上傳"
+#: src/view/com/composer/Composer.tsx:2305
+msgid "Uploading GIF..."
+msgstr ""
+
#: src/lib/api/index.ts:302
msgid "Uploading images..."
msgstr "正在上傳圖片……"
-#: src/lib/api/index.ts:368
-#: src/lib/api/index.ts:392
+#: src/lib/api/index.ts:370
+#: src/lib/api/index.ts:394
msgid "Uploading link thumbnail..."
msgstr "正在上傳連結縮圖……"
-#: src/view/com/composer/Composer.tsx:1896
+#: src/view/com/composer/Composer.tsx:2307
msgid "Uploading video..."
msgstr "正在上傳影片……"
@@ -10389,8 +10506,8 @@ msgstr "使用預設服務提供者"
msgid "Use in-app browser"
msgstr "使用內建瀏覽器"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:104
-#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+#: src/screens/Settings/ContentAndMediaSettings.tsx:103
+#: src/screens/Settings/ContentAndMediaSettings.tsx:109
msgid "Use in-app browser to open links"
msgstr "使用內建瀏覽器開啟連結"
@@ -10445,6 +10562,10 @@ msgstr "該用戶已把您封鎖"
msgid "User list by {0}"
msgstr "來自 {0} 的用戶列表"
+#: src/state/queries/feed.ts:162
+msgid "User List by {0}"
+msgstr "來自 {0} 的用戶列表"
+
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
msgstr "您的用戶列表"
@@ -10597,8 +10718,8 @@ msgstr "正在驗證……"
msgid "Version {0}"
msgstr "版本 {0}"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:145
msgid "Video"
msgstr "影片"
@@ -10614,20 +10735,24 @@ msgstr "影片動態源"
msgid "Video from {0}: {text}"
msgstr "影片來自 {0}:{text}"
+#: src/screens/VideoFeed/index.tsx:1113
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr "來自 {0} 的影片。點一下來播放或暫停影片"
+
#: src/lib/interests.ts:62
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231
msgid "Video Games"
msgstr "電子遊戲"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is paused"
msgstr "影片已暫停"
-#: src/screens/VideoFeed/index.tsx:1109
+#: src/screens/VideoFeed/index.tsx:1110
msgid "Video is playing"
msgstr "影片正在播放"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:219
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
msgid "Video not found."
msgstr "找不到影片。"
@@ -10635,11 +10760,11 @@ msgstr "找不到影片。"
msgid "Video settings"
msgstr "影片設定"
-#: src/view/com/composer/Composer.tsx:1906
+#: src/view/com/composer/Composer.tsx:2325
msgid "Video uploaded"
msgstr "影片上傳成功"
-#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:84
msgid "Video: {0}"
msgstr "影片:{0}"
@@ -10647,23 +10772,23 @@ msgstr "影片:{0}"
msgid "Videos"
msgstr "影片"
-#: src/view/com/composer/SelectMediaButton.tsx:410
+#: src/view/com/composer/SelectMediaButton.tsx:428
msgid "Videos must be less than 3 minutes long."
msgstr "影片長度不得超過 3 分鐘。"
-#: src/view/com/composer/Composer.tsx:587
+#: src/view/com/composer/Composer.tsx:915
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "檢視"
-#: src/screens/Profile/Header/Shell.tsx:261
+#: src/screens/Profile/Header/Shell.tsx:262
msgid "View {0}'s avatar"
msgstr "檢視 {0} 的大頭貼照"
#: src/components/ProfileCard.tsx:142
#: src/screens/Profile/components/ProfileFeedHeader.tsx:458
#: src/screens/Search/components/SearchProfileCard.tsx:36
-#: src/screens/VideoFeed/index.tsx:813
+#: src/screens/VideoFeed/index.tsx:814
#: src/view/com/notifications/NotificationFeedItem.tsx:609
msgid "View {0}'s profile"
msgstr "檢視 {0} 的個人檔案"
@@ -10708,7 +10833,7 @@ msgstr "檢視更多"
msgid "View more trending videos"
msgstr "檢視更多熱門影片"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:910
msgid "View post"
msgstr "檢視貼文"
@@ -10788,7 +10913,7 @@ msgstr "暴力或威脅性內容"
msgid "Visit site"
msgstr "造訪網站"
-#: src/view/screens/Notifications.tsx:303
+#: src/view/screens/Notifications.tsx:302
msgid "Visit your notification settings"
msgstr "前往您的通知設定"
@@ -10938,7 +11063,7 @@ msgid "We're having issues initializing the age assurance process for your accou
msgstr "我們在請求開始您帳號的年齡驗證程序時遇到了問題。請<0>聯絡支援0>以取得協助。"
#: src/components/dialogs/SearchablePeopleList.tsx:107
-#: src/components/ProgressGuide/FollowDialog.tsx:190
+#: src/components/ProgressGuide/FollowDialog.tsx:191
msgid "We're having network issues, try again"
msgstr "我們遇到了網路問題,請再試一次"
@@ -10968,7 +11093,7 @@ msgstr "很抱歉,我們目前無法載入您的靜音字詞。請稍後再試
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "很抱歉,無法完成您的搜尋請求。請稍後再試。"
-#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:820
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "很抱歉!您要回覆的貼文已被刪除。"
@@ -10977,7 +11102,7 @@ msgstr "很抱歉!您要回覆的貼文已被刪除。"
msgid "We're sorry! We can't find the page you were looking for."
msgstr "很抱歉!我們找不到您正在尋找的頁面。"
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:217
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:218
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "抱歉!目前最多只能訂閱 20 位標記服務,您已經達到上限。"
@@ -11018,10 +11143,9 @@ msgstr "您對什麼感興趣?"
msgid "What do you want to call your starter pack?"
msgstr "您想怎麼命名這個新手包?"
-#: src/view/com/auth/SplashScreen.tsx:51
#: src/view/com/auth/SplashScreen.web.tsx:103
-#: src/view/com/composer/Composer.tsx:859
-#: src/view/com/feeds/ComposerPrompt.tsx:191
+#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/feeds/ComposerPrompt.tsx:192
msgid "What's up?"
msgstr "發生了什麼新鮮事?"
@@ -11097,6 +11221,14 @@ msgstr "請問此用戶有什麼問題嗎?"
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "需要封鎖此帳號、刪除整個對話,或兩者一併執行嗎?"
+#: src/view/com/composer/drafts/DraftsButton.tsx:100
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr "在檢視其他草稿前,需要先儲存現有內容嗎?"
+
+#: src/view/com/composer/Composer.tsx:1170
+msgid "Would you like to save this as a draft to edit later?"
+msgstr "需要把現有內容儲存為草稿,以供日後編輯嗎?"
+
#: src/screens/Messages/components/MessageInput.tsx:154
#: src/screens/Messages/components/MessageInput.web.tsx:214
msgid "Write a message"
@@ -11107,12 +11239,12 @@ msgstr "撰寫訊息"
msgid "Write a post"
msgstr "撰寫一篇貼文"
-#: src/view/com/composer/Composer.tsx:959
+#: src/view/com/composer/Composer.tsx:1342
msgid "Write post"
msgstr "撰寫貼文"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:90
-#: src/view/com/composer/Composer.tsx:857
+#: src/view/com/composer/Composer.tsx:1240
msgid "Write your reply"
msgstr "撰寫您的回覆"
@@ -11133,8 +11265,8 @@ msgstr "live.example.com"
msgid "Yes"
msgstr "是"
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:104
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
msgid "Yes, deactivate"
msgstr "是,停用帳號"
@@ -11188,7 +11320,7 @@ msgstr "您已在等待名單中。"
msgid "You are Live"
msgstr "您已開始直播"
-#: src/components/live/queries.ts:206
+#: src/components/live/queries.ts:208
msgid "You are no longer live"
msgstr "您已停止直播"
@@ -11200,7 +11332,7 @@ msgstr "您沒有上傳影片的權限。"
msgid "You are not following anyone yet"
msgstr "您尚未跟隨任何人"
-#: src/components/live/queries.ts:150
+#: src/components/live/queries.ts:152
msgid "You are now live!"
msgstr "您現在開始直播了!"
@@ -11255,11 +11387,11 @@ msgstr "您現在可以選擇在其他人發布貼文時收到通知了。如果
msgid "You can now sign in with your new password."
msgstr "您可以使用新密碼登入了。"
-#: src/view/com/composer/SelectMediaButton.tsx:413
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one GIF at a time."
msgstr "您一次只能選擇一個 GIF。"
-#: src/view/com/composer/SelectMediaButton.tsx:407
+#: src/view/com/composer/SelectMediaButton.tsx:425
msgid "You can only select one video at a time."
msgstr "您一次只能選擇一段影片。"
@@ -11268,7 +11400,7 @@ msgid "You can reactivate your account to continue logging in. Your profile and
msgstr "您可以登入以重新啟用帳號。其他用戶將可以重新看到您的個人檔案和貼文。"
#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.
-#: src/view/com/composer/SelectMediaButton.tsx:399
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgstr "您最多只能選擇 {MAX_IMAGES, plural, other {# 張圖片}}。"
@@ -11317,7 +11449,7 @@ msgstr "您已封鎖該用戶"
msgid "You have blocked this user. You cannot view their content."
msgstr "您封鎖了此用戶,因此無法檢視他們發布的內容。"
-#: src/view/screens/Notifications.tsx:298
+#: src/view/screens/Notifications.tsx:297
msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings0>."
msgstr "您已完全停用回覆、引用以及提及的通知,因此這個頁面將不再更新。要調整此功能,請前往您的<0>通知設定0>。"
@@ -11376,6 +11508,14 @@ msgstr "您已成功驗證電子郵件地址。現在您可以關閉此對話框
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "您已暫時達到影片上傳的限制。請稍後再試。"
+#: src/view/com/composer/Composer.tsx:1165
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr "您的草稿還有尚未儲存的變更,需要儲存嗎?"
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr "您有尚未儲存的變更。在檢視其他草稿前,需要先儲存現有內容嗎?"
+
#: src/components/StarterPack/ProfileStarterPacks.tsx:291
msgid "You haven't created a starter pack yet!"
msgstr "您還沒有建立任何新手包!"
@@ -11437,7 +11577,7 @@ msgstr "您必須年滿 {MIN_ACCESS_AGE} 歲才能建立帳號。"
msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> for more information."
msgstr "您必須年滿 13 歲才能使用 Bluesky。請閱讀我們的<0>服務條款0>以瞭解更多資訊。"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:362
+#: src/components/StarterPack/ProfileStarterPacks.tsx:364
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "您必須跟隨至少 7 個人才能產生新手包。"
@@ -11449,7 +11589,7 @@ msgstr "您必須完成年齡驗證以存取這個畫面。"
msgid "You must grant access to your photo library to save a QR code"
msgstr "您必須授予相簿權限才能儲存 QR Code"
-#: src/view/com/composer/SelectMediaButton.tsx:442
+#: src/view/com/composer/SelectMediaButton.tsx:460
msgid "You need to allow access to your media library."
msgstr "您必須授予權限以存取媒體內容。"
@@ -11544,7 +11684,7 @@ msgid "You're in line"
msgstr "輪到您了"
#: src/screens/Deactivated.tsx:80
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:53
msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
msgstr "您正在使用應用程式專用密碼登入。請改用您的主密碼登入,以繼續停用您的帳號。"
@@ -11589,7 +11729,7 @@ msgstr "您已達到每日影片上傳限制(位元組過多)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "您已達到每日影片上傳限制(影片數過多)"
-#: src/screens/VideoFeed/index.tsx:1160
+#: src/screens/VideoFeed/index.tsx:1161
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "您已經看完了所有影片。也許是時候休息一下?"
@@ -11625,7 +11765,7 @@ msgstr "已提交您的申訴。如果申訴成功,我們會透過電子郵件
msgid "Your birth date"
msgstr "您的出生日期"
-#: src/components/Post/Embed/VideoEmbed/index.web.tsx:223
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "您的瀏覽器不支援該影片格式。請嘗試使用其他瀏覽器。"
@@ -11692,8 +11832,8 @@ msgstr "您的完整帳號代碼將修改為 <0>@{0}0>"
#: src/Navigation.tsx:527
#: src/screens/Search/modules/ExploreInterestsCard.tsx:67
-#: src/screens/Settings/ContentAndMediaSettings.tsx:94
-#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:96
#: src/screens/Settings/InterestsSettings.tsx:46
msgid "Your interests"
msgstr "您感興趣的主題"
@@ -11731,11 +11871,11 @@ msgstr "已成功變更您的密碼!往後請使用您的新密碼登入 Blues
msgid "Your password must be at least 8 characters long."
msgstr "您輸入的密碼必須至少包含 8 個字元。"
-#: src/view/com/composer/Composer.tsx:578
+#: src/view/com/composer/Composer.tsx:906
msgid "Your post was sent"
msgstr "已發布您的貼文"
-#: src/view/com/composer/Composer.tsx:575
+#: src/view/com/composer/Composer.tsx:903
msgid "Your posts were sent"
msgstr "已發布您的貼文"
@@ -11752,11 +11892,11 @@ msgstr "您的大頭貼照"
msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
msgstr "您的大頭貼照在中心,周圈環繞著許多用戶的大頭貼照"
-#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:74
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "其他 Bluesky 用戶將無法再看到您的個人檔案、貼文、動態源和列表。您隨時都可以登入以重新啟用您的帳號。"
-#: src/view/com/composer/Composer.tsx:577
+#: src/view/com/composer/Composer.tsx:905
msgid "Your reply was sent"
msgstr "已發布您的回覆"
diff --git a/src/state/queries/nuxs/definitions.ts b/src/state/queries/nuxs/definitions.ts
index e23050c465..25f975db26 100644
--- a/src/state/queries/nuxs/definitions.ts
+++ b/src/state/queries/nuxs/definitions.ts
@@ -14,6 +14,7 @@ export enum Nux {
FindContactsDismissibleBanner = 'FindContactsDismissibleBanner',
LiveNowBetaDialog = 'LiveNowBetaDialog',
LiveNowBetaNudge = 'LiveNowBetaNudge',
+ DraftsAnnouncement = 'DraftsAnnouncement',
/*
* Blocking announcements. New IDs are required for each new announcement.
@@ -72,6 +73,10 @@ export type AppNux = BaseNux<
id: Nux.LiveNowBetaNudge
data: undefined
}
+ | {
+ id: Nux.DraftsAnnouncement
+ data: undefined
+ }
>
export const NuxSchemas: Record | undefined> = {
@@ -87,4 +92,5 @@ export const NuxSchemas: Record | undefined> = {
[Nux.FindContactsDismissibleBanner]: undefined,
[Nux.LiveNowBetaDialog]: undefined,
[Nux.LiveNowBetaNudge]: undefined,
+ [Nux.DraftsAnnouncement]: undefined,
}
diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx
index 8c34d2a51d..1c2f6c209d 100644
--- a/src/view/com/composer/Composer.tsx
+++ b/src/view/com/composer/Composer.tsx
@@ -2290,22 +2290,40 @@ function VideoUploadToolbar({state}: {state: VideoState}) {
let text = ''
+ const isGif = state.video?.mimeType === 'image/gif'
+
switch (state.status) {
case 'compressing':
- text = _(msg`Compressing video...`)
+ if (isGif) {
+ text = _(msg`Compressing GIF...`)
+ } else {
+ text = _(msg`Compressing video...`)
+ }
break
case 'uploading':
- text = _(msg`Uploading video...`)
+ if (isGif) {
+ text = _(msg`Uploading GIF...`)
+ } else {
+ text = _(msg`Uploading video...`)
+ }
break
case 'processing':
- text = _(msg`Processing video...`)
+ if (isGif) {
+ text = _(msg`Processing GIF...`)
+ } else {
+ text = _(msg`Processing video...`)
+ }
break
case 'error':
text = _(msg`Error`)
wheelProgress = 100
break
case 'done':
- text = _(msg`Video uploaded`)
+ if (isGif) {
+ text = _(msg`GIF uploaded`)
+ } else {
+ text = _(msg`Video uploaded`)
+ }
break
}
diff --git a/src/view/com/composer/SelectMediaButton.tsx b/src/view/com/composer/SelectMediaButton.tsx
index b6440685ef..91d8d11952 100644
--- a/src/view/com/composer/SelectMediaButton.tsx
+++ b/src/view/com/composer/SelectMediaButton.tsx
@@ -1,5 +1,6 @@
import {useCallback, useEffect, useRef} from 'react'
import {Keyboard} from 'react-native'
+import {File} from 'expo-file-system'
import {type ImagePickerAsset} from 'expo-image-picker'
import {msg, plural} from '@lingui/macro'
import {useLingui} from '@lingui/react'
@@ -18,6 +19,7 @@ import {useSheetWrapper} from '#/components/Dialog/sheet-wrapper'
import {Image_Stroke2_Corner0_Rounded as ImageIcon} from '#/components/icons/Image'
import * as toast from '#/components/Toast'
import {IS_NATIVE, IS_WEB} from '#/env'
+import {isAnimatedGif} from './videos/isAnimatedGif'
export type SelectMediaButtonProps = {
disabled?: boolean
@@ -128,7 +130,7 @@ const extensionToMimeType: Record<
* `mimeType`. If `mimeType` is not available, we try to infer it through
* various means.
*/
-function classifyImagePickerAsset(asset: ImagePickerAsset):
+async function classifyImagePickerAsset(asset: ImagePickerAsset): Promise<
| {
success: true
type: AssetType
@@ -138,7 +140,8 @@ function classifyImagePickerAsset(asset: ImagePickerAsset):
success: false
type: undefined
mimeType: undefined
- } {
+ }
+> {
/*
* Try to use the `mimeType` reported by `expo-image-picker` first.
*/
@@ -178,7 +181,22 @@ function classifyImagePickerAsset(asset: ImagePickerAsset):
*/
let type: AssetType | undefined
if (mimeType === 'image/gif') {
- type = 'gif'
+ let bytes: ArrayBuffer | undefined
+ if (IS_WEB) {
+ bytes = await asset.file?.arrayBuffer()
+ } else {
+ const file = new File(asset.uri)
+ if (file.exists) {
+ bytes = await file.arrayBuffer()
+ }
+ }
+ if (bytes) {
+ const {isAnimated} = isAnimatedGif(bytes)
+ type = isAnimated ? 'gif' : 'image'
+ } else {
+ // If we can't read the file, assume it's animated
+ type = 'gif'
+ }
} else if (mimeType?.startsWith('video/')) {
type = 'video'
} else if (mimeType?.startsWith('image/')) {
@@ -236,7 +254,7 @@ async function processImagePickerAssets(
let supportedAssets: ValidatedImagePickerAsset[] = []
for (const asset of assets) {
- const {success, type, mimeType} = classifyImagePickerAsset(asset)
+ const {success, type, mimeType} = await classifyImagePickerAsset(asset)
if (!success) {
errors.add(SelectedAssetError.Unsupported)
@@ -469,7 +487,7 @@ export function SelectMediaButton({
useEffect(() => {
if (autoOpen && !hasAutoOpened.current && !disabled) {
hasAutoOpened.current = true
- onPressSelectMedia()
+ void onPressSelectMedia()
}
}, [autoOpen, disabled, onPressSelectMedia])
diff --git a/src/view/com/composer/drafts/DraftsListDialog.tsx b/src/view/com/composer/drafts/DraftsListDialog.tsx
index 834cd04cc7..0ee587a434 100644
--- a/src/view/com/composer/drafts/DraftsListDialog.tsx
+++ b/src/view/com/composer/drafts/DraftsListDialog.tsx
@@ -11,6 +11,7 @@ import * as Dialog from '#/components/Dialog'
import {PageX_Stroke2_Corner0_Rounded_Large as PageXIcon} from '#/components/icons/PageX'
import {ListFooter} from '#/components/Lists'
import {Loader} from '#/components/Loader'
+import {Text} from '#/components/Typography'
import {useAnalytics} from '#/analytics'
import {IS_NATIVE} from '#/env'
import {DraftItem} from './DraftItem'
@@ -140,13 +141,22 @@ export function DraftsListDialog({
const footerComponent = useMemo(
() => (
-
+ <>
+ {drafts.length > 5 && (
+
+
+ So many thoughts, you should post one
+
+
+ )}
+
+ >
),
- [isFetchingNextPage, hasNextPage],
+ [isFetchingNextPage, hasNextPage, drafts.length, t],
)
return (
diff --git a/src/view/com/composer/videos/VideoPreview.tsx b/src/view/com/composer/videos/VideoPreview.tsx
index 84cb1dba75..9736bd5844 100644
--- a/src/view/com/composer/videos/VideoPreview.tsx
+++ b/src/view/com/composer/videos/VideoPreview.tsx
@@ -1,4 +1,4 @@
-import React from 'react'
+import {useRef} from 'react'
import {View} from 'react-native'
import {Image} from 'expo-image'
import {type ImagePickerAsset} from 'expo-image-picker'
@@ -24,7 +24,7 @@ export function VideoPreview({
clear: () => void
}) {
const t = useTheme()
- const playerRef = React.useRef(null)
+ const playerRef = useRef(null)
const autoplayDisabled = useAutoplayDisabled()
let aspectRatio = asset.width / asset.height
diff --git a/src/view/com/composer/videos/isAnimatedGif.ts b/src/view/com/composer/videos/isAnimatedGif.ts
new file mode 100644
index 0000000000..7a808a4b6b
--- /dev/null
+++ b/src/view/com/composer/videos/isAnimatedGif.ts
@@ -0,0 +1,59 @@
+/**
+ * Checks if a GIF is animated. Cooked up by Claude, validated with some examples.
+ * @param bytes - The GIF bytes, as a Uint8Array.
+ * @returns An object with properties isGif, isAnimated, and frames.
+ */
+export function isAnimatedGif(buffer: ArrayBuffer): {
+ isGif: boolean
+ isAnimated: boolean
+ frames: number
+} {
+ const bytes = new Uint8Array(buffer)
+ // Verify GIF signature
+ const sig = String.fromCharCode(...bytes.slice(0, 6))
+ if (!sig.startsWith('GIF'))
+ return {isGif: false, isAnimated: false, frames: 0}
+
+ let i = 13 // Skip header + logical screen descriptor
+
+ // Skip global color table if present
+ if (bytes[10] & 0x80) {
+ const gctSize = 3 * (1 << ((bytes[10] & 0x07) + 1))
+ i += gctSize
+ }
+
+ let frames = 0
+
+ while (i < bytes.length) {
+ const block = bytes[i++]
+
+ if (block === 0x2c) {
+ // Image descriptor
+ frames++
+
+ // Skip image descriptor fields
+ i += 8
+ // Skip local color table if present
+ if (bytes[i] & 0x80) {
+ const lctSize = 3 * (1 << ((bytes[i] & 0x07) + 1))
+ i += lctSize + 1
+ } else {
+ i++
+ }
+ // Skip image data blocks
+ i++ // LZW minimum code size
+ while (bytes[i]) i += bytes[i] + 1
+ i++
+ } else if (block === 0x21) {
+ // Extension
+ i++ // Extension type
+ while (bytes[i]) i += bytes[i] + 1
+ i++
+ } else if (block === 0x3b) {
+ // Trailer
+ break
+ }
+ }
+
+ return {isGif: true, isAnimated: frames > 1, frames}
+}